-
Notifications
You must be signed in to change notification settings - Fork 14
Kick Clients
TimmKroe edited this page Jun 15, 2018
·
3 revisions
// ... code for connecting to the server
// Variables
uint clientId = 0; // clientid of the client you want to kick
string message = "haha I have kicked you :P"; // Kick Message
// Kick the client from channel
queryRunner.KickClient(clientId, KickReason.Channel, message);
// ... code for connecting to the server
// Variables
uint clientId = 0; // clientid of the client you want to kick
string message = "haha I have kicked you :P"; // Kick Message
// Kick the client from server
queryRunner.KickClient(clientId, KickReason.Server, message);