init.current

From RPTools Wiki
Revision as of 23:37, 9 February 2023 by Conversion script (talk | contribs) (Conversion script moved page Init.current to init.current: Converting page titles to lowercase)
Jump to navigation Jump to search

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.
}]

Related Pages

Initiative Functions