27.07.2011, 23:15
Quote:
Hi,
I've made a command to check if a player is hacking (health hacks) it nearly works, but the messages are going wrong. The messages: pawn Код:
Not to the Administrator who did the command. By the way, I hope you understand the problem. But I can't find the solution. ` Kingunit |
pawn Код:
//Just a part of the code that is sending the message if he hacks or not
if(health == 1000)
{
SendClientMessage(playerid,COLOR_YELLOW,"Invulnerability check result : [POSITIVE]");
checkinv = 0;
}
else if(health != 100)
{
SendClientMessage(playerid,COLOR_YELLOW,"Invulnerability check result : [NEGATIVE]");
checkinv = 1;
}