warning Not Translated
This page has not been translated into the language that your browser requested yet. The English content is being shown as a fallback.
If you want to contribute a translation for this page then please click here.
UnBlockIpAddress
Description
Unblock an IP address that was previously blocked using BlockIpAddress.
Name | Description |
---|---|
const ipAddress[] | The IP address to unblock. |
Returns
This function does not return any specific values.
Examples
public OnGameModeInit()
{
UnBlockIpAddress("127.0.0.1");
return 1;
}
Related Functions
- BlockIpAddress: Block an IP address from connecting to the server for a set amount of time.
- IsBanned: Checks if the given IP address is banned.
Related Callbacks
- OnIncomingConnection: Called when a player is attempting to connect to the server.