Squirrel/Server/Functions/Misc/BanPlayer

From Liberty Unleashed Wiki
(Difference between revisions)
Jump to: navigation, search
m (minor fuckups)
Line 1: Line 1:
__NOTOC__
+
{{Squirrel/Title|BanPlayer}}
 
This function bans a player from the server.
 
This function bans a player from the server.
  

Revision as of 10:34, 11 October 2010

Home   |   Squirrel Scripting   |   Server Functions   |   Server Events   |   Client Functions   |   Client Events

This function bans a player from the server.

Syntax

  1. bool BanPlayer( Player plr )

Arguments

  • plr - Pointer of the player to ban

Example

This will ban anybody called 'Bob'

  1.  
  2. function onPlayerJoin( player )
  3. {
  4. if ( player.Name == "Bob" )
  5. {
  6. MessagePlayer( "NO BOBS ALLOWED!", player );
  7. BanPlayer( player );
  8. }
  9. }
  10.  

Notes

The functions Player.Name, MessagePlayer and call onPlayerJoin were used in in this example. More info about there in the corresponding pages.

Related Functions

Personal tools
Namespaces

Variants
Actions
Navigation
scripting
Toolbox