setSightType: Difference between revisions

From RPTools Wiki
Jump to navigation Jump to search
No edit summary
 
(9 intermediate revisions by 5 users not shown)
Line 2: Line 2:
{{MacroFunction
{{MacroFunction
|name=setSightType
|name=setSightType
|version=1.3b48
|description=
|description=
Sets the type of [[Token:sight|sight]] that the [[Token:Current Token|Current Token]] has.
Sets the type of [[Introduction to Tokens#Has Sight|sight]] that the [[Current Token]] has.


|usage=
|usage=
<source lang="mtmacro" line>
<syntaxhighlight lang="mtmacro" line>
[h: setSightType(type)]
setSightType(type)
</source>
setSightType(type, id)
setSightType(type, id, mapname)
</syntaxhighlight>
 
'''Parameters'''
{{param|type|The type of sight to set.}}
{{param|id|The {{code|id}} of the token to set the [[Introduction to Lights and Sights#Sight Types|sight]].  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.4|Added {{code|id}} and {{code|mapname}} parameter options.}}
 
}}
}}
[[Category:Sight Function]]
[[Category:Sight Function]]
[[Category:Token Function]]

Latest revision as of 16:36, 27 April 2023

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

setSightType() Function

Introduced in version 1.3b48
Sets the type of sight that the Current Token has.

Usage

setSightType(type)
setSightType(type, id)
setSightType(type, id, mapname)

Parameters

  • type - The type of sight to set.
  • id - The id of the token to set 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.


Version Changes

  • 1.5.4 - Added id and mapname parameter options.