Your browser does not seem to support JavaScript. As a result, your viewing experience will be diminished, and you may not be able to execute some actions.
Please download a browser that supports JavaScript, or enable it if it's disabled (i.e. NoScript).
Hi, everyone! How create room with different MaxClients in client-side?
Thank for all!
i think you need send options max client to server Example: 1.client client.join("chat", {max_client:max_client}); 2.server onInit(options) {
var max_client = options.max_client; this.maxClients= max_client;
}
@jack1604 thx! i will try it