26.09.2011, 17:37
Код:
SetTimer("playerscore", 60000, true);
Код:
forward playerscore(); public playerscore() { for(new x; x<MAX_PLAYERS; x++) { if(!IsPlayerConnected(x)) continue; SetPlayerScore(x, GetPlayerScore(x) + 1); } return 1; }