• 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

5e Dark Sun

Is it always modifying trkPsiPnt? If so, then you don't need any of the pChosen stuff; that's only if the adjustment can pick from a list of things (like if your adjustment can choose whether to modify your choice of Strength, Dexterity, Con, etc.)

So if the adjustment is always modifying the same thing (trkPsiPnt), then it should go like this:

Code:
~ If this adjustment isn't enabled, get out now
      doneif (field[pIsOn].value = 0)

~ Adjust the Psi Point tracker Max Value up or down
      hero.childfound[trkPsiPnt].field[trkMax].value += field[pAdjust].value

That second section is going to be reusable for anything that modifies the Psi Points maximum. Just change the "field[pAdjust].value" part to whatever number or variable you want to add to the maximum.
 
Last edited:
Any suggestion on how to add an ability to a race that would let the player pick two spell like abilities for the character. In the game we have the player roll 2 d10 and they get to ability 1-10 "psi" powers. 3 of them let the players pick a sorc. cantrip.
They are then allowed to use each ability (1 psi point per level+ Intelligence modifier) times a day. I want to track it in the in play area and they are reset on a long rest. I would also like the ability they use to have a description so they know what the powers do without them having to remember.
Any help is appreciated thanks.
 
You'll want to use a Configurable. That'll be the tab they select each thing from. Bootstrap the configurable to the racial ability that says "you can pick two yadda yadda yadda."

Then each pickable ability is a Custom Ability (found under Class in the editor, but they're not intrinsically linked to classes). Those abilities can be linked to the configurable, and can each have their own descriptions, trackers, etc. and are viewable in the In-Play and Specials tabs, depending on how you program them.

The simplest examples I can think for you to look at would be the Supernatural Gifts tab. Supernatural Gifts is the Configurable, and all the gifts themselves are Custom Abilities.
 
OK I can add the class ability thing to the configurable item but not sure how to get the tab to show up.
 
Last edited:
OK I can add the class ability thing to the configurable item but not sure how to get the tab to show up.
The easiest way would probably be to add a ShowTab tag and then do a <live>ShowTab.xxx</live>

Then, when you need the tab to show up, assign the ShowTab.xxx to the hero.
 
Sorry I don't understand that.

I tried to duplicate the supernatural gifts way of doing it. I created a .1st for my data file to put it where I wanted it. Then I coped the way of adding the show supernatural gifts tab and made a .1st file for that to show up in options.
They both show up where they are supposed to in the configure hero but selecting the show wild talent tab doesn't seem to do anything.
 
Last edited:
Is there a way to allow a creature to hold medium sized two handed and versatile weapons in on hand? I think the Duel Wielder feat con be modified but want another opinion.
 
I modified the gunner feat to add RangeProj so I think that solves that one. Ok so RangeProj has an issue where it add every range weapon including firearms and such. ;(
 
Back
Top