init.round

From RPTools Wiki
Revision as of 21:49, 13 December 2019 by Phergus (talk | contribs) (Created page with "The special variable ''init.round'' holds the current Initiative round beginning at {{code|1}}. '''init.round''' is set to {{code|-1}} if there are no tokens in the Initiative...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search

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