I have a suit ability that adds different abilities to a unit for each skill point put into this suit ability. At level 2 of the suit ability the unit gains a teleport. At level 5 of this suit ability I'd like to have the teleport take the nearest ally to the caster to the caster's destination. I already have these two teleport abilities in working condition but I'm having a lot of trouble trying to figure out the best way to get the teleport to change at level 5 of this suit ability. Can anyone help me out?
Right now I'm using requirements to count the suit ability level and unlock the abilities once the required level of the suit ability has been reached.
My teleport ability requirement looks like this:
Use
And
Greater Than or Equal To
Count Ability Suit Completed at Unit (Tech Tree Cheat)
Constant 2
Less Than or Equal To
Count Ability Suit Completed at Unit (Tech Tree Cheat)
Constant 4
The requirement for my transporter ability (at level 5) looks like this:
Greater Than or Equal To
Count Ability Suit Completed at Unit (Tech Tree Cheat)
Constant 5
I have both the buttons for the teleport and the transporter in the same slot on my units command card and the ability for the teleport linked to the first button in the slot. The transporter ability is linked to the second button.
Right now the teleport ability shows up at level 2 just like I want it to but at level 5 it grays out and the transporter ability does not show up.
the requirment has a USE and a SHOW field. if the use field returns false it's greyed out, if show returns false it's hidden.
another way would be to have a levelable teleport ability and you just increase the level of the ability each time a point is spent. using the same effects from 1-4 and add the other effects on lvl 5.
Is it possible to have the teleport ability gain levels with my suit ability? If not I'll have to go with making a separate ability for level 5 of the teleport. The suit is a behaviors type ability. It has a behavior it adds from level 1 and uses the same behavior up to level 5.
i would (and do so in trd) increase the lvl of the ability with triggers. going with a different ability allows you to do data only ofc. (hopefully not reaching the limit of 32 abilities).
another way would be to have a trigger effect as first effect of the teleport with a validator checking the lvl of your suit, if lvl 5 do teleport effect 5, default is normal teleport.
I have a suit ability that adds different abilities to a unit for each skill point put into this suit ability. At level 2 of the suit ability the unit gains a teleport. At level 5 of this suit ability I'd like to have the teleport take the nearest ally to the caster to the caster's destination. I already have these two teleport abilities in working condition but I'm having a lot of trouble trying to figure out the best way to get the teleport to change at level 5 of this suit ability. Can anyone help me out?
Right now I'm using requirements to count the suit ability level and unlock the abilities once the required level of the suit ability has been reached. My teleport ability requirement looks like this:
Use
The requirement for my transporter ability (at level 5) looks like this:
I have both the buttons for the teleport and the transporter in the same slot on my units command card and the ability for the teleport linked to the first button in the slot. The transporter ability is linked to the second button.
Right now the teleport ability shows up at level 2 just like I want it to but at level 5 it grays out and the transporter ability does not show up.
@EntityEnigma: Go
the requirment has a USE and a SHOW field. if the use field returns false it's greyed out, if show returns false it's hidden.
another way would be to have a levelable teleport ability and you just increase the level of the ability each time a point is spent. using the same effects from 1-4 and add the other effects on lvl 5.
Oh wow, cool. I didn't know that.
Is it possible to have the teleport ability gain levels with my suit ability? If not I'll have to go with making a separate ability for level 5 of the teleport. The suit is a behaviors type ability. It has a behavior it adds from level 1 and uses the same behavior up to level 5.
i would (and do so in trd) increase the lvl of the ability with triggers. going with a different ability allows you to do data only ofc. (hopefully not reaching the limit of 32 abilities).
another way would be to have a trigger effect as first effect of the teleport with a validator checking the lvl of your suit, if lvl 5 do teleport effect 5, default is normal teleport.