• Please note: In an effort to ensure that all of our users feel welcome on our forums, we’ve updated our forum rules. You can review the updated rules here: http://forums.wolflair.com/showthread.php?t=5528.

    If a fellow Community member is not following the forum rules, please report the post by clicking the Report button (the red yield sign on the left) located on every post. This will notify the moderators directly. If you have any questions about these new rules, please contact support@wolflair.com.

    - The Lone Wolf Development Team

How do I stop displaying an ability after a certain level

Necros99

Active member
I am adding some custom Bard Performances (per House Rules).

"Palliative Command" becomes available at level 4, but is replaced by "Palliative Utterance" at level 16. The descriptions are different enough that I don't want to cram it all into a single ability.

I know how to make an ability start displaying at a level, just not how to stop it displaying after a certain level (i.e. how do i get it to display only from levels 4-15)?
 
cEPBPPallC is Id of ability to stop displaying at 16. The below script is what I used (applied to that same ability), and it worked.

Thanks

========================================
Phase: Render Priority: 99999

~remove from display at lvl 16
if (#totallevelcount[] >= 16) then
perform hero.childfound[cEPBPPallC].assign[Helper.SpecUp]
endif
 
Last edited:
Back
Top