• 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

Mystic v3 - Max

furby076

Well-known member
Mystics v3 have a maximum amount of psi points they can spend per level.

Level 1-2 = 2 pts
3-4 = 3 points
5-6 = 5 points
6-7 = 6 points
9+ = 7 points

I'd like for this to display in two areas:
1) Spells tab (say where spell points show)
2) Tracked resources where I have another script showing psi points per day, and DC. So in that line displaying the psi limit (script below)

-----------------


~ If we're not shown, just get out now
~ doneif (tagis[Helper.ShowSpec] = 0)

~ If we're disabled, do nothing
~ doneif (tagis[Helper.Disable] <> 0)
if (field[xAllLev].value >= 1) then
field[trkMax].value += 2
endif
if (field[xAllLev].value >= 2) then
field[trkMax].value += 2
endif
if (field[xAllLev].value >= 3) then
field[trkMax].value += 10
endif
if (field[xAllLev].value >= 4) then
field[trkMax].value += 3
endif
if (field[xAllLev].value >= 5) then
field[trkMax].value += 10
endif
if (field[xAllLev].value >= 6) then
field[trkMax].value += 5
endif
if (field[xAllLev].value >= 7) then
field[trkMax].value += 6
endif
if (field[xAllLev].value >= 8) then
field[trkMax].value += 6
endif
if (field[xAllLev].value >= 9) then
field[trkMax].value += 13
endif
if (field[xAllLev].value >= 10) then
field[trkMax].value += 7
endif
if (field[xAllLev].value >= 18) then
field[trkMax].value += 7
endif


-----
The class is here:
https://github.com/Sklore/HL_DD_5e_Colab/issues/646
 
BTW...using the Spell points would be an OK option. It doesn't sync with the spell points in the tracked resources, so right now it always shows 0.
 
Back
Top