A standalone skill system that provides a flexible approach to managing skills independently of any external framework. System is persistent, easy to use and relatively in-depth.
For QBCore any metadata with id's matching any of the skill ids will be converted to utils skills data when a player joins the server to ensure players do not lose any existing metadata.
Client Functions
get_skills
Retrieve a list of all reputations the player has.
Function
localfunctionget_skills() utils.callback.cb('boii_utils:sv:get_skills', {}, function(skills_data)if skills_datathenprint('Skills data fetched: '.. json.encode(skills_data))return skills_dataelseprint('Failed to fetch reputation data.')returnnilendend)endexports('get_skills', get_skills)utils.skills.get_skills = get_skills