1
0
Fork 0
forked from Simnation/Main
Main/resources/[freizeit]/[gym]/mz-skills/config.lua

41 lines
1.4 KiB
Lua
Raw Normal View History

2025-08-11 16:51:34 +02:00
Config = {}
-------------
--MZ-SKILLS--
-------------
Config.UpdateFrequency = 300 -- Seconds interval between removing values (no need to touch this)
Config.Notifications = true -- Notification played when skill is added (set to "false" to disable)
Config.NotifyType = 'qb' -- Notification type: 'qb' for QBCore notification, 'okok' for okokNotify
Config.Debug = false -- Set to "true" to print debugging messages
Config.TypeCommand = true -- Set to "false" to disable the "/skills" command (or whatever word you set in the next function)
Config.Skillmenu = "skills" -- phrase typed to display skills menu (check readme.md to set to commit to radial menu)
-------------
--RP SKILLS--
-------------
-- Please feel free to add/subtract the skills you are using in your city as you see fit.
-- Please avoid taking skills away after players have already started accumulating XP.
-- The following skills which appear in this default list are used by one or more mz- resources.
Config.Skills = {
["Stamina"] = {
["Current"] = 0,
["RemoveAmount"] = 0,
["Stat"] = "MP0_STAMINA",
['icon'] = 'fas fa-walking',
},
["Strength"] = {
["Current"] = 0,
["RemoveAmount"] = 0,
["Stat"] = "MP0_STRENGTH",
['icon'] = 'fas fa-dumbbell',
},
}