player.getInfo: Difference between revisions

From RPTools Wiki
Jump to navigation Jump to search
(Created.)
 
m (Conversion script moved page Player.getInfo to player.getInfo: Converting page titles to lowercase)
 
(One intermediate revision by the same user not shown)
(No difference)

Latest revision as of 23:45, 9 February 2023

 Note: This refers to a proposed change that has not been implemented in the main code base yet.

player.getInfo() Function

Introduced in version 1.10.0
Last checked for compatibility with version 1.10.0
Returns information about the current or specified player as a JSON object.

Usage

player.getInfo() - Info on current player.
player.getInfo(PlayerName) - Info on the specified player. Can only be used in Trusted macros.

Parameters

  • PlayerName - String containing the name of a player in the databse.

Example

Outputs current player info. From GM client in this case.
Info: [r: player.getInfo()]

Returns:

Info: {"name":"GM","role":"GM","connected":true}

Outputs info for player George who is not connected.

Info: [r: player.getInfo("George")]

Returns:

Info: {"name":"George","role":"PLAYER","connected":false}

See Also

Version Changes

  • 1.10.0 - First added.