addToInitiative: Difference between revisions
Jump to navigation
Jump to search
m (Conversion script moved page AddToInitiative to addToInitiative: Converting page titles to lowercase) |
No edit summary |
||
Line 2: | Line 2: | ||
{{MacroFunction | {{MacroFunction | ||
|name=addToInitiative | |name=addToInitiative | ||
|description=Adds the [[Current Token]] to the [[Initiative | |description=Adds the [[Current Token]] to the [[introduction to Initiative|initiative panel]]. Additional parameters allow you to specify the token and an initiative value. | ||
|usage= | |usage= | ||
Line 21: | Line 21: | ||
|example= | |example= | ||
The following example shows how to add a [[Current Token]] to the [[Initiative | The following example shows how to add a [[Current Token]] to the [[introduction to Initiative|initiative panel]], set its initiative and then sort the [[introduction to Initiative|initiative panel]]. Normally you would not sort the [[introduction to Initiative|initiative panel]] every time you add a [[Current Token]] but its done here to show you how it is done. | ||
<source lang="mtmacro" line> | <source lang="mtmacro" line> |
Revision as of 00:09, 12 February 2023
This article is a stub, you can help the RPTools Wiki project by contributing content to expand this article.
addToInitiative() Function
Adds the Current Token to the initiative panel. Additional parameters allow you to specify the token and an initiative value.
Usage
addToInitiative()
addToInitiative(AllowDuplicates)
addToInitiative(AllowDuplicates, value)
addToInitiative(AllowDuplicates, value, id)
addToInitiative(AllowDuplicates, value, id, mapname)
Parameters
AllowDuplicates
- If false (default) then will not add the token if it is already in the initiative list. If true (1) an additional entry will be added to the initiative list (so there could be multiple initiative entries for the same token).value
- The initiative value to set. If included, the initiative will be set even if the token is already on the initiative list and duplicates are not allowed.id
- The tokenid
of the token to add to the initiative. Defaults to the Current Token.Note: This parameter can only be used in a Trusted Macro.
mapname
- The name of the map to find the token. Defaults to the current map.return
- Returns 1 if added to the initiative, 0 if did not.
Example
The following example shows how to add a Current Token to the initiative panel, set its initiative and then sort the initiative panel. Normally you would not sort the initiative panel every time you add a Current Token but its done here to show you how it is done.
[h: addToInitiative()]
[h: setInitiative(1d20)]
[h: sortInitiative()]
See Also
Version Changes
- 1.5.7 - Added
id
andmapname
parameter options.