06.05.2012, 03:40
Troque todo seu cуdigo por esse.
pawn Код:
//ongamemodeinit;
SetTimer("Hackers", 3000, true);
//final
forward Hackers();
public Hackers() {
new w[30], n[24], s[128];
for(new i; i < MAX_PLAYERS; ++i) {
if(GetPlayerWeapon(i) > 0 && !PlayerInfo[playerid][NoEvento]) {
switch(GetPlayerWeapon(i)) {
case 18, 26, 35..45: {
GetPlayerName(i, n, 24);
GetWeaponName(GetPlayerWeapon(i), w, 30);
format(s, 128, "[Atenзao]Player %s (id:%i) foi automaticamente banido .[Arma proibida: %s]", n, i, w);
SendClientMessageToAll(-1, s);
Ban(i);
}
}
}
if(GetPlayerSpecialAction(i) == SPECIAL_ACTION_USEJETPACK) {
GetPlayerName(i, n, 24);
format(s, 128, "[Atenзao]Player %s (id:%i) foi automaticamente banido .[Motivo: Jetpack]", n, i);
SendClientMessageToAll(-1, s);
Ban(i);
}
}
return true;
}