UnBlockIpAddress
From SA-MP Wiki
Description:
Unblock an IP address that was previously blocked using BlockIpAddress.
(ip_address[])
ip_address | The IP address to unblock. |
Return Values:
This function does not return any specific values.
public OnGameModeInit() { UnBlockIpAddress("127.0.0.1"); return 1; }
Related Functions
The following functions may be useful, as they are related to this function in one way or another.
- BlockIpAddress: Block an IP address from connecting to the server for a set amount of time.
- OnIncomingConnection: Called when a player is attempting to connect to the server.