wasd
DiscordTebex
  • Welcome
  • Getting Started
    • What is Escrow
  • Other Things
    • Editing localization files
  • Resources
    • Mix-Weed
      • Installation
      • How To Do
        • Items
        • Config
      • Modules
        • Weed Type
        • Recipe Type
          • Recipe onUsed
    • ATM Robbery [Free]
      • Items
    • 24/7 Shop
    • Multiplayer Delivery Job
    • 🗞️Multiplayer Newspaper Job
    • Multiplayer Garbage Job
    • Multiplayer Tow Job
      • Exports / Events
    • Daily Rewards Script
Powered by GitBook
On this page
  1. Resources
  2. Mix-Weed
  3. How To Do

Items

You need to add the codes given here to the items section of your inventory/core script.

You can check the ui/items folder for images. If it is not you have to find the images yourself.

ox_inventory/data/items.lua
['rolling_paper'] = {label='Rolling Paper', weight = 1},

['sativa_leaf'] = {label='Sativa Leaf', weight = 1},
['sativa_pure'] = {label='Pure Sativa', weight = 1},
['sativa_rolled'] = {label='Rolled Sativa', weight = 1},	
['sativa_packed'] = {label='Packed Sativa', weight = 1},		

['hybrid_leaf'] = {label='Hybrid Leaf', weight = 1},
['hybrid_pure'] = {label='Pure Hybrid', weight = 1},
['hybrid_rolled'] = {label='Rolled Hybrid', weight = 1},
['hybrid_packed'] = {label='Packed Hybrid', weight = 1},	

['indica_leaf'] = {label='Indica Leaf', weight = 1},
['indica_pure'] = {label='Pure Indica', weight = 1},
['indica_rolled'] = {label='Rolled Indica', weight = 1},
['indica_packed'] = {label='Packed Indica', weight = 1},	

['drug_sprint'] = {label = 'Drug Sprint Dust', weight = 1},
['drug_staminaregen'] = {label = 'Drug Stamina Regen', weight = 1, client={image='drug.png'}},
['drug_staminaboost'] = {label = 'Drug Stamina Boost', weight = 1, client={image='drug.png'}},
['drug_armorboost'] = {label = 'Drug Armor Boost', weight = 1, client={image='drug.png'}},
['drug_healthregen'] = {label = 'Drug Health Regen', weight = 1, client={image='drug.png'}},
['drug_swimmingboost'] = {label='Drug Swimming Boost', weight= 1, client={image='drug.png'}},
['drug_poison'] = {label='Drug Poison', weight= 1, client={image='drug.png'}},
['drug_blur'] = {label='Drug Blur', weight= 1, client={image='drug.png'}},
['drug_dizzy'] = {label='Drug Dizzy', weight= 1, client={image='drug.png'}},
['drug_madness'] = {label='Drug Madness', weight= 1, client={image='drug.png'}},
['drug_blurredwater'] = {label='Water', weight= 500, client={image='water.png'}, description='Looks a little different ?'},

['alcohol'] = {label='Alcohol', weight = 250 },
['toxic_herb'] = {label='Toxic Herb', weight = 250 },
qb-core/shared/items.lua
rolling_paper = { name = 'rolling_paper', label = 'Rolling Paper', weight = 1, type = 'item', image = 'rolling_paper.png', unique = false, useable = false, shouldClose = true, description = 'Rolling Paper' },

sativa_leaf = { name = 'sativa_leaf', label = 'Sativa Leaf', weight = 1, type = 'item', image = 'sativa_leaf.png', unique = false, useable = false, shouldClose = true, description = 'Sativa Leaf' },
sativa_pure = { name = 'sativa_pure', label = 'Pure Sativa', weight = 1, type = 'item', image = 'sativa_pure.png', unique = false, useable = false, shouldClose = true, description = 'Pure Sativa' },
sativa_rolled = { name = 'sativa_rolled', label = 'Rolled Sativa', weight = 1, type = 'item', image = 'sativa_rolled.png', unique = false, useable = true, shouldClose = true, description = 'Rolled Sativa' },
sativa_packed = { name = 'sativa_packed', label = 'Packed Sativa', weight = 1, type = 'item', image = 'sativa_packed.png', unique = false, useable = false, shouldClose = true, description = 'Packed Sativa' },

