public OnGameModeInit(){ SetTimer("UpdateScore",58000,1);//Other stuff...}public UpdateScore(){ for (new i = 0; i < MAX_PLAYERS; i++) { SetPlayerScore(i,GetPlayerMoney(i)); } return 1;}