12.11.2010, 18:00
Well, if you are planning to show messages when the player get's banned, use a one second timer, else if you are going to just ban the player, you can use OnPlayerUpdate like this:
pawn Код:
public OnPlayerUpdate(playerid)
{
if(GetPlayerWeapon(playerid) == 38) Ban(playerid); //Weapon minigun
return 1;
}