getPlayerName: Difference between revisions

From RPTools Wiki
Jump to navigation Jump to search
m (Punctuation)
No edit summary
 
(4 intermediate revisions by 2 users not shown)
Line 2: Line 2:
|name=getPlayerName
|name=getPlayerName
|version=1.3b48
|version=1.3b48
|description=Returns the name of the player for the [[Client]] that it executes on.
|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>
getPlayerName()
getPlayerName()
</source>
</syntaxhighlight>


|example=
|example=
<source lang="mtmacro" line>
<syntaxhighlight lang="mtmacro" line>
/say My name is [r: getPlayerName()], nice to meet you!
/say My name is [r: getPlayerName()], nice to meet you!
</source>
</syntaxhighlight>
}}
}}
[[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!