Scripting/Squirrel/Functions/UnbanIP

From Vice City Multiplayer
Jump to navigation Jump to search
Caution icon
This wiki is using an old backup from 2020
Some information may be old/missing

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.

Related Functions