• 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.

[Solved] Ordering dummy to cast Spawn Tentacle

Status
Not open for further replies.
Level 37
Joined
Mar 6, 2006
Messages
9,243
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,243
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