19.01.2015, 06:18
Hello , i have following command but it gives me warning of Tag Mismatch.
if i set it to
Then it have no warning . Why i am getting the warning with ! and how to solve it?
PHP код:
if(!GetPlayerTeam(playerid) == 8)
{
SetPlayerTeam(playerid, 0);
}
PHP код:
if(GetPlayerTeam(playerid) == 8)
{
SetPlayerTeam(playerid, 0);
}