addToInitiative: Difference between revisions

From RPTools Wiki
Jump to navigation Jump to search
No edit summary
No edit summary
 
(9 intermediate revisions by 4 users not shown)
Line 1: Line 1:
{{stub}}
{{Languages|addToInitiative}}{{stub}}
{{MacroFunction
{{MacroFunction
|name=addToInitiative
|name=addToInitiative
|description=Adds the [[Current Token]] to the [[Initiative:initiative panel|initiative panel]].  
|description=Adds the [[Current Token]] to the [[Introduction to Initiative|initiative panel]]. Additional parameters allow you to specify the token and an initiative value.
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.


|usage=
|usage=
<source lang="mtmacro" line>
<syntaxhighlight lang="mtmacro" line>
addToInitiative()
addToInitiative()
addToInitiative(AllowDuplicates)
addToInitiative(AllowDuplicates)
addToInitiative(AllowDuplicates, value)
addToInitiative(AllowDuplicates, value)
addToInitiative(AllowDuplicates, value, id)
addToInitiative(AllowDuplicates, value, tokenRef)
addToInitiative(AllowDuplicates, value, id, mapname)
addToInitiative(AllowDuplicates, value, tokenRef, mapname)
</source>
</syntaxhighlight>


'''Parameters'''
'''Parameters'''
{{param|AllowDuplicates|If false (default) then will not add the token if it is already in the initiative list.  If true (1) an additional entry will be added to the initiative list (so there could be multiple initiative entries for the same token).}}
{{param|AllowDuplicates|If false (default) then will not add the token if it is already in the initiative list.  If true (1) an additional entry will be added to the initiative list (so there could be multiple initiative entries for the same token).}}
{{param|value|The initiative value to set.  If included, the initiative will be set even if the token is already on the initiative list and duplicates are not allowed.}}
{{param|value|The initiative value to set.  If included, the initiative will be set even if the token is already on the initiative list and duplicates are not allowed.}}
{{param|id|The token {{code|id}} of the token to add to the initiative.  Defaults to the [[Current Token]]. {{TrustedParameter}} }}
{{param|tokenRef|Either the token [[getSelected|{{code|id}}]] or [[getTokenName|Token Name]] of the token to add to the initiative.  Defaults to the [[Current Token]]. {{TrustedParameter}} }}
{{param|mapname|The name of the map to find the token.  Defaults to the current map.}}
{{param|mapname|The name of the map to find the token.  Defaults to the current map.}}
* {{code|return}} - Returns 1 if added to the initiative, 0 if did not.
* {{code|return}} - Returns 1 if added to the initiative, 0 if did not.
{{Note|Token IDs are unique, but Token Names can be duplicated. Using Token Name when more than one token has the same name can produce unexpected results.}}


|example=
|example=
The following example shows how to add a [[Current Token]] to the [[Initiative:initiative panel|initiative panel]], set  
The following example shows how to add a [[Current Token]] to the [[Introduction to Initiative|initiative panel]], set its initiative and then sort the [[Introduction to Initiative|initiative panel]]. Normally you would not sort the [[Introduction to Initiative|initiative panel]] every time you add a [[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>
<syntaxhighlight lang="mtmacro" line>
[h: addToInitiative()]
[h: addToInitiative()]
[h: setInitiative(1d20)]
[h: setInitiative(1d20)]
[h: sortInitiative()]
[h: sortInitiative()]
</source>
</syntaxhighlight>


|also=
|also=
Line 40: Line 38:
}}
}}
[[Category:Initiative Function]]
[[Category:Initiative Function]]
{{Languages|addToInitiative}}

Latest revision as of 21:37, 11 May 2024

Languages:  English  • 日本語

 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. Additional parameters allow you to specify the token and an initiative value.

Usage

addToInitiative()
addToInitiative(AllowDuplicates)
addToInitiative(AllowDuplicates, value)
addToInitiative(AllowDuplicates, value, tokenRef)
addToInitiative(AllowDuplicates, value, tokenRef, mapname)

Parameters

  • AllowDuplicates - If false (default) then will not add the token if it is already in the initiative list. If true (1) an additional entry will be added to the initiative list (so there could be multiple initiative entries for the same token).
  • value - The initiative value to set. If included, the initiative will be set even if the token is already on the initiative list and duplicates are not allowed.
  • tokenRef - Either the token id or Token Name of the token to add to the initiative. Defaults to the Current Token.

     Note: This parameter can only be used in a Trusted Macro

  • mapname - The name of the map to find the token. Defaults to the current map.
  • return - Returns 1 if added to the initiative, 0 if did not.
Token IDs are unique, but Token Names can be duplicated. Using Token Name when more than one token has the same name can produce unexpected results.

Example

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

Version Changes

  • 1.5.7 - Added id and mapname parameter options.

Languages:  English  • 日本語