17.08.2015, 17:17
Quote:
Код:
forward ScoreUpdate(); public ScoreUpdate() { new Score; new name[MAX_PLAYER_NAME]; //new string[256]; for(new i=0; i<MAX_PLAYERS; i++) { if (IsPlayerConnected(i)) { GetPlayerName(i, name, sizeof(name)); Score = Player[i][pLevel]; SetPlayerScore(i, Score); if (Score > ScoreOld) { ScoreOld = Score; } } } } |
Just use a hook for SetPlayerScore and do the code there, why are using a timer which is completely useless at this case? When you can easily track changed score directly from the script?