setAllStates: Difference between revisions
Jump to navigation
Jump to search
m (Conversion script moved page SetAllStates to setAllStates: Converting page titles to lowercase) |
No edit summary |
||
Line 7: | Line 7: | ||
|usage= | |usage= | ||
< | <syntaxhighlight lang="mtmacro"> | ||
setAllStates(value) | setAllStates(value) | ||
setAllStates(value, id) | setAllStates(value, id) | ||
setAllStates(value, id, mapname) | setAllStates(value, id, mapname) | ||
</ | </syntaxhighlight> | ||
'''Parameter''' | '''Parameter''' | ||
{{param|value|If all states should be set on or off, {{true}} or {{false}}.}} | {{param|value|If all states should be set on or off, {{true}} or {{false}}.}} | ||
Line 19: | Line 19: | ||
|examples= | |examples= | ||
Set all [[Token:state|Token States]] on | Set all [[Token:state|Token States]] on | ||
< | <syntaxhighlight lang="mtmacro" line> | ||
[h: setAllStates(1)] | [h: setAllStates(1)] | ||
</ | </syntaxhighlight> | ||
Set all [[Token:state|Token States]] off | Set all [[Token:state|Token States]] off | ||
< | <syntaxhighlight lang="mtmacro" line> | ||
[h: setAllStates(0)] | [h: setAllStates(0)] | ||
</ | </syntaxhighlight> | ||
|also= | |also= |
Revision as of 21:09, 14 March 2023
This article is a stub, you can help the RPTools Wiki project by contributing content to expand this article.
This article needs: Examples using new functionality.
setAllSates() Function
• Introduced in version 1.3b40
Usage
setAllStates(value)
setAllStates(value, id)
setAllStates(value, id, mapname)
Parameter
value
- If all states should be set on or off,true
(1
) orfalse
(0
).id
- Theid
of the token that should have its States set. 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.
Examples
See Also
Version Changes
- 1.3b51 - Added
id
parameter option. - 1.5.4 - Added
mapname
parameter option.