Adding Servers
You can add servers to interact with via your application by following the documentation on this page.
Example Code
import { RCEManager, RCEIntent } from "rce.js";
const rce = new RCEManager();
rce.addServer({
identifier: "my-solo-duo-trio-3x",
rcon: {
host: "127.0.0.1",
port: 1234,
password: "testing123"
},
state: ["trio", "3x"]
});
Server Options
Below is a brief explanation of each option when defining new server(s).
Last updated