πŸ› οΈ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

Last updated