Skip to main content
1

Install (or update) dependencies

Verify all dependencies below are started before this script in your server.cfg.
2

Add items to your inventory

Open the install folder and add the items & their images to your inventory.
You do not need to import the .sql file manually; it will be imported automatically.
  • Copy items from /install/items/ox_inventory.txt into ox_inventory/data/items.lua
  • Copy images from /install/images into ox_inventory/web/images
['ls_coke_table'] = {
    label = 'Coke Table',
    weight = 1000,
},

['ls_coca_seed'] = {
    label = 'Coca Seed',
    weight = 5,
},

['ls_coca_leaf'] = {
    label = 'Coca Leaf',
    weight = 5,
},

['ls_coca_ground'] = {
    label = 'Ground Coca',
    weight = 20,
},

['ls_coca_base_unf'] = {
    label = 'Coca Base (unfinished)',
    weight = 40,
},

['ls_coca_base'] = {
    label = 'Coca Base',
    weight = 50,
},

['ls_cocaine_brick'] = {
    label = 'Cocaine Brick',
    weight = 100,
},

['ls_crack_brick'] = {
    label = 'Crack Brick',
    weight = 100,
},

['ls_baking_soda'] = {
    label = 'Baking Soda',
    weight = 25,
},

['ls_gasoline'] = {
    label = 'Gasoline',
    weight = 1000,
    stack = false,
},

['ls_shears'] = {
    label = 'Shears',
    weight = 10,
},

['ls_watering_can'] = {
    label = 'Watering Can',
    weight = 3250,
    stack = false,
},

['ls_fertilizer'] = {
    label = 'Fertilizer',
    weight = 1750,
    stack = false,
},

['ls_plant_pot'] = {
    label = 'Plant Pot',
    weight = 25,
},

['ls_cement'] = {
    label = 'Cement',
    weight = 2000,
    stack = false,
},

['ls_empty_baggy'] = {
    label = 'Empty Baggy',
    weight = 5,
},

['ls_cocaine_bag'] = {
    label = 'Cocaine',
    weight = 10,
},

['ls_crack_bag'] = {
    label = 'Crack',
    weight = 10,
},
3

Create a new subfolder

This is an optional step, but is highly recommended.
If you haven’t already, create a new subfolder named [lation] in your server’s root resources directory. Unzip (extract) this script into the newly created [lation] subfolder.
4

Update server.cfg & perform a full restart

Once all other steps are completed, open your server.cfg & add ensure [lation] to the very bottom of your resource start list. Finally, perform a full server restart. Failure to perform a full restart after installation will cause errors.
Upon completion, do not delete the install folder or any .sql files or you will experience errors.