Stash

{
    name = 'Demo Stash', -- unique name
    jobs = {
        police = 1, --job name and minimum rank
        sheriff = 1, --job name and minimum rank
    },

    --job check to open the bench
    jobs = {
        police = 0, --job name and minumum rank
        sheriff = 0
    },

    --gang check to open the shop
    gangs = {
        balles = 1, --gang name and minumum rank
        lostmc = 0,
    },

    private = true, -- is this a private stash
    maxWeight = 50000,
    slots = 50,
    
    --either use whitelist or blacklist. don't use both
    whitelist = {'water', 'bread'},
    blacklist = {'water', 'bread'},

    zones = {
        {
            coords = vector4(445.09, -975.05, 30.67, 0.0),
            size = vector3(2.5, 1.0, 1.5),
        },
    },
    target = {label = 'Demo Stash', icon = 'fa-vault', distance = 2.5},
    peds = { -- if empty then there will be no ped. Only polyzone with target
        'mp_m_waremech_01',
    },
    scenario = 'WORLD_HUMAN_COP_IDLES' -- if nil then ped will not play any scenario
},

Last updated