• 🏆 Texturing Contest #33 is OPEN! Contestants must re-texture a SD unit model found in-game (Warcraft 3 Classic), recreating the unit into a peaceful NPC version. 🔗Click here to enter!
  • It's time for the first HD Modeling Contest of 2024. Join the theme discussion for Hive's HD Modeling Contest #6! Click here to post your idea!

[JASS] 1.24d stopped SetUnitPosition from cancelling orders

Status
Not open for further replies.
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.
 
Last edited:
Status
Not open for further replies.
Top