-
October 15th, 2024, 14:31 #191
I would probably use a handler for the xp earned for each multiclass record to trigger it instead of what you did. Might be safer to not mess with that button.
https://forge.fantasygrounds.com/shop/items/199/view
Old School Essentials Ruleset
https://www.dmsguild.com/product/352...eon-Builder-5E
5e Random Dungeon Generator!
-
October 15th, 2024, 14:36 #192
- Join Date
- Jun 2016
- Posts
- 72
-
October 25th, 2024, 16:36 #193
- Join Date
- Jun 2016
- Posts
- 72
I noticed that the multiclass XP window only provided a single entry field for prime requisite bonus although the rules indicate each class should have its own XP bonus calculated individually, so I went ahead and added that in my own QoL extension. I've attached the corresponding file in case you or anyone else is interested. (This file also contains my hack to make multilevel characters auto-level on XP assignment the same as non-multiclass characters.)
The relevant bit (apart from adding the new entry fields bonusclass1_field and bonusclass2_field) is here:
<buttoncontrol name="Button1" merge="join">
<script>
function onClickRelease()
super.onClickRelease();
local nodeChar = window.getDatabaseNode();
if window.multiclasscheck.getValue() == 1 then
local nXp1 = DB.getValue(nodeChar, "xpclass1", 0);
local nBonus1 =(window.bonusclass1_field.getValue()) / 100;
nXp1 = math.floor((nXp1 * (1 + nBonus1)) + 0.5);
DB.setValue(nodeChar, "xpclass1", "number", nXp1);
local nXp2 = DB.getValue(nodeChar, "xpclass2", 0);
local nBonus2 =(window.bonusclass2_field.getValue()) / 100;
nXp2 = math.floor((nXp2 * (1 + nBonus2)) + 0.5);
DB.setValue(nodeChar, "xpclass2", "number", nXp2);
-
October 25th, 2024, 19:53 #194
And currently, multiclassed characters don't have xp for next level in Party Sheet
XP Multiclass.jpg
-
October 25th, 2024, 22:51 #195
Yeah going to have to rough it on that one
https://forge.fantasygrounds.com/shop/items/199/view
Old School Essentials Ruleset
https://www.dmsguild.com/product/352...eon-Builder-5E
5e Random Dungeon Generator!
-
October 25th, 2024, 23:30 #196
Alright I added the bonus for each class. There is a strong chance this ruleset gets a total revamp, FYI.
https://forge.fantasygrounds.com/shop/items/199/view
Old School Essentials Ruleset
https://www.dmsguild.com/product/352...eon-Builder-5E
5e Random Dungeon Generator!
-
October 26th, 2024, 10:44 #197
Hello,
How does it work? Because I don't see any changes after the update.
-
October 26th, 2024, 16:14 #198
See Image. Try updating again and let me know!
Last edited by bayne7400; October 26th, 2024 at 16:17.
https://forge.fantasygrounds.com/shop/items/199/view
Old School Essentials Ruleset
https://www.dmsguild.com/product/352...eon-Builder-5E
5e Random Dungeon Generator!
-
October 26th, 2024, 22:09 #199
-
October 27th, 2024, 00:47 #200
- Join Date
- Jun 2016
- Posts
- 72
Nice!
Thread Information
Users Browsing this Thread
There are currently 1 users browsing this thread. (0 members and 1 guests)
Bookmarks