• 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.
  • It's time for the first HD Modeling Contest of 2025. Join the theme discussion for Hive's HD Modeling Contest #7! Click here to post your idea!

[Request] Comic Aura Spell

Status
Not open for further replies.
Level 10
Joined
Nov 5, 2008
Messages
536
Hello!

I have a request for an aura I need for my map. But I am not going to nag and beg this time, instead I will present my request in a more interesting way:

As a comic!


Oh yes, it is time to bring some entertainment to all helpful people here on HiveWorkshop!


If you like comics and you like to create triggers to noobies like me, then this is the quest for you!


Have a look at the 4 pictures below, they will describe what kind of aura I need.

Enjoy!
 

Attachments

  • Comic 1.jpg
    Comic 1.jpg
    144 KB · Views: 121
  • comic 2.jpg
    comic 2.jpg
    275.1 KB · Views: 129
  • comic 3.jpg
    comic 3.jpg
    252.9 KB · Views: 119
  • comic 4.jpg
    comic 4.jpg
    297.8 KB · Views: 145
Level 16
Joined
Jul 21, 2008
Messages
1,121
If you want to make it more simple, do following:

1. Add specific buff to your aura
2. Implement this trigger:
  • Summon Wolves
    • Events
      • Unit - A unit Dies
    • Conditions
      • ((Killing unit) has buff <Aura Buff>) Equal to True
    • Actions
      • Set TempPoint = (Position of (Dying unit))
      • Unit - Create 1 <Wolf> for (Owner of (Killing unit)) at TempPoint facing Default building facing degrees
      • Custom script: call RemoveLocation(udg_TempPoint)
3. If you want to, you can add specific chance. Your trigger should look like this:
  • Summon Wolves Chance
    • Events
      • Unit - A unit Dies
    • Conditions
      • ((Killing unit) has buff <Aura Buff>) Equal to True
    • Actions
      • Set RandomInteger = (Random integer number between 1 and 10)
      • If (All Conditions are True) then do (Then Actions) else do (Else Actions)
        • If - Conditions
          • RandomInteger Equal to 1
        • Then - Actions
          • Set TempPoint = (Position of (Dying unit))
          • Unit - Create 1 <Wolf> for (Owner of (Killing unit)) at TempPoint facing Default building facing degrees
          • Custom script: call RemoveLocation(udg_TempPoint)
        • Else - Actions
 
Status
Not open for further replies.
Top