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 8: Line 8:
if ( cmd == "kick" )
if ( cmd == "kick" )
       {
       {
if ( stats[ player.ID ].Admin == true )
if ( player.Name == "Your Name" )
{
{
local plr = FindPlayer( text );
local plr = FindPlayer( text );

Revision as of 07:29, 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.