Listen to a special audio message from Bill Roper to the Hive Workshop community (Bill is a former Vice President of Blizzard Entertainment, Producer, Designer, Musician, Voice Actor) 🔗Click here to hear his message!
Nah, tried that already, seems pause and stop doesn't work either. I managed to get something to work, however (requires TimerUtils)
JASS:
globals
unit StopOrder_TempUnit
endglobals
function StopOrder_TimerCallback takes nothing returns nothing
call ReleaseTimer(GetExpiredTimer())
call IssueImmediateOrder(TempUnit, "stop")
endfunction
function StopOrder takes unit u returns nothing
set TempUnit = u
call TimerStart(NewTimer(), 0., false, function StopOrder_TimerCallback)
endfunction
EDIT: I just tried SetUnitPosition after the 0 second timer, and that also worked... curious...
EDIT2: I wrote a script for it: PreventOrders. The script also supports permanently disabling orders, because it seemed useful.
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.