setGMName: Difference between revisions

From RPTools Wiki
Jump to navigation Jump to search
m (Conversion script moved page setGMName to SetGMName without leaving a redirect: Converting page title to first-letter uppercase)
No edit summary
 
(2 intermediate revisions by 2 users not shown)
Line 7: Line 7:


|usage=
|usage=
<source lang="mtmacro" line>
<syntaxhighlight lang="mtmacro" line>
setGMName(name)
setGMName(name)
setGMName(name, id)
setGMName(name, tokenRef)
setGMName(name, id, mapname)
setGMName(name, tokenRef, mapname)
</source>
</syntaxhighlight>
'''Parameters'''
'''Parameters'''
{{param|name|A string that is set as the GM Name on the token.}}
{{param|name|A string that is set as the GM Name on the token.}}
{{param|id|The token id of the token that has its GM Name set. Defaults to the [[Current Token]].}}
{{param|tokenRef|Either the token [[getSelected|{{code|id}}]] or [[getTokenName|Token Name]] of the token that has its GM Name set. Defaults to the [[Current Token]].}}
{{param|mapname|The name of the map to find the token.  Defaults to the current map.}}
{{param|mapname|The name of the map to find the token.  Defaults to the current map.}}
 
{{Note|Token IDs are unique, but Token Names can be duplicated. Using Token Name when more than one token has the same name can produce unexpected results.}}


|examples=
|examples=
Sets the GM Name of the [[Current Token]] to {{code|New GM Name}}.
Sets the GM Name of the [[Current Token]] to {{code|New GM Name}}.
<source lang="mtmacro" line>
<syntaxhighlight lang="mtmacro" line>
[h: setGMName("New GM Name")]
[h: setGMName("New GM Name")]
</source>
</syntaxhighlight>


Sets the GM Name of all selected tokens to {{code|New GM Name}}.
Sets the GM Name of all selected tokens to {{code|New GM Name}}.
<source lang="mtmacro" line>
<syntaxhighlight lang="mtmacro" line>
[h: SelectedTokens = getSelected()]
[h: SelectedTokens = getSelected()]
[h,foreach(TokenID, SelectedTokens), code:
[h,foreach(TokenID, SelectedTokens), code:
Line 31: Line 31:
[h: setGMName("New GM Name", TokenID)]
[h: setGMName("New GM Name", TokenID)]
}]
}]
</source>
</syntaxhighlight>


|also=
|also=

Latest revision as of 18:56, 11 May 2024

setGMName() Function

 Note: This function can only be used in a Trusted Macro

Introduced in version 1.3b49
Sets the GM Name of a token.

Usage

setGMName(name)
setGMName(name, tokenRef)
setGMName(name, tokenRef, mapname)

Parameters

  • name - A string that is set as the GM Name on the token.
  • tokenRef - Either the token id or Token Name of the token that has its GM Name set. Defaults to the Current Token.
  • mapname - The name of the map to find the token. Defaults to the current map.
Token IDs are unique, but Token Names can be duplicated. Using Token Name when more than one token has the same name can produce unexpected results.

Examples

Sets the GM Name of the Current Token to New GM Name.
[h: setGMName("New GM Name")]

Sets the GM Name of all selected tokens to New GM Name.

[h: SelectedTokens = getSelected()]
[h,foreach(TokenID, SelectedTokens), code:
{
[h: setGMName("New GM Name", TokenID)]
}]

See Also

Version Changes

  • 1.3b51 - Added id parameter option.
  • 1.5.9 - Added mapname parameter option.