29.11.2011, 15:02
Alguem pode me dizer o que hб de errado nisso? Coloquei no meu gm mais nao funciona
@edit
Meu gm й god father
@edit
Meu gm й god father
pawn Код:
forward Check();
public Check()
{
new string[256];
new giveplayer[MAX_PLAYER_NAME];
for(new i = 0; i < MAX_PLAYERS; i++)
{
if(GetPlayerSpecialAction(i) == SPECIAL_ACTION_USEJETPACK)
{
GetPlayerName(i, giveplayer, sizeof(giveplayer));
format(string, sizeof(string), "AVISO: %s[ID:%d] usou um JetPack e foi {E600FF}BANIDO", giveplayer,i);
SendClientMessageToAll(COLOR_LIGHTRED, string);
Ban(i);
}
for(new a = 0; a < sizeof(Armashack); a ++)
{
if(GetPlayerWeapon(i) == Armashack[a])
{
GetPlayerName(i, giveplayer, sizeof(giveplayer));
format(string, sizeof(string), "AVISO: %s[ID:%d] usou uma arma PROIBIDA e foi {E600FF}BANIDO", giveplayer,i);
SendClientMessageToAll(COLOR_LIGHTRED, string);
Ban(i);
}
}
}
return 1;
}