• 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

tMoney Tag?

Frodie

Well-known member
IDK if we can do this, but I am making a feat that adds 10gp to the character's total gp.

I think the script is cool, but the tMoney tag is wrong for tCurrGP. Anyone know the correct tag?


hero.childfound[tMoney].field[tCurrGP].value += 10
 
Just FYI first but tMoney is a "Thing" not a tag. A tag would have a Group ID (dot) Specific Name. In example "IsWeapon.wScimitar" is a tag.

So other traits/feats that add money do NOT do it via a script. So if you look at the "Rich Parents" trait you see their is a note for the gamer to add the money on the Journal tab.

The reason is that scripts fire "every single" time something on a character changes. If you up the skill rank by one point every script fires again starting at timing First/1 to Final/99999999. Their is no way to run a script only a single time to add a single amount of money.

So the only way to do this is for the gamer to do it themselves. Simply put a note to add the money using the "Journal" tab.
 
Back
Top