• 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!
  • Read Evilhog's interview with Gregory Alper, the original composer of the music for WarCraft: Orcs & Humans 🔗Click here to read the full interview.

[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