20.09.2016, 16:39
Quote:
|
You've put the timer at OnGameModeInit() which is being called exactly when the server loads up, which means there are no players online yet. You gotta put it in the start of the race. (as much as I see, you are building a race)
|
PHP код:
SetTimer("Unfreeze", 120000, false);
Edit: the function "Unfreeze" will be called after 2 mns, and when i join the server, nothing happen
so the problem is the timer don't start at the 1st time


