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.
IsBanned
warning
This function was added in omp v1.1.0.2612 and will not work in earlier versions!
Description
Checks if the given IP address is banned.
Name | Description |
---|---|
const ipAddress[] | The IP address to check. |
Returns
Returns true if the IP address is banned, otherwise false.
Examples
if (IsBanned("255.255.255.255"))
{
// Do something
}
Notes
tip
You can see the ban list in the bans.json file.
Related Functions
- BlockIpAddress: Block an IP address from connecting to the server for a set amount of time.
- UnBlockIpAddress: Unblock an IP that was previously blocked.
- Ban: Ban a player from playing on the server.
- BanEx: Ban a player with a custom reason.
- Kick: Kick a player from the server.
- ClearBanList: Clears the ban list.