I watched a few tutoriels about how to create abilities and make them level (a bit like warcraft III), but I can't figure out how to set a minimum level to learn an ability.
An exemple would be more simple :
I've got a capacity with three levels : how can I make my hero can't learn the first of this ability if he is not like lvl 10 himself (just like warcraft, the hero couldn't learn their final skill before level 6).
It's probably a newbie question but I didn't found any helpfull information on the net.
The min level works, that's already a lot. Thank you.
Is there a way to change the unit veterancy level requirement for each level of the ability, like ability lvl 1 = hero lvl 3, ability lvl 2 = hero lvl 10, or so ?
you can but it is alot of work. use a OR requirement and set the requirement for each level
abil level = 1 and veterancy greater or equal to 3 OR abil level = 2 and veterancy greater or equal to 10 and so on.
Hello !
I'm acutally creating a map involving heros.
I watched a few tutoriels about how to create abilities and make them level (a bit like warcraft III), but I can't figure out how to set a minimum level to learn an ability.
An exemple would be more simple :
I've got a capacity with three levels : how can I make my hero can't learn the first of this ability if he is not like lvl 10 himself (just like warcraft, the hero couldn't learn their final skill before level 6).
It's probably a newbie question but I didn't found any helpfull information on the net.
Thanks for your help !
use a requirement:
This requirement will let your ability learn at 1/3/5 etc, just like wc3
adjust as you need
A Greater or Equal -> B
B Count Behavior Veterancy
B Sum -> C
C Count ability (your level ability)
C Count ability (your level ability)
C Constant = 1
I have alreday tried this, but I still can learn my first level ability while my hero is level 1.
Increase the constant number. It is the minimum level required for the first learning of the ability.
Okay.
The min level works, that's already a lot. Thank you.
Is there a way to change the unit veterancy level requirement for each level of the ability, like ability lvl 1 = hero lvl 3, ability lvl 2 = hero lvl 10, or so ?
I've tried so hard and I still can't figure out how to do.
Does anyone has any clue ? This requirement system is really hard to begin with and I'm kinda stuck.
@Iltha: Go
you can but it is alot of work. use a OR requirement and set the requirement for each level
abil level = 1 and veterancy greater or equal to 3 OR abil level = 2 and veterancy greater or equal to 10 and so on.
It still doesn't works, I guess I don't place the "or" properly.
Here is a screenshot, I tried to place it at several places, the first level is fine but there is no restriction after.
http://imgur.com/agDiWsX
@Iltha: Go
A OR
B AND
C ISEqual
D Count Ability
D Const 1
C ISGREATEROREQUAL
D Count Behavior
D Const 3
B AND
C ISEQUAL
...............
Finally, it works !
It's hard to understand when you have never done it before, but I think I get it.
Thanks a lot for your help, this forum is really awesome.