Scripting/Squirrel/Functions/IsIPBanned

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 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 == "checkip")
	{
		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

Call onPlayerCommand were used in this example. More info about them in the corresponding pages.

Related Functions