Skip to content

profileCharacter

Ben edited this page Aug 16, 2022 · 1 revision

This area holds information about your character's current status

Structure

  • v: Version, increments up by one every time changes are saved
  • CO: Out-of-character information section visible on the TRP3 tooltip in-game
  • CU: In-character "Currently" section, also visible on the tooltip in-game
  • RP: In-character status
    • 0: Out-of-character
    • 1: In-character
  • LC: Locale, or language setting
    • See Locale (put link here)
  • XP: Role-play experience level
    • 1: Rookie
    • 2: Experienced
    • 3: Volunteer

Accessing Character

path: "player/character"

local character = TRP3_API.profile.getData("player/character")
-- from structure above, you can access any of the attributes as follows
local currently = character.CU
local experience = character.XP

Clone this wiki locally