• 🏆 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!

Need help with ability

Status
Not open for further replies.
Level 17
Joined
Apr 24, 2005
Messages
762
So i have 3 abilities. 1 of them is a dummy ability. When the hero learns the dummy one the other 2 will be added to the hero too. And when the hero increases the level of the dummy ability the other 2 abilities levels will increase too. How can i do this?
 
Level 8
Joined
May 13, 2007
Messages
392
{to UchihaSasuke.gr } man, to deutero trigger sou einai kapos diskolo ....

  • Events
    • Unit - A unit learns a skill
  • Conditions
    • Learened Hero skill equal to Dummy
  • Actions
    • If/Then/Else Multiple Functions
      • If -
        • level of Dummy for learning Hero equal to 1
      • Then -
        • Hero -Learn for learning Hero : Spell 1
        • Hero -Learn for learning Hero : Spell 1
      • Else -
        • Do nothing
  • If/Then/Else Multiple Functions
    • If -
      • level of Dummy for learning Hero equal to 2
    • Then -
      • Unit - Increase level of Spell 1 for learning Hero
      • Unit - Increase level of Spell 2 for learning Hero
    • Else -
      • Do nothing
  • If/Then/Else Multiple Functions
    • If -
      • level of Dummy for learning Hero equal to 3
    • Then -
      • Unit - Increase level of Spell 1 for learning Hero
      • Unit - Increase level of Spell 2 for learning Hero
    • Else -
      • Do nothing
This is an example of my idea for ur spell.
 
Level 2
Joined
Jun 22, 2007
Messages
10
  • Events
    • Unit - A unit learns a skill
  • Conditions
    • Learned Hero skill equal to Dummy Ability
  • Actions
    • If/Then/Else Multiple Functions
      • If -
        • Level of (Learned Hero Skill) for (Triggering Unit) is equal to 1
      • Then -
        • Unit - Add Spell 1 to (Triggering Unit)
        • Unit - Add Spell 2 to (Triggering Unit)
      • Else -
        • Unit - Increase level of Spell 1 for (Triggering Unit)
        • Unit - Increase level of Spell 2 for (Triggering Unit)
Here you go.
 
Last edited:
Level 8
Joined
May 13, 2007
Messages
392
  • Events
    • Unit - A unit learns a skill
  • Conditions
    • Learned Hero skill equal to Dummy Ability
  • Actions
    • If/Then/Else Multiple Functions
      • If -
        • Level of (Learned Hero Skill) for (Triggering Unit) is equal to 1
      • Then -
        • Unit - Add Spell 1 to (Triggering Unit)
        • Unit - Add Spell 2 to (Triggering Unit)
      • Else -
        • Unit - Increase level of Spell 1 for (Triggering Unit)
        • Unit - Increase level of Spell 2 for (Triggering Unit)
Here you go.

Yours compared to mine is smaller ans simplier. Gj
 
Status
Not open for further replies.
Top