• 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

Increment

Frodie

Well-known member
Does the Helper.Increment tag not work in 5e?

Working on the Skilled feat and it seem you have a choice of 3 skills or tools. I assume you can mix or match between the two. So I need some kind of adjustment.
 
Ok, kind of stuck on how to proceed with the Skilled feat. This is what I have ATM. An arry with two choices of Skills or Tools. The choice gives a +3 to either to the base race (I just thought would be the most universal place to add them).

Code:
Final 11000

if (field[usrIndex].value = 1) then
hero.childfound[RaceHelper].field[cSkillMax3].value += 3
hero.childfound[RaceHelper].field[cSkCandEx3].text = "TRUE"
endif

if (field[usrIndex].value = 2) then
hero.childfound[RaceHelper].field[cToolMax3].value += 3
hero.childfound[RaceHelper].field[cTlCandEx3].text = "TRUE"
endif

And that works fine, but reading the feat it seems you can mix match the skills and tools choices for a total of 3. This is where I am stuck and not sure how to implement this. I thought about using activation within the feat, but there is only one activation choice amount field. So I thought of making two different abilities with activation amounts. And that kind of works, but no real way to balance the two so the user doesn't go beyond 3 choices max. So I am kind of stuck on the best way to move foward. Any ideas?
 
Check out the weapons master feat in the repository perhaps. That lets you pick four weapons to become proficient with. One of the guys achieved that by adding in 3 feat things. He linked 2 of them to the master somehow letting you pick more than 2 options. Well above my experience with this tool but you could learn a lot I imagine from his code.
 
Check out the weapons master feat in the repository perhaps. That lets you pick four weapons to become proficient with. One of the guys achieved that by adding in 3 feat things. He linked 2 of them to the master somehow letting you pick more than 2 options. Well above my experience with this tool but you could learn a lot I imagine from his code.
Allot of the extra coding I had to do to get the "extra" helper feats to appear won't be needed soon. Aaron has officially fixed that in the next release of 5e. In that case you can simply bootstrap a feat to a feat and both will get displayed when the first feat is added.

You should be able to do the same for Abilities, Skills, or really any Thing. That is often the easiest method for getting more than "two" dropdown lists to appear for a feat. As in the case of "Weapon Master" where I needed a total of 5 dropdowns.
 
Back
Top