Scripting/Squirrel/Functions/IsIPBanned
This wiki is using an old backup from 2020
Some information may be old/missing
This function will check if an IP is banned from the server.
Syntax
IsIPBanned( ip )
Arguments
- string ip - The IP to be checked
Return value
- bool isbanned - true or false
Example
function onPlayerCommand( player, command, arguments )
{
if (cmd == "unbanip")
{
if(!IsIPBanned(text) == true)
{
ClientMessage("Provided IP '" + text + "' was not banned previously",player,255,255,255);
}
else
{
ClientMessage("Provided IP '" + text + "' is banned.",player,255,255,255);
}
}
return 1;
}
Notes
- Callbacks onPlayerCommand were used in this example. More info about in the corresponding page.