setInitiative: Difference between revisions
Jump to navigation
Jump to search
(New page: ==Function setInitiative== Sets the Initiative:Initiative of the Token:Current Token. ===Usage=== <source lang="mtmacro" line> [h: setInitiative(val)] </source> ===Examples=== ...) |
No edit summary |
||
(11 intermediate revisions by 4 users not shown) | |||
Line 1: | Line 1: | ||
= | {{stub}} | ||
Sets the [[ | {{MacroFunction | ||
|name=setInitiative | |||
|version=1.3b41 | |||
|description= | |||
Sets the [[Introduction to Initiative|Initiative]] of the [[Current Token]]. | |||
|usage= | |||
< | <syntaxhighlight lang="mtmacro" line> | ||
setInitiative(value) | |||
</ | setInitiative(value, id) | ||
setInitiative(value, id, mapRef) | |||
</syntaxhighlight> | |||
{{param|value|The initiative value to set. If included, the initiative will be set even if the token is already on the initiative list.}} | |||
< | {{param|id|The token {{code|id}} of the token to have its initiative set. Defaults to the [[Current Token]]. {{TrustedParameter}} }} | ||
{{param|mapRef|The Name or ID of the map to find the token. Defaults to the current map.}} | |||
|examples= | |||
<syntaxhighlight lang="mtmacro" line> | |||
[h: setInitiative(1d20)] | [h: setInitiative(1d20)] | ||
</ | </syntaxhighlight> | ||
|changes= | |||
{{change|1.5.7|Added {{code|id}} and {{code|mapname}} parameter options.}} | |||
}} | |||
[[Category:Initiative Function]] |
Latest revision as of 23:59, 24 April 2023
This article is a stub, you can help the RPTools Wiki project by contributing content to expand this article.
setInitiative() Function
• Introduced in version 1.3b41
Sets the Initiative of the Current Token.
Usage
setInitiative(value)
setInitiative(value, id)
setInitiative(value, id, mapRef)
value
- The initiative value to set. If included, the initiative will be set even if the token is already on the initiative list.id
- The tokenid
of the token to have its initiative set. Defaults to the Current Token.Note: This parameter can only be used in a Trusted Macro.
mapRef
- The Name or ID of the map to find the token. Defaults to the current map.
Examples
[h: setInitiative(1d20)]
Version Changes
- 1.5.7 - Added
id
andmapname
parameter options.