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

[Solved] Ordering dummy to cast Spawn Tentacle

Status
Not open for further replies.
Level 37
Joined
Mar 6, 2006
Messages
9,240
The order id is 852504. String is ward I believe.

This will work:
  • Untitled Trigger 016
    • Events
      • Player - Player 1 (Red) skips a cinematic sequence
    • Conditions
    • Actions
      • Set u = Archmage 0019 <gen>
      • Set point = (Position of u)
      • Custom script: call IssuePointOrderLoc(udg_u, "ward", udg_point)
      • Custom script: call RemoveLocation(udg_point)
You can also use IssuePointOrderById(unit, 852504, x, y)
 
Level 37
Joined
Mar 6, 2006
Messages
9,240
With my super secret order trigger ;)

  • Untitled Trigger 001
    • Events
      • Unit - A unit Is issued an order with no target
      • Unit - A unit Is issued an order targeting a point
      • Unit - A unit Is issued an order targeting an object
    • Conditions
    • Actions
      • Custom script: call BJDebugMsg("Order string: " + OrderId2String(GetIssuedOrderId()) + " | Order Id: " + I2S(GetIssuedOrderId()))
 
Status
Not open for further replies.
Top