ESX

ESX Framework Installation

Step 1

ox_inventory/data/items.lua

["strike_weed_brick"] = {
    label = "Weed Block",
    weight = 100,
    stack = true,
    close = true,
    description = "A tightly packed 1KG weed brick, perfect for high-stakes air drops to clandestine buyers.",
    client = {
        image = "strike_weed_brick.png",
    }
},

["strike_coke_brick"] = {
    label = "Coke Block",
    weight = 100,
    stack = true,
    close = true,
    description = "A heavy cocaine brick, stashed for daring plane deliveries to shadowy underworld contacts.",
    client = {
        image = "strike_coke_brick.png",
    }
},

["strike_coke_small_brick"] = {
    label = "Small Coke Block",
    weight = 50,
    stack = true,
    close = true,
    description = "A compact cocaine package, ideal for quick smuggling runs under enemy radar.",
    client = {
        image = "strike_coke_small_brick.png",
    }
},

["strike_meth_brick"] = {
    label = "Meth Brick",
    weight = 100,
    stack = true,
    close = true,
    description = "A dense meth brick, ready for high-altitude deals with dangerous clients in remote airstrips.",
    client = {
        image = "strike_meth_brick.png",
    }
},

Step 2

Drag all images from strike_airsmuggling/images to ox_inventory/web/images

Step 3

Configure the important settings below at strike_airsmuggling/config.lua

Step 4

Customize the remaining portions of the strike_airsmuggling/config.lua file as desired. We have provided an initial configuration for you.

Last updated