- Joined
- Oct 12, 2011
- Messages
- 483
Does anybody know how to escape the operation limit other than a new trigger or waits?
function StartNewThread takes code c returns nothing
call ForForce(bj_FORCE_PLAYER[0], c)
endfunction
function StartNewThread takes code c returns nothing
if bj_FORCE_PLAYER[0] == null then
set bj_FORCE_PLAYER[0] = CreateForce()
endif
call ForForce(bj_FORCE_PLAYER[0], c)
endfunction
function Rawr takes nothing returns nothing
endfunction
function a takes code b returns nothing
call b
endfunction
function c takes nothing returns nothing
call a(function Rawr)
endfunction