getAllPropertyNames

From RPTools Wiki
Revision as of 23:22, 2 March 2019 by Azhrei (talk | contribs)
Jump to navigation Jump to search

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 value 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 with the delimiter passed in.
 

Usage

getAllPropertyNames()
getAllPropertyNames(type)
getAllPropertyNames(type, delim)

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..
Campaign Properties<br>
[h: props = getAllPropertyNames()]
[foreach(name, props, "<br>"): name]

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:

PC Properties<br>
[h: props=getAllPropertyNames("PC")]
[foreach(name, props, "<br>"): name]

Version Changes

  • 1.3b49 - Added json delimiter option.