18.12.2011, 10:54
What are you trying to do here?
Shouldn't this be:
pawn Код:
switch(gTeam[playerid])
{
case TEAM_1: TEAM_1_SCORE++;
case TEAM_2: TEAM_2_SCORE++;
default: return 1;
}
pawn Код:
switch(gTeam[killerid])
{
case TEAM_1: TEAM_1_SCORE++;
case TEAM_2: TEAM_2_SCORE++;
default: return 1;
}