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

How to detect unimmolation for a specific unit

Status
Not open for further replies.
Level 2
Joined
Jun 19, 2023
Messages
6
Hello everyone. As the title says, I am not sure how to detect unimmolation. I know that you can do something similar to the trigger I found from a different post below, but it applies to any unit that uses Immolation/Unimmolation. Is there a way to detect unimmolation with the specific unit that I am using?

  • Untitled Trigger 001
    • Events
      • Unit - A unit Is issued an order with no target
    • Conditions
    • Actions
      • If (All Conditions are True) then do (Then Actions) else do (Else Actions)
        • If - Conditions
          • (Issued order) Equal to (Order(immolation))
        • Then - Actions
          • Animation - Play JetHammerU's stand animation
        • Else - Actions
          • If (All Conditions are True) then do (Then Actions) else do (Else Actions)
            • If - Conditions
              • (Issued order) Equal to (Order(unimmolation))
            • Then - Actions
              • Animation - Play JetHammerU's stand animation
            • Else - Actions
 

Uncle

Warcraft Moderator
Level 73
Joined
Aug 10, 2018
Messages
7,866
Either use a Specific Unit Event if the unit is pre-placed on the map or simply reference it in the Conditions using a Unit comparison:
  • Untitled Trigger 001
    • Events
      • Unit - A unit Is issued an order with no target
    • Conditions
      • (Ordered unit) Equal to JetHammerU
    • Actions
      • If (All Conditions are True) then do (Then Actions) else do (Else Actions)
        • If - Conditions
          • (Issued order) Equal to (Order(immolation))
        • Then - Actions
          • Animation - Play JetHammerU's stand animation
        • Else - Actions
          • If (All Conditions are True) then do (Then Actions) else do (Else Actions)
            • If - Conditions
              • (Issued order) Equal to (Order(unimmolation))
            • Then - Actions
              • Animation - Play JetHammerU's stand animation
            • Else - Actions
 
Status
Not open for further replies.
Top