If i comment out the following function, it DOES work:
Code:
public game_restart(){
roundNumber = 0
lastRoundTB = 0
teamScore[0] = teamScore[1] = teamScore[2] = 0
lastWinner = UNASSIGNED
lastLooser = UNASSIGNED
winStreak = 0
for (new i = 1; i <= MAX_PLAYERS; ++i){
kills[i] = 0
deaths[i] = 0
lastRoundSwitched[i] = -999
}
}
So, what is strange in this code?