đ ī¸Installation
qb-core/shared/items.lua
["shovel"] = {["name"] = "shovel", ["label"] = "Shovel", ["weight"] = 50, ["type"] = "item", ["image"] = "shovel.png", ["unique"] = false, ["useable"] = true, ["shouldClose"] = false, ["combinable"] = nil, ["description"] = ""},
["bucket"] = {["name"] = "bucket", ["label"] = "Bucket", ["weight"] = 50, ["type"] = "item", ["image"] = "bucket.png", ["unique"] = false, ["useable"] = true, ["shouldClose"] = false, ["combinable"] = nil, ["description"] = ""},
mz-skills/config.lua
Config.Skills = {
["Strength"] = {
["Current"] = 0,
["RemoveAmount"] = 0,
["Stat"] = "STRENGTH_ABILITY",
['icon'] = 'fas fa-trash',
},
["Lungs"] = {
["Current"] = 0,
["RemoveAmount"] = 0,
["Stat"] = "LUNGS_ABILITY",
['icon'] = 'fas fa-screwdriver',
},
["Stamina"] = {
["Current"] = 0,
["RemoveAmount"] = 0,
["Stat"] = "STAMINA_ABILITY",
['icon'] = 'fas fa-laptop-code',
},
}
ps-buffs/shared/config.lua
Config.Buffs = {
['stamina'] = {
iconColor = "#ffffff",
iconName = 'wind',
maxTime = 3600000,
progressColor = "#FFD700",
type = 'buff'
},
['strength'] = {
iconColor = "#ffffff",
iconName = 'dumbbell',
maxTime = 3600000,
progressColor = "#FFD700",
type = 'buff'
},
['lungs'] = {
iconColor = "#ffffff",
iconName = 'swimmer',
maxTime = 3600000,
progressColor = "#FFD700",
type = 'buff'
},
}
Last updated