setInitiativeHold: Difference between revisions

From RPTools Wiki
Jump to navigation Jump to search
(New page: ==Function setInitiativeHold== Sets if the Token:Current Token is Initiative:on hold in the Initiative:Initiative Panel. If the value passed is non zero then the [[Token:Cur...)
 
No edit summary
 
(10 intermediate revisions by 5 users not shown)
Line 1: Line 1:
==Function setInitiativeHold==
{{stub}}
Sets if the [[Token:Current Token|Current Token]] is [[Initiative:on hold|on hold]] in the [[Initiative:Initiative Panel|Initiative Panel]]. If the value passed is non zero then the [[Token:Current Token|Current Token]] is placed [[Initiative:on hold|on hold]], if it is 0 it is removed from [[Initiative:on hold|on hold]].
{{MacroFunction
|name=setInitiativeHold
|version=1.3b41
|description=
Sets if the [[Current Token]] is [[Introduction to Initiative#Hold|on hold]] in the [[Initiative:Initiative Panel|Initiative Panel]]. If the value passed is non zero then the [[Current Token]] is placed [[Introduction to Initiative#Hold|on hold]], if it is 0 it is removed from [[Introduction to Initiative#Hold|on hold]].


===Usage===
|usage=
<source lang="mtmacro" line>
<syntaxhighlight lang="mtmacro" line>
[h: setInitiativeOnHold(value)]
setInitiativeHold(value)
</source>
setInitiativeHold(value, id)
setInitiativeHold(value, id, mapname)
</syntaxhighlight>
 
'''Parameters'''
{{param|value|The initiative hold value to set.}}
{{param|id|The token {{code|id}} of the token to set the initiative hold.  Defaults to the [[Current Token]]. {{TrustedParameter}} }}
{{param|mapname|The name of the map to find the token.  Defaults to the current map.}}
 
|changes=
{{change|1.5.7|Added {{code|id}} and {{code|mapname}} parameter options.}}
 
 
}}
[[Category:Initiative Function]]

Latest revision as of 21:01, 14 March 2023

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

setInitiativeHold() Function

Introduced in version 1.3b41
Sets if the Current Token is on hold in the Initiative Panel. If the value passed is non zero then the Current Token is placed on hold, if it is 0 it is removed from on hold.

Usage

setInitiativeHold(value)
setInitiativeHold(value, id)
setInitiativeHold(value, id, mapname)

Parameters

  • value - The initiative hold value to set.
  • id - The token id of the token to set the initiative hold. 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.


Version Changes

  • 1.5.7 - Added id and mapname parameter options.