tokens.denyMove: Difference between revisions

From RPTools Wiki
Jump to navigation Jump to search
(New page: {{code|tokens.denyMove}} You can use this variable in the {{code|onTokenMove}} event to cancel the movement made. ==usage== <source lang="mtmacro" line> <!-- @onTokenMove --> <!-- can...)
 
No edit summary
 
(3 intermediate revisions by 2 users not shown)
Line 7: Line 7:


==usage==
==usage==
<source lang="mtmacro" line>
<syntaxhighlight lang="mtmacro" line>
<!-- @onTokenMove -->
<!-- @onTokenMove -->
<!-- cance movement if condition -->
<!-- cance movement if condition -->
[h, if(condition): tokens.denyMove = 1]
[h, if(condition): tokens.denyMove = 1]
</source>
</syntaxhighlight>




[[Category:Special Variable]]
[[Category:Special Variable]]
[[Category:Macro Function]]

Latest revision as of 20:08, 4 July 2023

tokens.denyMove


You can use this variable in the onTokenMove event to cancel the movement made.


usage

<!-- @onTokenMove -->
<!-- cance movement if condition -->
[h, if(condition): tokens.denyMove = 1]