Przejdź do głównej zawartości

ClearBanList

warning

This function was added in omp v1.1.0.2612 and will not work in earlier versions!

Description

Clears the ban list.

Returns

true - Success.

false - Failed to execute the function.

Examples

public OnPlayerCommandText(playerid, cmdtext[])
{
if (!strcmp(cmdtext, "/clearbanlist", true))
{
if (!IsPlayerAdmin(playerid))
{
return 1;
}

ClearBanList();
SendClientMessage(playerid, -1, "[SERVER]: Ban list cleared.");
return 1;
}
return 0;
}

Notes

wskazówka

You can see the ban list in the bans.json file.

  • 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.
  • IsBanned: Checks if the given IP address is banned.