isPC: Difference between revisions

From RPTools Wiki
Jump to navigation Jump to search
m (Added version.)
m (Updated with recent version changes.)
Line 3: Line 3:
|version=1.3b48
|version=1.3b48
|description=
|description=
Returns 1 if the [[Token:Current Token|Current Token]] is a PC or 0 if it not.
Returns {{true}} if a [[Token]] is a PC or {{false}} if it is not.


|usage=
|usage=
Line 9: Line 9:
isPC()
isPC()
</source>
</source>
<source lang="mtmacro" line>
isPC(id)
</source>
'''Parameter'''
{{param|id|The token {{code|id}} of the token which has its PC status checked, defaults to the [[Current Token]]. {{TrustedParameter}} }}


|example=
|example=
Line 14: Line 19:
[r, if(isPC()): "Hello I am a PC"]
[r, if(isPC()): "Hello I am a PC"]
</source>
</source>
|also=
[[setPC|setPC()]],
[[isNPC|isNPC()]],
[[setNPC|setNPC()]]
|changes=
{{change|1.3b51|Added {{code|id}} parameter option.}}
}}
}}
[[Category:Token Function]]
[[Category:Token Function]]

Revision as of 02:33, 31 March 2009

isPC() Function

Introduced in version 1.3b48
Returns true(1) if a Token is a PC or false(0) if it is not.

Usage

isPC()
isPC(id)

Parameter

  • id - The token id of the token which has its PC status checked, defaults to the Current Token.

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

Example

[r, if(isPC()): "Hello I am a PC"]

See Also

Version Changes

  • 1.3b51 - Added id parameter option.