ID:155800
 
how do i set this? where do i put it? only thing i can get to compile gives a error:
runtime error: Cannot write to world.loop_checks.
proc name: TurnRunner (/world/proc/TurnRunner)
usr: null
src:
call stack:
: TurnRunner()
: New()
loopchecks is a constant variable and it can only be set pre-runtime. To set this, go to any part of your code files and enter "world/loopchecks=0" on a fresh line, without any tabs or spaces.

Though, you shouldn't be doing this in my opinion, as runaway loops will destroy your game. Make sure that whatever loops you're getting errors for are properly ending or that they sleep for long enough to not cause an issue.