08.10.2010, 22:32
Код:
if(gTeam[playerid] == 2 && gTeam[playerid] == 3) {
This is impossible... 1 variable can't have 2 different numbers... I don't know whether this is the whole problem, however this is 1 part of it...
replace it with:
Код:
if(gTeam[playerid] == 2 || gTeam[playerid] == 3) {