• 🏆 Texturing Contest #33 is OPEN! Contestants must re-texture a SD unit model found in-game (Warcraft 3 Classic), recreating the unit into a peaceful NPC version. 🔗Click here to enter!
  • It's time for the first HD Modeling Contest of 2024. Join the theme discussion for Hive's HD Modeling Contest #6! Click here to post your idea!

[Trigger] Learn two skills at once

Status
Not open for further replies.
Level 1
Joined
Mar 19, 2013
Messages
1
Do anyone know how to learn two abilities at once? Like Nevermore's shadowraze skill in dota, when you learn the skill you'll get three separate skills.

I used this trigger, but it doesn't work.
  • Events
    • Unit - A unit Learns a skill
  • Conditions
    • (Learned Hero Skill) Equal to Permanent Invisibility
  • Actions
    • If (All Conditions are True) then do (Then Actions) else do (Else Actions)
      • If - Conditions
        • (Level of Permanent Invisibility for (Triggering unit)) Equal to 1
      • Then - Actions
        • Unit - Add Permanent Invisibility (dummy) to (Triggering unit)
      • Else - Actions
        • Unit - Set level of Permanent Invisibility (dummy) for (Triggering unit) to (Level of Permanent Invisibility for (Triggering unit))
 
Level 19
Joined
Feb 25, 2009
Messages
2,004
  • Shadowraze Learn
    • Events
      • Unit - A unit Learns a skill
    • Conditions
      • (Learned Hero Skill) Equal to Shadowraze (Learn Only)
    • Actions
      • If (All Conditions are True) then do (Then Actions) else do (Else Actions)
        • If - Conditions
          • (Level of Shadowraze (Learn Only) for (Triggering unit)) Equal to 1
        • Then - Actions
          • Unit - Add Shadowraze (200) to (Triggering unit)
          • Unit - Add Shadowraze (450) to (Triggering unit)
          • Unit - Add Shadowraze (700) to (Triggering unit)
        • Else - Actions
          • Unit - Increase level of Shadowraze (200) for (Triggering unit)
          • Unit - Increase level of Shadowraze (450) for (Triggering unit)
          • Unit - Increase level of Shadowraze (700) for (Triggering unit)
 
Status
Not open for further replies.
Top