30.10.2010, 18:15
Aee pessoal eu tava fazeno um Anti-WeaponHack. Fiz sertin quando fui testa, eu nem pegava a arma e falava que eu tava de cheater. Olhem:
pawn Код:
new ArmasLiberadas[] = {0, 1, 4, 5, 6, 24, 25, 29, 30, 31};
forward AntiShit();
public OnGameModeInit()
{
SetTimer("AntiShit", 1, true);
return 1;
}
public AntiShit()
{
for(new i = 0; i < MAX_PLAYERS; i++)
{
AntiMoneyHack(i);
AntiWeaponHack(i);
}
return 1;
}
AntiWeaponHack(playerid)
{
new string[256], nome[MAX_PLAYER_NAME];
if(!ArmasLiberadas[GetPlayerWeapon(playerid)])
{
GetPlayerName(playerid, nome, sizeof(nome));
ResetPlayerWeapons(playerid);
format(string, sizeof(string), "[SERVER] %s foi banido pela CPU. (Razгo: Weapon-Hack)", nome);
SendClientMessageToAll(COR_CINZA, string);
//Ban(playerid);
return 1;
}
return 1;
}