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
No edit summary |
No edit summary |
||
Line 35: | Line 35: | ||
{{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.