17.11.2016, 18:22
Hi, I've just removed foreach because I decided to use GetPlayerPoolSize loops and now "Check" doesn't get called.
That:
It doesn't print anything. It literally stopped working after I removed foreach. What would be causing this problem? I tried using SetTimerEx with that although it's not needed, but it didn't work as well. All other timers are working. I know there's nothing wrong with the code, but does anyone know what would be causing that?
That:
Код:
public OnGameModeInit() { SetTimer("Check", 1000, true); } forward Check(); public Check() { print("Check called."); }