πŸ› οΈconfig_storage.lua

-- β–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ•—β–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ•— β–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ•— β–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ•—  β–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ•—  β–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ•— β–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ•—
-- β–ˆβ–ˆβ•”β•β•β•β•β•β•šβ•β•β–ˆβ–ˆβ•”β•β•β•β–ˆβ–ˆβ•”β•β•β•β–ˆβ–ˆβ•—β–ˆβ–ˆβ•”β•β•β–ˆβ–ˆβ•—β–ˆβ–ˆβ•”β•β•β–ˆβ–ˆβ•—β–ˆβ–ˆβ•”β•β•β•β•β• β–ˆβ–ˆβ•”β•β•β•β•β•
-- β–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ•—   β–ˆβ–ˆβ•‘   β–ˆβ–ˆβ•‘   β–ˆβ–ˆβ•‘β–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ•”β•β–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ•‘β–ˆβ–ˆβ•‘  β–ˆβ–ˆβ–ˆβ•—β–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ•—  
-- β•šβ•β•β•β•β–ˆβ–ˆβ•‘   β–ˆβ–ˆβ•‘   β–ˆβ–ˆβ•‘   β–ˆβ–ˆβ•‘β–ˆβ–ˆβ•”β•β•β–ˆβ–ˆβ•—β–ˆβ–ˆβ•”β•β•β–ˆβ–ˆβ•‘β–ˆβ–ˆβ•‘   β–ˆβ–ˆβ•‘β–ˆβ–ˆβ•”β•β•β•  
-- β–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ•‘   β–ˆβ–ˆβ•‘   β•šβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ•”β•β–ˆβ–ˆβ•‘  β–ˆβ–ˆβ•‘β–ˆβ–ˆβ•‘  β–ˆβ–ˆβ•‘β•šβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ•”β•β–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ•—
-- β•šβ•β•β•β•β•β•β•   β•šβ•β•    β•šβ•β•β•β•β•β• β•šβ•β•  β•šβ•β•β•šβ•β•  β•šβ•β• β•šβ•β•β•β•β•β• β•šβ•β•β•β•β•β•β•

Config.GangStorage = {
    purchaseable = true, -- Do you want to allow players to purchase gang storage from Franklin?
    placeTime = 1000, -- How long does it take to place the storage?
    moveGangStorage = 1000, -- How long does it take to move the storage?
    crackCode = {
        enabled = true, -- Do you want to enable the crack code feature?
        requiredItem = "laptop", -- The item name of the item that is required to crack the code
        requiredItemAmount = 1, -- The amount of the required item that is needed to crack the code
        crackCode = function() -- A client side function for cracking the code
            return true
        end,
    },
    models = {
        ['prop_cs_cardbox_01'] = {
            label = "Cardboard Box",
            item = "gangstorage",
            passcode = false,
            size = 5,
            weight = 1000,
            useItem = {
                enabled = true,
                item = "weapon_pistol",
                itemLabel = "Pistol",
                itemAmount = 1,
            },
            usePrice = {
                enabled = false,
                price = 1000,
                useDirtyCash = false,
            },
        },
        ['prop_ld_int_safe_01'] = {
            label = "Safe",
            item = "gangstorage2",
            passcode = true,
            size = 20,
            weight = 10000,
            useItem = {
                enabled = true,
                item = "weapon_pistol",
                itemLabel = "Pistol",
                itemAmount = 1,
            },
            usePrice = {
                enabled = false,
                price = 1000,
                useDirtyCash = false,
            },
        },
        ['p_v_43_safe_s'] = {
            label = "Safe 2",
            item = "gangstorage3",
            passcode = true,
            size = 20,
            weight = 10000,
            useItem = {
                enabled = true,
                item = "weapon_pistol",
                itemLabel = "Pistol",
                itemAmount = 1,
            },
            usePrice = {
                enabled = false,
                price = 1000,
                useDirtyCash = false,
            },
        },
        ['prop_tool_box_01'] = {
            label = "Tool Box",
            item = "gangstorage4",
            passcode = false,
            size = 20,
            weight = 10000,
            useItem = {
                enabled = true,
                item = "weapon_pistol",
                itemLabel = "Pistol",
                itemAmount = 1,
            },
            usePrice = {
                enabled = false,
                price = 1000,
                useDirtyCash = false,
            },
        },
        ['prop_devin_box_closed'] = {
            label = "Devin Box Closed",
            item = "gangstorage5",
            passcode = true,
            size = 20,
            weight = 10000,
            useItem = {
                enabled = true,
                item = "weapon_pistol",
                itemLabel = "Pistol",
                itemAmount = 1,
            },
            usePrice = {
                enabled = false,
                price = 1000,
                useDirtyCash = false,
            },
        },
        ['prop_devin_box_01'] = {
            label = "Devin Box Open",
            item = "gangstorage6",
            passcode = false,
            size = 20,
            weight = 10000,
            useItem = {
                enabled = true,
                item = "weapon_pistol",
                itemLabel = "Pistol",
                itemAmount = 1,
            },
            usePrice = {
                enabled = false,
                price = 1000,
                useDirtyCash = false,
            },
        },
        ['prop_box_wood05a'] = {
            label = "Wooden Box",
            item = "gangstorage7",
            passcode = false,
            size = 20,
            weight = 10000,
            useItem = {
                enabled = true,
                item = "weapon_pistol",
                itemLabel = "Pistol",
                itemAmount = 1,
            },
            usePrice = {
                enabled = false,
                price = 1000,
                useDirtyCash = false,
            },
        },
    }
}

Last updated