getAllPropertyNames: Difference between revisions

From RPTools Wiki
Jump to navigation Jump to search
m (Conversion script moved page GetAllPropertyNames to getAllPropertyNames: Converting page titles to lowercase)
m (Text replacement - "<source" to "<syntaxhighlight")
Line 8: Line 8:
&nbsp;
&nbsp;
|usage=
|usage=
<source lang="mtmacro">
<syntaxhighlight lang="mtmacro">
getAllPropertyNames()
getAllPropertyNames()
getAllPropertyNames(type)
getAllPropertyNames(type)
Line 21: Line 21:
|examples=
|examples=
You can use the following code to print out all of the properties in the [[Introduction_to_Properties|campaign properties]] list..
You can use the following code to print out all of the properties in the [[Introduction_to_Properties|campaign properties]] list..
<source lang="mtmacro" line>
<syntaxhighlight lang="mtmacro" line>
Campaign Properties<br>
Campaign Properties<br>
[h: props = getAllPropertyNames()]
[h: props = getAllPropertyNames()]
Line 28: Line 28:


If you have two token property sets, for instance "PC" and "NPC", you could print out all of the properties for the "PC" property set like so:
If you have two token property sets, for instance "PC" and "NPC", you could print out all of the properties for the "PC" property set like so:
<source lang="mtmacro" line>
<syntaxhighlight lang="mtmacro" line>
PC Properties<br>
PC Properties<br>
[h: props=getAllPropertyNames("PC")]
[h: props=getAllPropertyNames("PC")]
Line 35: Line 35:


Get the Basic properties in a [[JSON Array]]:
Get the Basic properties in a [[JSON Array]]:
<source lang="mtmacro" line>
<syntaxhighlight lang="mtmacro" line>
[r: props=getAllPropertyNames("Basic","json")]
[r: props=getAllPropertyNames("Basic","json")]
</source>
</source>

Revision as of 18:16, 14 March 2023

getAllPropertyNames() Function

Introduced in version 1.3b48
Gets a list containing the token property names that are defined in the Campaign Properties. The type of the list returned depends on the delimiter parameter.
  • If the delimiter is not specified then a string list is returned and the default value of "," is used.
  • If the delimiter is "json" then a JSON Array is returned.
  • Otherwise, a string list is returned using the delimiter passed in.
 

Usage

<syntaxhighlight lang="mtmacro"> getAllPropertyNames() getAllPropertyNames(type) getAllPropertyNames(type, delim) </source> Parameters

  • type - The name of the property set to be retrieved. Defaults to all defined token property sets. Use "*" or "" when using a delimiter to get all sets.
  • delim - The delimiter to be used in the list of names returned. Default is ,

If type is specified then the string list contains the property names for that token property type, otherwise it will contain the token property names for all token property types. If delim is specified then it is used to separate the values in the string list, if it is not specified then it defaults to ','.

Examples

You can use the following code to print out all of the properties in the campaign properties list..

<syntaxhighlight lang="mtmacro" line> Campaign Properties
[h: props = getAllPropertyNames()] [foreach(name, props, "
"): name] </source>

If you have two token property sets, for instance "PC" and "NPC", you could print out all of the properties for the "PC" property set like so: <syntaxhighlight lang="mtmacro" line> PC Properties
[h: props=getAllPropertyNames("PC")] [foreach(name, props, "
"): name] </source>

Get the Basic properties in a JSON Array: <syntaxhighlight lang="mtmacro" line> [r: props=getAllPropertyNames("Basic","json")]

</source>

Version Changes

  • 1.3b49 - Added json delimiter option.