getPlayerName: Difference between revisions

From RPTools Wiki
Jump to navigation Jump to search
No edit summary
 
(7 intermediate revisions by 4 users not shown)
Line 1: Line 1:
{{MacroFunction
{{MacroFunction
|name=getPlayerName
|name=getPlayerName
|description=Returns the name of the player for the [[Client]] that it executes on.
|version=1.3b48
|description=Returns the name of the player for the [[Introduction to Game Hosting#Architecture|Client]] that it executes on.


|usage=
|usage=
<source lang="mtmacro" line>
<syntaxhighlight lang="mtmacro" line>
[h: name = getPlayerName()]
getPlayerName()
</source>
</syntaxhighlight>


|example=
|example=
To display the ids of all of the [[NPC Token|NPC token]]s on the current [[Map|map]] use.
<syntaxhighlight lang="mtmacro" line>
<source lang="mtmacro" line>
/say My name is [r: getPlayerName()], nice to meet you!
/say My name is [r: getPlayerName()] nice to meet you!
</syntaxhighlight>
</source>
}}
}}
[[Category:Miscellaneous Function]]
[[Category:Miscellaneous Function]]

Latest revision as of 16:36, 24 April 2023

getPlayerName() Function

Introduced in version 1.3b48
Returns the name of the player for the Client that it executes on.

Usage

getPlayerName()

Example

/say My name is [r: getPlayerName()], nice to meet you!