hasSight: Difference between revisions

From RPTools Wiki
Jump to navigation Jump to search
No edit summary
No edit summary
 
(One intermediate revision by the same user not shown)
Line 4: Line 4:
|version=1.3b48
|version=1.3b48
|description=
|description=
Returns 1 if the [[Current Token]] has [[Token:sight|sight]].
Returns 1 if the [[Current Token]] has [[Introduction to Tokens#Has Sight|sight]].


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


'''Parameters'''
'''Parameters'''
{{param|id|The {{code|id}} of the token to return the sight.  Defaults to the [[Current Token]]. {{TrustedParameter}} }}
{{param|tokenRef|Either the token [[getSelected|{{code|id}}]] or [[getTokenName|Token Name]] of the token to return the sight.  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.}}
{{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.}}


|changes=
|changes=

Latest revision as of 22:21, 16 May 2024

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

hasSight() Function

Introduced in version 1.3b48
Returns 1 if the Current Token has sight.

Usage

hasSight()
hasSight(tokenRef)
hasSight(tokenRef, mapname)

Parameters

  • tokenRef - Either the token id or Token Name of the token to return the sight. 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.
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.


Version Changes

  • 1.5.4 - Added id and mapname parameter options.