20.03.2012, 09:33
pawn Код:
forward ArmourTimer();
public ArmourTimer()
{
for(new i=0; i<MAX_PLAYERS; i++)
{
if(IsPlayerConnected(i))
{
new Float:armour[MAX_PLAYERS];
GetPlayerArmour(i, armour[i]);
if( armour[i] > 99.1 )
{
BanEx( i, "Armour Hack" );
}
}
}
}
