init.round: Difference between revisions
Jump to navigation
Jump to search
No edit summary |
No edit summary |
||
(One intermediate revision by the same user not shown) | |||
Line 20: | Line 20: | ||
[[Category:Special Variable]] | [[Category:Special Variable]] | ||
Pages with ignored display titles |
Latest revision as of 23:59, 4 July 2023
The special variable init.round holds the current Initiative round beginning at 1
. init.round 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.
}]
Related Pages
Initiative Functions Pages with ignored display titles