getAllPropertyNames: Difference between revisions

From RPTools Wiki
Jump to navigation Jump to search
m (Correcting JSON Array link.)
m (Adding to Property Function category)
Line 39: Line 39:


}}
}}
[[Category:Token Function]]
[[Category:Token Function]][[Category:Property Function]]

Revision as of 18:52, 20 November 2012

getAllPropertyNames() Function

Introduced in version 1.3b48
Gets a list containing the 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 with the default value of ',' is used.
  • If the delimiter "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.