25.01.2013, 19:45
Quote:
your 100% right, that will decrease the pc memory alot try make it 2000 like he said
|
EDIT: How can i make it that it bans for more weapons without creating more timers? i currently only have minigun ban.
I want it to ban Night Vision Goggles, Infared Goggles,HS Rocket
pawn Код:
forward AntiCheat(playerid);
public AntiCheat(playerid)
{
for(new i = 0; i < MAX_PLAYERS; i++)
{
if(IsPlayerConnected(i))
{
new Weapon;
Weapon = GetPlayerWeapon(i);
if(Weapon == 38 && PInfo[playerid][Level] == 0)
{
new name[MAX_PLAYER_NAME], string[124+MAX_PLAYER_NAME];
GetPlayerName(playerid, name, sizeof(name));
format(string, sizeof(string), " [BOT] has Banned %s: Reason: Minigun Hacks ", name);
SendClientMessageToAll(red, string);
BanEx(i,"Minigun");
}
}
}
}