• 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.
  • Create a faction for Warcraft 3 and enter Hive's 19th Techtree Contest: Co-Op Commanders! Click here to enter!
  • Create a void inspired texture for Warcraft 3 and enter Hive's 34th Texturing Contest: Void! Click here to enter!
  • The Hive's 21st Texturing Contest: Upgrade is now concluded, time to vote for your favourite set of icons! Click here to vote!

Request Riot!

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

I have an aura that causes riots! But units under such frenzy needs some kind of aura at their feet to show that they are angry! In TFT, there is a good simple aura-buff but the aura is BLUE! Units can not be angry and BLUE!

I wonder if someone has the same type of aura-buff but in a more angry color?



Have a look at the picture below
 

Attachments

  • Aura circle.jpg
    Aura circle.jpg
    35 KB · Views: 81
Level 16
Joined
Jul 21, 2008
Messages
1,121
You can make it with triggers.
Create a dummy unit with that Abilities\Spells\Orc\CommandAura\CommandAuraTarget.mdl model and set it's death time to 0.01 and death type to ''Can't Raise, Does not Decay''.

  • Trigger
    • Events
      • Time - Every 0.03 seconds of game time
    • Conditions
    • Actions
      • Set TempGroup = (Units in (Playable map area) matching (((Matching unit) has buff <YourBuff>) Equal to True))
      • Unit Group - Pick every unit in TempGroup and do (Actions)
        • Loop - Actions
          • Set TempPoint = (Position of (Picked unit))
          • Unit - Create 1 <Dummy> for (Owner of (Picked unit)) at TempPoint facing Default building facing degrees
          • Set Dummy = (Last created unit)
          • Unit - Add a 1.00 second Generic expiration timer to Dummy
          • Custom script: call RemoveLocation(udg_TempPoint)
          • Custom script: set udg_Dummy = null
      • Custom script: call DestroyGroup(udg_TempGroup)
This trigger creates cool effect while moving.
See image:
56700d1244129824-request-riot-effect.jpg
 

Attachments

  • Effect.JPG
    Effect.JPG
    12.5 KB · Views: 108
Level 10
Joined
Nov 5, 2008
Messages
536
Wow! That is a great effect you have created there! Unfortunatly, that will be to blurry on my map since there are many units that is going to be effected by this riot. So I need a more simple buff/effect.. But thanks anyway!
 
Status
Not open for further replies.
Top