Scripting/Squirrel/Functions/UnbanIP: Difference between revisions
Jump to navigation
Jump to search
This wiki is using an old backup from 2020
Some information may be old/missing
(Created page with "This function will unban an IP from the server. == Syntax == <pre>UnbanIP( ip )</pre> == Arguments == * ''string'' '''ip''' - The IP to be unbanned == Example == {{Scrip...") |
No edit summary |
||
(2 intermediate revisions by 2 users not shown) | |||
Line 11: | Line 11: | ||
== Example == | == Example == | ||
{{ | <source lang=squirrel> | ||
function onPlayerCommand( player, cmd, text ) | |||
{ | |||
if (cmd == "unbanip") | |||
{ | |||
if(!IsIPBanned(text) == true) | |||
{ | |||
ClientMessage("Provided IP '" + text + "' was not banned previously",player,255,255,255); | |||
} | |||
else | |||
{ | |||
UnbanIP(text); | |||
ClientMessage("Unbanned IP: " + text,player,255,255,255); | |||
} | |||
} | |||
} | |||
</source> | |||
=== Notes === | === Notes === | ||
Call [[onPlayerCommand]] were used in this example. More info about them in the corresponding pages. | |||
== Related Functions == | == Related Functions == | ||
{{Scripting/Squirrel/Functions/Administrative_Functions}} | {{Scripting/Squirrel/Functions/Administrative_Functions}} | ||
[[Category:Scripting/Squirrel/Functions/Administrative_Functions]] |
Latest revision as of 17:58, 30 January 2017
This function will unban an IP from the server.
Syntax
UnbanIP( ip )
Arguments
- string ip - The IP to be unbanned
Example
function onPlayerCommand( player, cmd, text )
{
if (cmd == "unbanip")
{
if(!IsIPBanned(text) == true)
{
ClientMessage("Provided IP '" + text + "' was not banned previously",player,255,255,255);
}
else
{
UnbanIP(text);
ClientMessage("Unbanned IP: " + text,player,255,255,255);
}
}
}
Notes
Call onPlayerCommand were used in this example. More info about them in the corresponding pages.