init.current: Difference between revisions
Jump to navigation
Jump to search
m (Conversion script moved page Init.current to init.current: Converting page titles to lowercase) |
No edit summary |
||
Line 3: | Line 3: | ||
==Example== | ==Example== | ||
'''Simple Count''' | '''Simple Count''' | ||
< | <syntaxhighlight lang="mtmacro" line> | ||
[if(init.current != -1), code: { | [if(init.current != -1), code: { | ||
[h: json = getInitiativeList()] | [h: json = getInitiativeList()] | ||
Line 13: | Line 13: | ||
No token with initiative. | No token with initiative. | ||
}] | }] | ||
</ | </syntaxhighlight> | ||
==Related Pages== | ==Related Pages== |
Revision as of 16:24, 15 March 2023
The special variable init.current holds the index of the token in the Initiative window that currently has initiative. Is set to -1
if there are no tokens in the Initiative window.
Example
Simple Count
[if(init.current != -1), code: {
[h: json = getInitiativeList()]
[h: tarray = json.get(json,"tokens")]
[h: tok = json.get(tarray,init.current)]
Token with Initiative: [r: getName(json.get(tok,"tokenId"))]<br>
Initiative Round: [r: init.round]
};{
No token with initiative.
}]