16.01.2010, 21:33
Is there a simpiler way to doing this?
i'm mainly reffering to the weapon check.
pawn Код:
if(weaponid == 10 || weaponid == 11 || weaponid == 12 || weaponid == 13 || weaponid == 16 || weaponid == 17 || weaponid == 18
|| weaponid == 35 || weaponid == 36 || weaponid == 37 || weaponid == 38 || weaponid == 39 || weaponid == 40 || weaponid == 44 || weaponid == 45)
{
new string[128];
format(string, sizeof(string), "**Ban: %s Has been banned for weapon hacks!", PlayerName(i));
SendClientMessageToAll(COLOR_RED, string);
BanEx(i, string);
return 1;
}