XP
Handles player XP tracking, leveling, and data persistence for skills, reputation, and other growth systems.
Accessing the Module
Server
get_all_xp(source)
Retrieves all XP data for a player.
Parameters
source
number
Player source ID
Returns
table
Table of XP entries
Example
get_xp(source, xp_id)
Gets a specific XP entry for a player.
Parameters
source
number
Player source ID
xp_id
string
The XP ID
Returns
table
XP data for the ID
Example
set_xp(source, xp_id, amount)
Sets a player's XP to a fixed value.
Parameters
source
number
Player source ID
xp_id
string
The XP ID
amount
number
Amount of XP to assign
Example
add_xp(source, xp_id, amount)
Adds XP to a player's skill and handles level-ups.
Parameters
source
number
Player source ID
xp_id
string
The XP ID
amount
number
Amount of XP to add
Example
remove_xp(source, xp_id, amount)
Removes XP from a player's skill and handles level-downs.
Parameters
source
number
Player source ID
xp_id
string
The XP ID
amount
number
Amount of XP to subtract
Example
Client
get_all_xp()
Requests all XP data for the local player.
Returns
table
XP data for player
Example
Last updated