Scripting/Squirrel/Functions/KickPlayer

From Vice City Multiplayer
Jump to navigation Jump to search
Caution icon
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.