moveTokenFromMap: Difference between revisions
Jump to navigation
Jump to search
Verisimilar (talk | contribs) (Initial write-up.) |
No edit summary |
||
(8 intermediate revisions by 6 users not shown) | |||
Line 1: | Line 1: | ||
{{stub|Examples of usage, and clearer description.}} | {{stub|Examples of usage, and clearer description.}} | ||
{{MacroFunction | {{MacroFunction | ||
|name= | |name=moveTokenFromMap | ||
|trusted=true | |trusted=true | ||
|version=1.3b54 | |version=1.3b54 | ||
Line 8: | Line 8: | ||
|usage= | |usage= | ||
< | <syntaxhighlight lang="mtmacro" line> | ||
moveTokenFromMap(id, map) | |||
</ | moveTokenFromMap(id, map, x) | ||
moveTokenFromMap(id, map, x, y) | |||
moveTokenFromMap(id, map, x, y, z) | |||
</syntaxhighlight> | |||
'''Parameters''' | '''Parameters''' | ||
{{param|id|The token {{code|id}} or a [[JSON Array]] of token {{code|id}}s of the token/s to move.}} | {{param|id|The token {{code|id}} or a [[JSON Array]] of token {{code|id}}s of the token/s to move.}} | ||
{{param|map|A string containing the name of the map that the token is moved from.}} | {{param|map|A string containing the name of the map that the token is moved from.}} | ||
{{param|x|The {{code|X}} coordinate of the current map that the token should be moved to.}} | {{param|x|The {{code|X}} coordinate of the current map that the token should be moved to. Defaults to 0.}} | ||
{{param|y|The {{code|Y}} coordinate of the current map that the token should be moved to.}} | {{param|y|The {{code|Y}} coordinate of the current map that the token should be moved to. Defaults to 0.}} | ||
{{param|z|The z-order that the token should have after being moved.}} | {{param|z|The z-order that the token should have after being moved. Defaults to the largest of the map.}} | ||
|also= | |also= | ||
Line 22: | Line 25: | ||
}} | }} | ||
[[Category:Token Function]][[Category:Map Function]] |
Revision as of 23:03, 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 of usage, and clearer description.
moveTokenFromMap() Function
Note: This function can only be used in a Trusted Macro
• Introduced in version 1.3b54
Moves tokens from a specified map to the current map.
Usage
moveTokenFromMap(id, map)
moveTokenFromMap(id, map, x)
moveTokenFromMap(id, map, x, y)
moveTokenFromMap(id, map, x, y, z)
Parameters
id
- The tokenid
or a JSON Array of tokenid
s of the token/s to move.map
- A string containing the name of the map that the token is moved from.x
- TheX
coordinate of the current map that the token should be moved to. Defaults to 0.y
- TheY
coordinate of the current map that the token should be moved to. Defaults to 0.z
- The z-order that the token should have after being moved. Defaults to the largest of the map.