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

Trouble with Hiding Icon

Status
Not open for further replies.
Level 1
Joined
Jan 1, 2009
Messages
2
Hey guys, I got this hero ability I'm working on.

The base spell is Immolation. The reason I used this spell is so that it can be activated, deactivated, and drain the mana of the user. It no longer causes any damage.

What it does, however, is increase the attack damage, armor, agility, and strength of the hero. So far I've gotten the attack damage part. I used War Drums for the attack damage increase. With triggers, I made it so that whenever a unit performed the order immolation/unimmolation, then the ability War Drums would be added or removed from the unit. The problem is that whenever War Drums is added to the hero, the icon appears.

When the icon is set to none in the object editor, a green icon appears. Is there an option or something I can do to hide the icon of this added ability and other added abilities later on. Below are my triggers, if you want to see them.

  • Infuriate Activate
    • Events
      • Unit - A unit Is issued an order with no target
    • Conditions
      • (Issued order) Equal to (Order(immolation))
    • Actions
      • Unit - Add Infuriate (Effect) to (Triggering unit)
  • Infuriate Deactivate
    • Events
      • Unit - A unit Is issued an order with no target
    • Conditions
      • (Issued order) Equal to (Order(unimmolation))
    • Actions
      • If (All Conditions are True) then do (Then Actions) else do (Else Actions)
        • If - Conditions
          • ((Triggering unit) has buff Infuriate (Buff) ) Equal to True
        • Then - Actions
          • Unit - Remove Infuriate (Buff) buff from (Triggering unit)
          • Unit - Remove Infuriate (Effect) from (Triggering unit)
        • Else - Actions
          • Do nothing
 
Status
Not open for further replies.
Top