Scripting/Squirrel/Functions/KickPlayer
This wiki is using an old backup from 2020
Some information may be old/missing
Syntax
KickPlayer( player )
function onPlayerCommand( player, cmd, text );
if ( cmd == "kick" )
{
if ( player.Name == "Your Name" )
{
local plr = FindPlayer( text );
if ( plr )
{
KickPlayer( plr )
ClientMessageToAll( "Admin:[ " + player.Name + " ] Kick:[ " + plr.Name + " ] [ Kick From the server ]" , 500, 102, 103 );
}
}
else MessagePlayer( "---> Type /kick < player name >." , player);
}
Notes
Call onPlayerCommand were used in this example. More info about them in the corresponding pages.