token.gm name: Difference between revisions

From RPTools Wiki
Jump to navigation Jump to search
m (Conversion script moved page token.gm name to Token.gm name without leaving a redirect: Converting page title to first-letter uppercase)
No edit summary
 
(4 intermediate revisions by 2 users not shown)
Line 1: Line 1:
The variable ''token.gm_name'' allows programmatic querying and setting of the token's [[Token:GM_Name|GM Name]] (the second text field in the screenshot of the Edit Token dialog).
The variable ''token.gm_name'' allows programmatic querying and setting of the token's [[Introduction to Tokens|GM Name]] (the second text field in the screenshot of the Edit Token dialog).


''token.gm_name'' is only a valid expression in a trusted macro.
''token.gm_name'' is only a valid expression in a trusted macro.
Line 8: Line 8:


===Getting the Token GM Name===
===Getting the Token GM Name===
<source lang="mtmacro" line>
<syntaxhighlight lang="mtmacro" line>
[h:secretName=token.gm_name]
[h:secretName=token.gm_name]
GM's Name: [secretName]
GM's Name: [secretName]
</source>
</syntaxhighlight>


Outputs the value of ''token.gm_name''.
Outputs the value of ''token.gm_name''.


===Setting the Token GM Name===
===Setting the Token GM Name===
<source lang="mtmacro" line>
<syntaxhighlight lang="mtmacro" line>
[h:token.gm_name = "Soldier"]
[h:token.gm_name = "Soldier"]
</source>
</syntaxhighlight>


Sets the value of ''token.gm_name'' to "Soldier."
Sets the value of ''token.gm_name'' to "Soldier."
Line 28: Line 28:
[[Category:Special Variable]]
[[Category:Special Variable]]
{{DISPLAYTITLE:token.gm_name}}
{{DISPLAYTITLE:token.gm_name}}
[[Category:Macro Function]]

Latest revision as of 20:06, 4 July 2023

The variable token.gm_name allows programmatic querying and setting of the token's GM Name (the second text field in the screenshot of the Edit Token dialog).

token.gm_name is only a valid expression in a trusted macro.

Examples

Getting the Token GM Name

[h:secretName=token.gm_name]
GM's Name: [secretName]

Outputs the value of token.gm_name.

Setting the Token GM Name

[h:token.gm_name = "Soldier"]

Sets the value of token.gm_name to "Soldier."

Related Pages