11.06.2011, 19:46
i get the player score with this code but i want to make a game text saying %s has takes the lead and it set his color to red how
Код:
new test,leader;
for (new i=0;i<MAX_PLAYERS;i++){
if(GetPlayerScore(i) > test){
leader = i;
test=GetPlayerScore(i);
}
}


