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
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