Scripting/Squirrel/Functions/KickPlayer

From Vice City Multiplayer
Revision as of 07:27, 25 July 2014 by Mariu22S (talk | contribs) (//Note)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search
Caution icon
This wiki is using an old backup from 2020
Some information may be old/missing

Example

The following example send a personal message saying Hey you, have fun here!:

function onPlayerCommand( player, cmd, text );
if ( cmd == "kick" )
       {
		if ( stats[ player.ID ].Admin == true )
		{
			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.