BanPlayer: Difference between revisions

From Multi Theft Auto: Wiki
Jump to navigation Jump to search
No edit summary
No edit summary
Line 20: Line 20:
Returns ''true'' if the player was banned succesfully, ''false'' if invalid arguments are specified.
Returns ''true'' if the player was banned succesfully, ''false'' if invalid arguments are specified.


==Example==  
==Example==
This example does...
This example lets a player ban anyone who has a lower level.
<syntaxhighlight lang="lua">
<syntaxhighlight lang="lua">
--This line does...
--Add the "ban" command handler
blabhalbalhb --abababa
addCommandHandler ( "ban", "banPlayer" )
--This line does this...
function banPlayer ( player, commandname, bannedname, reason )
mooo
--Get player element from the name
local banned = getPlayerFromNick ( bannedname )
--If the client who sent the command has a higher level
if getClientLevel ( player ) > getClientLevel ( banned ) then
--Ban the player
banPlayer ( banned, player, reason )
end
end
</syntaxhighlight>
</syntaxhighlight>


==See Also==
==See Also==
{{FunctionArea_Functions}}
{{Admin_functions}}

Revision as of 17:00, 11 January 2007


This function will ban the specified player from the server.

Syntax

bool banPlayer ( player bannedPlayer , [ player responsiblePlayer , string reason ] )         

Required Arguments

  • bannedPlayer: The player that will be banned from the server

Optional Arguments

NOTE: When using optional arguments, you might need to supply all arguments before the one you wish to use. For more information on optional arguments, see optional arguments.

  • responsiblePlayer: The player that is responsible the event
  • reason: The reason the player will be banned from the server

Returns

Returns true if the player was banned succesfully, false if invalid arguments are specified.

Example

This example lets a player ban anyone who has a lower level.

--Add the "ban" command handler
addCommandHandler ( "ban", "banPlayer" )
function banPlayer ( player, commandname, bannedname, reason )
	--Get player element from the name
	local banned = getPlayerFromNick ( bannedname )
	--If the client who sent the command has a higher level
	if getClientLevel ( player ) > getClientLevel ( banned ) then
		--Ban the player
		banPlayer ( banned, player, reason )
	end
end

See Also