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_plain_jane_seed'] = {
    label = 'Plain Jane Seed',
    weight = 5,
},

['ls_plain_jane_bud'] = {
    label = 'Plain Jane Bud',
    weight = 5,
},

['ls_plain_jane_bag'] = {
    label = 'Plain Jane Bag',
    weight = 10,
},

['ls_plain_jane_joint'] = {
    label = 'Plain Jane Joint',
    weight = 10,
},

['ls_banana_kush_seed'] = {
    label = 'Banana Kush Seed',
    weight = 5,
},

['ls_banana_kush_bud'] = {
    label = 'Banana Kush Bud',
    weight = 5,
},

['ls_banana_kush_bag'] = {
    label = 'Banana Kush Bag',
    weight = 10,
},

['ls_banana_kush_joint'] = {
    label = 'Banana Kush Joint',
    weight = 10,
},

['ls_blue_dream_seed'] = {
    label = 'Blue Dream Seed',
    weight = 5,
},

['ls_blue_dream_bud'] = {
    label = 'Blue Dream Bud',
    weight = 5,
},

['ls_blue_dream_bag'] = {
    label = 'Blue Dream Bag',
    weight = 10,
},

['ls_blue_dream_joint'] = {
    label = 'Blue Dream Joint',
    weight = 10,
},

['ls_purple_haze_seed'] = {
    label = 'Purple Haze Seed',
    weight = 5,
},

['ls_purple_haze_bud'] = {
    label = 'Purple Haze Bud',
    weight = 5,
},

['ls_purple_haze_bag'] = {
    label = 'Purple Haze Bag',
    weight = 10,
},

['ls_purple_haze_joint'] = {
    label = 'Purple Haze Joint',
    weight = 10,
},

['ls_orange_crush_seed'] = {
    label = 'Orange Crush Seed',
    weight = 5,
},

['ls_orange_crush_bud'] = {
    label = 'Orange Crush Bud',
    weight = 5,
},

['ls_orange_crush_bag'] = {
    label = 'Orange Crush Bag',
    weight = 10,
},

['ls_orange_crush_joint'] = {
    label = 'Orange Crush Joint',
    weight = 10,
},

['ls_cosmic_kush_seed'] = {
    label = 'Cosmic Kush Seed',
    weight = 5,
},

['ls_cosmic_kush_bud'] = {
    label = 'Cosmic Kush Bud',
    weight = 5,
},

['ls_cosmic_kush_bag'] = {
    label = 'Cosmic Kush Bag',
    weight = 10,
},

['ls_cosmic_kush_joint'] = {
    label = 'Cosmic Kush Joint',
    weight = 10,
},

['ls_rolling_paper'] = {
    label = 'Rolling Paper',
    weight = 5,
},

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

['ls_access_card'] = {
    label = 'Access Card',
    weight = 15,
},

['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_shovel'] = {
    label = 'Shovel',
    weight = 75,
},

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

['ls_weed_table'] = {
	label = 'Weed Table',
	weight = 1000,
	stack = false
},
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.