09.11.2008, 05:37
Okay Guys..I created this simple Anti-Armour Hack but I dont know what "Tag Mismatch" Means
Tell me whats wrong in here please.....
Then on the 1 sec timecheck...
Please Help ME
Tell me whats wrong in here please.....
Код:
new LastArmour[MAX_PLAYERS]; //I declared this as a player's variable
Код:
new Float:armour;
GetPlayerArmour(playerid,armour);
new result = armour-LastArmour[playerid];
if(result >= 30) //Im using the Godfather script and /usedrugs' gives only 26 armour!!
{
SendClientMessage(playerid,COLOR_GREY," You are banned!");
Ban(playerid);
}
else
{
LastArmour[playerid] = armour; //This is where I get the "Tag Mismatch" Error.This line calibrate the new armour for next armor check
}

