setVisible: Difference between revisions

From RPTools Wiki
Jump to navigation Jump to search
m (Added version, cleaned up formatting.)
Line 1: Line 1:
{{stub}}
{{MacroFunction
{{MacroFunction
|name=setVisible
|name=setVisible
|trusted=true
|trusted=true
|version=1.3b40
|description=
|description=
Sets the [[Token:visible to players|visible to players]] flag is set on the [[Token:Current Token|Current Token]] if the value passed in is non zero, otherwise resets it. The [[Token:visible to players|visible to players]] flag has two meanings, on a normal [[Token:Token|Token]] players will only be able to see the [[Token:Token|Token]] if it is set (when all other things like [[Map:Fog of War|Fog of War]] etc are taken into account). If it is a [[Token:LibToken|LibToken]] then it determines if players can call [[Macro:Macros|Macros]] using [[Macro:Roll:macro | [macro(...): ...] ]].
Sets the [[Token:visible to players|visible to players]] flag is set on the [[Token:Current Token|Current Token]] if the value passed in is non zero, otherwise resets it. The [[Token:visible to players|visible to players]] flag has two meanings, on a normal [[Token:Token|Token]] players will only be able to see the [[Token:Token|Token]] if it is set (when all other things like [[Map:Fog of War|Fog of War]] etc are taken into account). If it is a [[Token:LibToken|LibToken]] then it determines if players can call [[Macro:Macros|Macros]] using [[Macro:Roll:macro | [macro(...): ...] ]].
Line 7: Line 9:
|usage=
|usage=
<source lang="mtmacro" line>
<source lang="mtmacro" line>
[h: getVisible(vis)]
setVisible(visible)
</source>
</source>
'''Parameter'''
* {{code|visible}} - The state of visibility, {{code|true}}({{code|1}}) or {{code|false}}({{code|0}}).
}}
}}
[[Category:Token Function]]
[[Category:Token Function]]

Revision as of 09:42, 10 March 2009

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

setVisible() Function

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

Introduced in version 1.3b40
Sets the visible to players flag is set on the Current Token if the value passed in is non zero, otherwise resets it. The visible to players flag has two meanings, on a normal Token players will only be able to see the Token if it is set (when all other things like Fog of War etc are taken into account). If it is a LibToken then it determines if players can call Macros using [macro(...): ...] .

Usage

setVisible(visible)

Parameter

  • visible - The state of visibility, true(1) or false(0).