TActivePlayer.Kick
function Kick: Boolean Result: if it worked
Description
Kicks a player from the server.
Results false if you attempt to kick an inactive ID; otherwise true.
Example
var i: byte;
begin
for i := 1 to 32 do if Players[i].Active then
Players[i].Kick; //kicks all active players
end;