Server Exports

GetLevel

Returns the level of a certain skill.

local level = exports["jl_illegalphone"]:GetLevel(source, skill)

GetXP

Returns the xp of a certain skill.

local xp = exports["jl_illegalphone"]:GetXP(source, skill)

GetAllLevels

Returns a table that contains all skills with the levels.

local allLevels = exports["jl_illegalphone"]:GetAllLevels(source)

GetAllXP

Returns a table that conatins all skills with the XP.

local allXP = exports["jl_illegalphone"]:GetAllXP(source)

GetTotalXP

Returns the total amount of XP that a player has combined.

local totalXP = exports["jl_illegalphone"]:GetTotaltXP(source)

UpdateLevel

Updates a players level.

exports["jl_illegalphone"]:UpdateLevel(source, skill, newLevel)

UpdateXP

Updates a players XP

exports["jl_illegalphone"]:UpdateXP(source, skill, newLevel)

Last updated