Squirrel/Server/Functions/Misc/BanPlayer

From Liberty Unleashed Wiki
(Difference between revisions)
Jump to: navigation, search
(New page: __NOTOC__ This function bans a player from the server == Syntax == <code>bool BanPlayer( int id )</code> == Arguments == * '''id''' - ID of the player to kick == Example == This will...)

Revision as of 20:22, 22 January 2009

This function bans a player from the server

Syntax

  1. bool BanPlayer( int id )

Arguments

  • id - ID of the player to kick

Example

This will ban anybody called 'Bob'

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

Notes

The calls OnPlayerJoin and MessagePlayer were used in in this example. More info about there in the corresponding pages.

Related Functions

Template:Squirrel/Functions/Misc

Personal tools
Namespaces

Variants
Actions
Navigation
scripting
Toolbox