Scripting/Squirrel/Functions/BanIP

From Vice City Multiplayer
Revision as of 04:50, 28 July 2015 by BrYaN FuRy (talk | contribs)
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 ban an IP from the server.

Syntax

BanIP( string ip )

Arguments

  • string ip - This is the IP address to be banned

Example

function onPlayerCommand( player, cmd, text )
{
    if ( cmd == "banip" )
    {
        MessagePlayer( "You have banned IP: " + text, player );
        BanIP( text );
    }
}

Notes

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


Related Functions