PARTY_MAX Element


PARTY_MAX (a child element of STEP) is a number limiting the size of the adventure party. For example, when PARTY_MAX is 4, it means the first 4 player characters form the current adventure party.

Supported Values

PARTY_MAX supports the use of an integer or a numerical expression constructed by the child elements of NUMBER_OBJECT as value.

Examples

In this example PARTY_MAX is used to form a 4-member party.

  • <STEP>
    • ......
    • <PARTY_MAX>4</PARTY_MAX>
    • ......
  • </STEP>

In this example PARTY_MAX is used with a numerical expression constructed by the child elements of NUMBER_OBJECT as value to increase the size of the current adventure party by 1.

  • <STEP>
    • ......
    • <PARTY_MAX>
      • <ADD_ITSELF>1</ADD_ITSELF>
    • </PARTY_MAX>
    • ......
  • </STEP>