getPlayerName: Difference between revisions

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


|usage=
<syntaxhighlight lang="mtmacro" line>
getPlayerName()
</syntaxhighlight>


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

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!