Author Topic: Forced disconnect -resolved-  (Read 532 times)

What is the command for forcing a disconnect?
I've tried
Code: [Select]
function serverCmdLeave(%client)
{
client.disconnect
}
But that doesn't work, and I can't think of anything else...
« Last Edit: March 29, 2010, 06:03:25 PM by Sebster 105 »

Face the player.
/getid

Console:
Code: [Select]
idyougot.delete();
Will remove the player and force them to leave because it is impossible to respawn.


%client.delete("Disconnect message");

%client.delete("Disconnect message");
Will they leave the server?

Will they leave the server?
That forces a disconnect as if the client had been kicked.

That forces a disconnect as if the client had been kicked.
Thanks :)