getInitiativeHold: Difference between revisions

From RPTools Wiki
Jump to navigation Jump to search
No edit summary
No edit summary
 
(3 intermediate revisions by the same user not shown)
Line 3: Line 3:
|name=getInitiativeHold
|name=getInitiativeHold
|version=1.3b41
|version=1.3b41
|description=Returns if the [[Token|token]] is on [[Initiative:hold{{!}}hold]] in the [[introduction to Initiative{{!}}initiative panel]] or not. This function will return 1 if the [[Token:token{{!}}token]] is on [[Initiative:hold{{!}}hold]] or 0 if it is not.
|description=Returns if the [[Token|token]] is on [[Introduction to Initiative#Hold|hold]] in the [[Introduction to Initiative{{!}}initiative panel]] or not. This function will return 1 if the [[Token:token{{!}}token]] is on [[Introduction to Initiative#Hold|hold]] or 0 if it is not.


|usage=
|usage=
<syntaxhighlight lang="mtmacro" line>
<syntaxhighlight lang="mtmacro" line>
getInitiativeHold()
getInitiativeHold()
getInitiativeHold(id)
getInitiativeHold(tokenRef)
getInitiativeHold(id, mapname)
getInitiativeHold(tokenRef, mapname)
</syntaxhighlight>
</syntaxhighlight>


'''Parameter'''
'''Parameter'''
{{param|id|The token {{code|id}} of the token to get the initiative hold value from. Defaults to the [[Current Token]]. {{TrustedParameter}} }}
{{param|tokenRef|Either the token [[getSelected|{{code|id}}]] or [[getTokenName|Token Name]] of the token to get the initiative hold value from. Defaults to the [[Current Token]]. {{TrustedParameter}} }}
{{param|mapname|The name of the map to find the token if the id parameter is used. Defaults to the current map.}}
{{param|mapname|The name of the map to find the token if the id parameter is used. Defaults to the current map.}}
{{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.}}


|examples=
|examples=

Latest revision as of 03:03, 13 May 2024

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

getInitiativeHold() Function

Introduced in version 1.3b41
Returns if the token is on hold in the initiative panel or not. This function will return 1 if the token is on hold or 0 if it is not.

Usage

getInitiativeHold()
getInitiativeHold(tokenRef)
getInitiativeHold(tokenRef, mapname)

Parameter

  • tokenRef - Either the token id or Token Name of the token to get the initiative hold value from. 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 if the id parameter is used. Defaults to the current map.
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.

Examples

[r: if(getInitiativeHold(), "You are on hold", "You are not on hold")]