• 🏆 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!
  • 🏆 Hive's 6th HD Modeling Contest: Mechanical is now open! Design and model a mechanical creature, mechanized animal, a futuristic robotic being, or anything else your imagination can tinker with! 📅 Submissions close on June 30, 2024. Don't miss this opportunity to let your creativity shine! Enter now and show us your mechanical masterpiece! 🔗 Click here to enter!

[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