hasSight: Difference between revisions
Jump to navigation
Jump to search
m (Added MacroFunction template and Light Function category) |
No edit summary |
||
(10 intermediate revisions by 5 users not shown) | |||
Line 1: | Line 1: | ||
{{stub}} | |||
{{MacroFunction | {{MacroFunction | ||
|name=hasSight | |name=hasSight | ||
|version=1.3b48 | |||
|description= | |description= | ||
Returns 1 if the [[ | Returns 1 if the [[Current Token]] has [[Introduction to Tokens#Has Sight|sight]]. | ||
|usage= | |usage= | ||
< | <syntaxhighlight lang="mtmacro" line> | ||
hasSight() | |||
</ | hasSight(tokenRef) | ||
hasSight(tokenRef, mapRef) | |||
</syntaxhighlight> | |||
'''Parameters''' | |||
{{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|mapRef|The Name or ID 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= | |||
{{change|1.5.4|Added {{code|id}} and {{code|mapname}} parameter options.}} | |||
}} | }} | ||
[[Category: | [[Category:Sight Function]] |
Latest revision as of 23:59, 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, mapRef)
Parameters
tokenRef
- Either the tokenid
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.
mapRef
- The Name or ID 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
andmapname
parameter options.