15.01.2014, 12:15
Everytime I log into the server I am immediatly being banned
Why is that?
Why is that?
pawn Код:
forward AntiCheat(playerid);
new Float:Armour;
public OnPlayerConnect(playerid)
{
SetTimerEx("AntiCheat",500,true,"d",playerid);
return 1; }
public AntiCheat(playerid) {
if(!IsPlayerAdmin(playerid)) {
if(GetPlayerVirtualWorld(playerid) != W_DeathMatchZones) {
if(GetPlayerWeapon(playerid) != 0 || GetPlayerWeapon(playerid) != 46 ) Ban(playerid);
if(GetPlayerArmour(playerid,Float:Armour) > 0) return Ban(playerid); } }
return 1; }