Scripting/Squirrel/Functions/KickPlayer: Difference between revisions

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
Line 2: Line 2:


<pre>KickPlayer( player )</pre>
<pre>KickPlayer( player )</pre>
== Syntax ==
<pre>BanPlayer( player )</pre>
== Example ==
== Example ==
The following example send a personal message saying '''Hey you, have fun here'''!:
The following example send a personal message saying '''Hey you, have fun here'''!:

Revision as of 07:36, 25 July 2014

Syntax

KickPlayer( player )

Example

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

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.