• 🏆 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!

[General] Instant move not working

Status
Not open for further replies.
  • Instant move
    • Events
      • Unit - A unit Is issued an order targeting a point
    • Conditions
      • (Issued order) Equal to (Order(move))
    • Actions
      • Set ZeusPoint = (Target point of issued order)
      • Unit - Move (Ordered unit) instantly to ZeusPoint
      • Custom script: call RemoveLocation(udg_ZeusPoint)
It's not working... IDK why... if i remove the order condition works, but idk why with it it won't.
 
Last edited:
Any Spell and any Action has an Order-ID.

"Smart" = Right click
"Attack" = Attackorder either on Unit or on Ground
"Move" = Order by Hotkey "M"

Maybe you combine this Three with an or inside conditions. This way you get all basic movement, if you want this.

  • Conditions
    • Or - Any (Conditions) are true
      • Bedingungen
        • (Issued order) equal (Order(smart))
        • (Issued order) equal (Order(move))
        • (Issued order) equal (Order(attack))
 
Status
Not open for further replies.
Top