I copied the 4e negative quality In Debt from my 4e Edition data and tried to bring it into 5e. Everything appears to work fine except that the resources isn't showing a -negative value for the amount loaned like the Karma is for the negative quality I was wondering if someone could tell me what I might need to change.
The script seems to handle Karma costs correctly and it appears properly as an In-Play adjustable value. So I believe the problem is in this part of the code. I suspect it is something easy and subtle that changed in how resources are managed in 5e data.
I can't seem to find any reference guide to how #resspent works to sort this out.
Any help would be greatly appreciated.
The script seems to handle Karma costs correctly and it appears properly as an In-Play adjustable value. So I believe the problem is in this part of the code. I suspect it is something easy and subtle that changed in how resources are managed in 5e data.
Code:
~subtract the amount we borrowed from the Resources item that shows
~along the top of the character perform
#resspent[resResourc,-,field[Value].value,field[thingname].text]
~place a fake entry in the "Gear BP" entry that's among the other
~BP summary items (the amount of BP to add to the total is actually
~handled by the Resources item, but everything gets displayed as gear
~BP as well).
perform #resspent[resGearBP,$,0,field[thingname].text & " (-" & field[Value].value & ")"]
I can't seem to find any reference guide to how #resspent works to sort this out.
Any help would be greatly appreciated.