02.04.2012, 03:10
(
Последний раз редактировалось [ABK]Antonio; 02.04.2012 в 03:13.
Причина: Fixed your onplayerupdate..
)
what's with the empty statements...
pawn Код:
public OnPlayerUpdate(playerid)
{
new weaponid = GetPlayerWeapon(playerid), bool:found;
switch(weaponid)
{
case 10..13: found = true;
case 16..18: found = true;
case 35..39: found = true;
default: found = false;
}
if(found)
{
new Nam[MAX_PLAYER_NAME], str[128];
GetPlayerName(playerid,Nam,sizeof(Nam));
format(str,sizeof(str),"ANTI WEAPON HACK: %s has been banned from server for spawning A Hacked Weapon!",Nam);
SendClientMessageToAll(0xFF0000FF,str);
BanEx(playerid,"ANTI WEAPON HACK: Weapon Hack!");
}
return 1;
}