setCurrentInitiative: Difference between revisions
Jump to navigation
Jump to search
m (Conversion script moved page SetCurrentInitiative to setCurrentInitiative: Converting page titles to lowercase) |
No edit summary |
||
Line 8: | Line 8: | ||
|usage= | |usage= | ||
< | <syntaxhighlight lang="mtmacro" line> | ||
[h: setCurrentInitiative(offset)] | [h: setCurrentInitiative(offset)] | ||
</ | </syntaxhighlight> | ||
|examples= | |examples= | ||
Give Initiative to the 4th [[Token]]. | Give Initiative to the 4th [[Token]]. | ||
< | <syntaxhighlight lang="mtmacro" line> | ||
[h: setCurrentInitiative(3)] | [h: setCurrentInitiative(3)] | ||
</ | </syntaxhighlight> | ||
Clear current initiative (any number that is not a valid token offset will work). | Clear current initiative (any number that is not a valid token offset will work). | ||
< | <syntaxhighlight lang="mtmacro" line> | ||
[h: setCurrentInitiative(-1)] | [h: setCurrentInitiative(-1)] | ||
[h: setCurrentInitiative(999)] | [h: setCurrentInitiative(999)] | ||
</ | </syntaxhighlight> | ||
}} | }} | ||
[[Category:Initiative Function]] | [[Category:Initiative Function]] |
Revision as of 21:05, 14 March 2023
setCurrentInitiative() Function
Gives the Initiative to the Token at the specified offset in the Initiative Panel. Offsets start at 0.
To clear, specify a number that is not a valid token offset, like -1.
Usage
[h: setCurrentInitiative(offset)]
Examples
Give Initiative to the 4th Token.
[h: setCurrentInitiative(3)]
Clear current initiative (any number that is not a valid token offset will work).
[h: setCurrentInitiative(-1)]
[h: setCurrentInitiative(999)]