hybrid_leaf = { name = 'hybrid_leaf', label = 'Hybrid Leaf', weight = 1, type = 'item', image = 'hybrid_leaf.png', unique = false, useable = false, shouldClose = true, description = 'Hybrid Leaf' },
hybrid_pure = { name = 'hybrid_pure', label = 'Pure Hybrid', weight = 1, type = 'item', image = 'hybrid_pure.png', unique = false, useable = false, shouldClose = true, description = 'Pure Hybrid' },
hybrid_rolled = { name = 'hybrid_rolled', label = 'Rolled Hybrid', weight = 1, type = 'item', image = 'hybrid_rolled.png', unique = false, useable = true, shouldClose = true, description = 'Rolled Hybrid' },
hybrid_packed = { name = 'hybrid_packed', label = 'Packed Hybrid', weight = 1, type = 'item', image = 'hybrid_packed.png', unique = false, useable = false, shouldClose = true, description = 'Packed Hybrid' },

indica_leaf = { name = 'indica_leaf', label = 'Indica Leaf', weight = 1, type = 'item', image = 'indica_leaf.png', unique = false, useable = false, shouldClose = true, description = 'Indica Leaf' },
indica_pure = { name = 'indica_pure', label = 'Pure Indica', weight = 1, type = 'item', image = 'indica_pure.png', unique = false, useable = false, shouldClose = true, description = 'Pure Indica' },
indica_rolled = { name = 'indica_rolled', label = 'Rolled Indica', weight = 1, type = 'item', image = 'indica_rolled.png', unique = false, useable = true, shouldClose = true, description = 'Rolled Indica' },
indica_packed = { name = 'indica_packed', label = 'Packed Indica', weight = 1, type = 'item', image = 'indica_packed.png', unique = false, useable = false, shouldClose = true, description = 'Packed Indica' },

drug_sprint = { name = 'drug_sprint', label = 'Drug Sprint Dust', weight = 1, type = 'item', image = 'drug.png', unique = false, useable = true, shouldClose = true, description = 'Drug Sprint Dust' },
drug_staminaregen = { name = 'drug_staminaregen', label = 'Drug Stamina Regen', weight = 1, type = 'item', image = 'drug.png', unique = false, useable = true, shouldClose = true, description = 'Drug Stamina Regen' },
drug_staminaboost = { name = 'drug_staminaboost', label = 'Drug Stamina Boost', weight = 1, type = 'item', image = 'drug.png', unique = false, useable = true, shouldClose = true, description = 'Drug Stamina Boost' },
drug_armorboost = { name = 'drug_armorboost', label = 'Drug Armor Boost', weight = 1, type = 'item', image = 'drug.png', unique = false, useable = true, shouldClose = true, description = 'Drug Armor Boost' },
drug_healthregen = { name = 'drug_healthregen', label = 'Drug Health Regen', weight = 1, type = 'item', image = 'drug.png', unique = false, useable = true, shouldClose = true, description = 'Drug Health Regen' },
drug_swimmingboost = { name = 'drug_swimmingboost', label = 'Drug Swimming Boost', weight = 1, type = 'item', image = 'drug.png', unique = false, useable = true, shouldClose = true, description = 'Drug Swimming Boost' },
drug_poison = { name = 'drug_poison', label = 'Drug Poison', weight = 1, type = 'item', image = 'drug.png', unique = false, useable = true, shouldClose = true, description = 'Drug Poison' },
drug_blur = { name = 'drug_blur', label = 'Drug Blur', weight = 1, type = 'item', image = 'drug.png', unique = false, useable = true, shouldClose = true, description = 'Drug Blur' },
drug_dizzy = { name = 'drug_dizzy', label = 'Drug Dizzy', weight = 1, type = 'item', image = 'drug.png', unique = false, useable = true, shouldClose = true, description = 'Drug Dizzy' },
drug_madness = { name = 'drug_madness', label = 'Drug Madness', weight = 1, type = 'item', image = 'drug.png', unique = false, useable = true, shouldClose = true, description = 'Drug Madness' },
drug_blurredwater = { name = 'drug_blurredwater', label = 'Water', weight = 500, type = 'item', image = 'water.png', unique = false, useable = true, shouldClose = true, description = 'Looks a little different?' },

alcohol = { name = 'alcohol', label = 'Alcohol', weight = 250, type = 'item', image = 'alcohol.png', unique = false, useable = false, shouldClose = true, description = 'Alcohol' },
toxic_herb = { name = 'toxic_herb', label = 'Toxic Herb', weight = 250, type = 'item', image = 'toxic_herb.png', unique = false, useable = false, shouldClose = true, description = 'Toxic Herb' },

PreviousHow To DoNextConfig

Last updated 2 months ago

Installation