Difference between revisions of "CSecurity::ban"

From King Arthur's Gold Wiki
Jump to: navigation, search
(Created page with "<onlyinclude> Bans the given CPlayer for the given length of time, in minutes. </onlyinclude> <syntaxhighlight lang="cpp"> void banPlayer( CPlayer@ player, s32 time_in_minute...")
(No difference)

Revision as of 20:16, 27 August 2012

Bans the given CPlayer for the given length of time, in minutes.

void banPlayer( CPlayer@ player, s32 time_in_minutes )

Usage example, in which saying '!banme' in the chat will cause the player that said it to be banned for 10 minutes:

void ProcessChat( CRules@ this, string text, CPlayer@ player ) 
{
  if (text == "!banme")
    banPlayer( player, 10 ); // 10 minute ban
}