Empowerment Regimen
Instructions on how to download and install the basics of Skills System
Installation #
First of all, you must enter the config.lua file and select the infrastructure of your server.
Config.Framework = "esx" -- qb or qbcore or qbox or esx
Then you need to enter the name of the target you use on your server into config.lua.
Config.targetScript = "ox_target" -- qb-target or ox_target
The product is completely independent, you need to choose your infrastructure as it only has a 2x Boost item.
For the 2x feature, you need to add the "gymprotein" item to your server.
First of all, if your server is qb infrastructure, you go to \qbcore\shared\items.lua and add the "gymprotein" item to your server.
gymprotein = { name = 'gymprotein', label = 'Gym Whey', weight = 200, type = 'item', image = 'gymprotein.png', unique = false, useable = true, shouldClose = true, combinable = nil, description = 'It provides 2x the effect of the exercises you do' },After adding it, don't forget to add the gymprotein.png image insde the cb-skills folder to the qb-inventory>html>images folder.
After adding it, don't forget to add the gymprotein.png image inside the cb-skills folder to the qb-inventory>html>images folder.
If you want to change the item photo, just change its size to 96x96 and name it "gymprotein.png".

If you are using "esx", you need to do this for esx. So, you need to enter your SQL Database and add this item there.
After doing all this, you can customize the script. For example, you can set how much the speed of the user's car will increase when the "DRIVING" Feature levels up in the "speedMultiplier = 90.0" section. The 90 there shows how much the speed will increase with each level increased. Recommended ''10''
["DRIVING"] = {
gainXP = 10,
changeLevelXP = 100,
timeout = 4000, -- milliseconds
carSpeed = 100, -- If player driving in this speed or higher will increase xp
speedMultiplier = 90.0 -- if you increase vehicle speed will increase
},
After doing all these, you can use the product easily. If you want to see what level your skills are without going to the gym, you can use the /skills command. If your skills are not loaded, you can use the /loadSkills command. You can turn the script's notifications on and off with /gymnotify
Last updated