addToInitiative: Difference between revisions

From RPTools Wiki
Jump to navigation Jump to search
mNo edit summary
m (Unifying Current Token red link.)
Line 2: Line 2:
{{MacroFunction
{{MacroFunction
|name=addToInitiative
|name=addToInitiative
|description=Adds the [[Token:Current Token|Current Token]] to the [[Initiative:initiative panel|initiative panel]].  
|description=Adds the [[Current Token]] to the [[Initiative:initiative panel|initiative panel]].  
This function will not assign any initiative value to the [[Token:token|token]]s, you can use the [[setInitiative | setInitiative()]] function
This function will not assign any initiative value to the [[Token:token|token]]s, you can use the [[setInitiative | setInitiative()]] function
to set the initiative value of tokens.
to set the initiative value of tokens.
Line 11: Line 11:
</source>
</source>


The following example shows how to add a [[Token:Current Token|Current Token]] to the [[Initiative:initiative panel|initiative panel]], set  
The following example shows how to add a [[Current Token]] to the [[Initiative:initiative panel|initiative panel]], set  
its initiative and then sort the [[Initiative:initiative panel|initiative panel]]. Normally you would not sort the [[Initiative:initiative panel|initiative panel]] every time you add a [[Token:Current Token|Current Token]] but its done here to show you how it is done.
its initiative and then sort the [[Initiative:initiative panel|initiative panel]]. Normally you would not sort the [[Initiative:initiative panel|initiative panel]] every time you add a [[Current Token]] but its done here to show you how it is done.


<source lang="mtmacro" line>
<source lang="mtmacro" line>

Revision as of 21:15, 4 April 2009

 This article is a stub, you can help the RPTools Wiki project by contributing content to expand this article.

addToInitiative() Function

Adds the Current Token to the initiative panel.

This function will not assign any initiative value to the tokens, you can use the setInitiative() function

to set the initiative value of tokens.

Usage

[h: addToInitiative()]

The following example shows how to add a Current Token to the initiative panel, set its initiative and then sort the initiative panel. Normally you would not sort the initiative panel every time you add a Current Token but its done here to show you how it is done.

[h: addToInitiative()]
[h: setInitiative(1d20)]
[h: sortInitiative()]


See Also