AddBan: Difference between revisions
		
		
		
		
		
		Jump to navigation
		Jump to search
		
				
		
		
	
m (Removed <section> (function is server-side only (not needed)))  | 
				No edit summary  | 
				||
| Line 35: | Line 35: | ||
addCommandHandler ( "ban-me", banMe ) -- Make it trigger when a player types "/ban-me"  | addCommandHandler ( "ban-me", banMe ) -- Make it trigger when a player types "/ban-me"  | ||
</syntaxhighlight>  | </syntaxhighlight>  | ||
==Example 2==  | |||
This example add command to ban player serial.  | |||
<syntaxhighlight lang="lua">  | |||
function banSerial( source, command, noob, reason )  | |||
   if ( noob ) then  | |||
      local theNoob = getPlayerFromName( noob )  | |||
      local theNoobSerial - getPlayerSerial( theNoob )  | |||
      if ( theNoob ) then  | |||
         addBan( theNoobSerial, source, reason )  | |||
      end  | |||
   end  | |||
end  | |||
addCommandHandler( "ban-serial", banSerial )  | |||
</syntaxhighlight>  | |||
==See Also==  | ==See Also==  | ||
{{Admin functions}}  | {{Admin functions}}  | ||
[[ru:addBan]]  | [[ru:addBan]]  | ||
Revision as of 16:27, 17 March 2010
This function will add a ban for the specified IP/username/serial to the server.
Syntax
ban addBan ( [ string IP, string Username, string Serial, player responsibleElement, string reason, int seconds = 0 ] )
Note: One of the three: IP, Username or Serial have to be specified.
Required Arguments
- IP: The IP to be banned. If you don't want to ban by IP, set this to nil.
 
or
- Username: The username to be banned. If you don't want to ban by username, set this to nil.
 
or
- Serial: The serial to be banned. If you don't want to ban by serial, set this to nil.
 
or any combination.
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.
- responsibleElement: The element that is responsible for banning the IP/username/serial. This can be a player or the root (getRootElement()).
 - reason: The reason the IP/username/serial will be banned from the server.
 - seconds: The amount of seconds the player will be banned from the server for. This can be 0 for an infinite amount of time.
 
Returns
Returns true if the IP/username/serial was banned succesfully, false if invalid arguments are specified.
Example
This example bans a player's IP with the reason "Requested" when they type "/ban-me".
function banMe ( source, command ) -- The function header and where source is defined local ipToBan = getPlayerIP ( source ) -- Get the player's IP addBan ( ipToBan, source, "Requested" ) -- Ban him with the reason; Requested end addCommandHandler ( "ban-me", banMe ) -- Make it trigger when a player types "/ban-me"
Example 2
This example add command to ban player serial.
function banSerial( source, command, noob, reason )
   if ( noob ) then
      local theNoob = getPlayerFromName( noob )
      local theNoobSerial - getPlayerSerial( theNoob )
      if ( theNoob ) then
         addBan( theNoobSerial, source, reason )
      end
   end
end
addCommandHandler( "ban-serial", banSerial )