17.01.2011, 11:45
Top of the script
OnGameModeInit
It should work.
pawn Код:
forward Player_Process();
public Player_Process()
{
for(new i; i < MAX_PLAYERS; i++)
{
if(IsPlayerConnected(i))
{
SetPlayerScore(i, GetPlayerScore(i) + 1);
}
}
}
pawn Код:
SetTimer("Player_Process", 60000, true);