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:


==Example==
==Example==
This example lets a player ban anyone who has a lower level.
This example lets a player ban anyone if he has ACL rights.
<syntaxhighlight lang="lua">
<syntaxhighlight lang="lua">
--Add the "ban" command handler
--Add the "ban" command handler
function banLowerLevelPlayer ( thePlayer, commandName, bannedName, reason )
function banPlayerCommand ( thePlayer, commandName, bannedName, reason )
--Get player element from the name
 
local bannedPlayer = getPlayerFromNick ( bannedName )
-- Give the player a nice error if he doesn't have rights
--If the client who sent the command has a higher level
if ( hasObjectPermissionTo ( thePlayer, "function.banPlayer" ) )
if getClientLevel ( thePlayer ) > getClientLevel ( bannedPlayer ) then
--Get player element from the name
local bannedPlayer = getPlayerFromNick ( bannedName )
 
--Ban the player
--Ban the player
banPlayer ( bannedPlayer, thePlayer, reason )
banPlayer ( bannedPlayer, thePlayer, reason )
outputChatBox ( "ban: " .. bannedName .. " successfully banned", thePlayer )
else
outputChatBox ( "ban: You don't have enough permissions", thePlayer )
end
end
end
end
addCommandHandler ( "ban", banLowerLevelPlayer )
addCommandHandler ( "ban", banPlayerCommand )
</syntaxhighlight>
</syntaxhighlight>


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

Revision as of 10:42, 16 January 2008

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 for banning the player
  • 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 if he has ACL rights.

--Add the "ban" command handler
function banPlayerCommand ( thePlayer, commandName, bannedName, reason )

	-- Give the player a nice error if he doesn't have rights
	if ( hasObjectPermissionTo ( thePlayer, "function.banPlayer" ) ) 
		--Get player element from the name
		local bannedPlayer = getPlayerFromNick ( bannedName )

		--Ban the player
		banPlayer ( bannedPlayer, thePlayer, reason )

		outputChatBox ( "ban: " .. bannedName .. " successfully banned", thePlayer )

	else
		outputChatBox ( "ban: You don't have enough permissions", thePlayer )
	end

end
addCommandHandler ( "ban", banPlayerCommand )

See Also