bar.name: Difference between revisions

From RPTools Wiki
Jump to navigation Jump to search
m (Conversion script moved page Bar.name to bar.name: Converting page titles to lowercase)
m (Text replacement - "source>" to "syntaxhighlight>")
Line 8: Line 8:
<source lang="mtmacro" line>
<source lang="mtmacro" line>
[bar.<i>name</i> = value]
[bar.<i>name</i> = value]
</source>
</syntaxhighlight>


Sets the value of the token bar named ''name'' to the desired value. The bar's ''name'' is set when the bar is created, and may be any name, provided it contains no spaces or special characters except the underscore. ''Value'' must be a number between 0 and 1. When providing a decimal value, include the leading 0 (e.g. enter <code>0.5</code> rather than <code>.5</code>) or your macro will produce an error.
Sets the value of the token bar named ''name'' to the desired value. The bar's ''name'' is set when the bar is created, and may be any name, provided it contains no spaces or special characters except the underscore. ''Value'' must be a number between 0 and 1. When providing a decimal value, include the leading 0 (e.g. enter <code>0.5</code> rather than <code>.5</code>) or your macro will produce an error.
Line 21: Line 21:
[h: HP = HP - DamageTaken]
[h: HP = HP - DamageTaken]
[h: bar.Health = HP / MaxHP]
[h: bar.Health = HP / MaxHP]
</source>
</syntaxhighlight>


Sets the value of ''bar.Health'' to the result of ''HP / MaxHP''.
Sets the value of ''bar.Health'' to the result of ''HP / MaxHP''.

Revision as of 17:28, 14 March 2023

A Two Tone "HP" bar on a token

The bar.name variable permits the getting and setting of the token bar value (and the corresponding image displayed on the token) programmatically. Token bars are one, two, or multi-image graphical elements displayed on a token that are used (typically) to visually indicate the status of consumable or expendable items or character traits (such as Hit Points, Ammunition, Health, or the like).

Bars, like token states, are configured via the Campaign Properties dialog and are specific to the campaign in which they exist. In the screenshot shown below, the green-on-black line across the top of the token is a token bar.

Usage

<source lang="mtmacro" line> [bar.name = value] </syntaxhighlight>

Sets the value of the token bar named name to the desired value. The bar's name is set when the bar is created, and may be any name, provided it contains no spaces or special characters except the underscore. Value must be a number between 0 and 1. When providing a decimal value, include the leading 0 (e.g. enter 0.5 rather than .5) or your macro will produce an error.

Assigning a value to a bar.name will make the bar visible. Checking or using the value of bar.name when the bar is not already visible returns null.

While this special variable can be convenient, Using Token Bar Functions instead of token.name can give you more flexibility in your macros.

Examples

<source lang="mtmacro" line> [h: HP = HP - DamageTaken] [h: bar.Health = HP / MaxHP] </syntaxhighlight>

Sets the value of bar.Health to the result of HP / MaxHP.

Notes

Two functions, setBar() and getBar() also exist to get and set the value of the token bar.

Related Pages