MONEY (a child element of STEP) is used to change the total amount of money owned by the party.
MONEY supports the use of an integer or a numerical expression constructed by the child elements of NUMBER_OBJECT as value.
In this example MONEY is used to assign $10,000 to the party.
- <STEP>
- ......
- <MONEY>10000</MONEY>
- ......
- </STEP>
In this example MONEY is used with a numerical expression constructed by the child elements of NUMBER_OBJECT as value to add $1,000 to the existing amount of money for the party.
- <STEP>
- ......
- <MONEY>
- <ADD_ITSELF>1000</ADD_ITSELF>
- </MONEY>
- ......
- </STEP>