Quote:
Originally Posted by Kase
Top of the script
pawn Код:
forward Player_Process(); public Player_Process() { for(new i; i < MAX_PLAYERS; i++) { if(IsPlayerConnected(i)) { SetPlayerScore(i, GetPlayerScore(i) + 1); } } }
OnGameModeInit
pawn Код:
SetTimer("Player_Process", 60000, true);
It should work.
|
Thanks!! It works perfectly.