📙
SW-Scripts - FiveM
  • 👋Introduction
  • Scripts
    • 🐝Beekeeping
      • Items - QB
      • Items - OX
      • Jobs - QB
      • Jobs - OX
      • Changelog
    • ðŸšēBike Rental
      • Changelog
    • ðŸīConsumables
      • Changelog
    • ðŸ“ĶDelivery Job
      • Jobs - QB
      • Jobs - OX
      • Changelog
    • ðŸĪŋDiving
      • Items - QB
      • Items - OX
      • Changelog
    • ðŸŒŋDrugs
      • Items - QB
      • Items - OX
      • Shops
      • Changelog
    • ðŸ“ĐElection
      • SQL
      • Changelog
    • 🐄Farming
      • Items - QB
      • Items - OX
      • Jobs - QB
      • Jobs - OX
      • Changelog
    • 🐟Fishing
      • Items - QB
      • Items - OX
      • Dispatch
      • Changelog
    • 👷Garbage Job
      • Jobs - QB
      • Jobs - OX
      • Changelog
    • ðŸŠĶGrave Robbery
      • Items - QB
      • Items - OX
      • Shops
      • Dispatch
      • Changelog
    • 🎃Halloween
      • Items - QB
      • Items - OX
      • Changelog
    • ðŸđHunting
      • Items - QB
      • Items - OX
      • Inventory
      • Changelog
    • ðŸŠĻMining
      • Items - QB
      • Items - OX
      • Jobs - QB
      • Jobs - OX
      • Changelog
    • 💊Oxy Runs
      • Items - QB
      • Items - OX
      • Changelog
    • 🔧Scrapyard
      • Items - QB
      • Items - OX
      • Changelog
    • 🌍Treasure Hunting
      • Items - QB
      • Items - OX
      • Shops
      • SQL
      • Changelog
    • 🍷Vineyard
      • Items - QB
      • Items - OX
      • Jobs - QB
      • Jobs - OX
      • Changelog
  • Business Scripts
    • ðŸđBahama Mamas
      • Items - QB
      • Items - OX
      • Jobs - QB
      • Jobs - OX
      • Changelog
    • ☕Bean Machine
      • Items - QB
      • Items - OX
      • Jobs - QB
      • Jobs - OX
      • Changelog
    • ðŸ”ĨBlack Lantern
      • Items - QB
      • Items - OX
      • Jobs - QB
      • Jobs - OX
      • Changelog
    • 🍔BurgerShot
      • Items - QB
      • Items - OX
      • Jobs - QB
      • Jobs - OX
      • Changelog
    • ðŸąCat Cafe
      • Items - QB
      • Items - OX
      • Jobs - QB
      • Jobs - OX
      • Changelog
    • 🌟Galaxy Nightclub
      • Items - QB
      • Items - OX
      • Jobs - QB
      • Jobs - OX
      • Changelog
    • 🐔Hen House
      • Items - QB
      • Items - OX
      • Jobs - QB
      • Jobs - OX
      • Changelog
    • 🍔Hornys Burger
      • Items - QB
      • Items - OX
      • Jobs - QB
      • Jobs - OX
      • Changelog
    • 🐟Koi Seafood
      • Items - QB
      • Items - OX
      • Jobs - QB
      • Jobs - OX
      • Changelog
    • 🚂Last Train
      • Items - QB
      • Items - OX
      • Jobs - QB
      • Jobs - OX
      • Changelog
    • 🌕Nocturnal Nightclub
      • Items - QB
      • Items - OX
      • Jobs - QB
      • Jobs - OX
      • Changelog
    • 🐟Pearls Seafood
      • Items - QB
      • Items - OX
      • Jobs - QB
      • Jobs - OX
      • Changelog
    • 🍕Pizza This
      • Items - QB
      • Items - OX
      • Jobs - QB
      • Jobs - OX
      • Changelog
    • ðŸĶĒPond Cafe
      • Items - QB
      • Items - OX
      • Jobs - QB
      • Jobs - OX
      • Changelog
    • ðŸĶPops Diner
      • Items - QB
      • Items - OX
      • Jobs - QB
      • Jobs - OX
      • Changelog
    • ðŸļTequi-La-La
      • Items - QB
      • Items - OX
      • Jobs - QB
      • Jobs - OX
      • Changelog
    • 🍔Up-N-Atom
      • Items - QB
      • Items - OX
      • Jobs - QB
      • Jobs - OX
      • Changelog
    • ðŸĶ„Vanilla Unicorn
      • Items - QB
      • Items - OX
      • Jobs - QB
      • Jobs - OX
      • Changelog
    • 🍚Yellowjack Inn
      • Items - QB
      • Items - OX
      • Jobs - QB
      • Jobs - OX
      • Changelog
Powered by GitBook
On this page
  1. Scripts
  2. Farming

Items - QB

Add these into your items list e.g. qb-core/shared/items.lua

-- Farming
bucket              = { name = 'bucket',            label = 'Bucket',               weight = 500,   type = 'item', image = 'bucket.png',            unique = false, useable = false,    shouldClose = false,    description = 'An empty bucket!' },
milkpail            = { name = 'milkpail',          label = 'Milk Pail',            weight = 500,   type = 'item', image = 'milkpail.png',          unique = false, useable = false,    shouldClose = false,    description = 'Pail filled with fresh milk' },
trowel              = { name = 'trowel',            label = 'Trowel',               weight = 500,   type = 'item', image = 'trowel.png',            unique = false, useable = false,    shouldClose = false,    description = 'Versatile farming tool' },
weapon_knife		= { name = 'weapon_knife',		label = 'Knife',				weight = 1000,	type = 'weapon', image = 'weapon_knife.png',	unique = true,	useable = false,	shouldClose = false,	description = 'A stabbing utensil' },

apple               = { name = 'apple',             label = 'Apple',                weight = 100,   type = 'item', image = 'apple.png',             unique = false, useable = true,     shouldClose = true,     description = 'Do not eat the pip..' },
bacon               = { name = 'bacon',             label = 'Bacon',                weight = 100,   type = 'item', image = 'bacon.png',             unique = false, useable = true,     shouldClose = true,     description = 'Little slice of Kevin' },
basil               = { name = 'basil',             label = 'Basil',                weight = 100,   type = 'item', image = 'basil.png',             unique = false, useable = false,    shouldClose = false,    description = 'A great seasoning!' },
beef                = { name = 'beef',              label = 'Beef',                 weight = 500,   type = 'item', image = 'beef.png',              unique = false, useable = false,    shouldClose = false,    description = 'A slab of raw beef' },
blueberry           = { name = 'blueberry',         label = 'Blueberry',            weight = 100,   type = 'item', image = 'blueberry.png',         unique = false, useable = true,     shouldClose = true,     description = 'Technically not a berry' },
boba                = { name = 'boba',              label = 'Boba',                 weight = 100,   type = 'item', image = 'boba.png',              unique = false, useable = true,     shouldClose = true,     description = 'Chewy tapioca balls' },
bread               = { name = 'bread',             label = 'Bread',                weight = 200,   type = 'item', image = 'bread.png',             unique = false, useable = true,     shouldClose = true,     description = 'The staple of humanity' },
burgerpatty         = { name = 'burgerpatty',       label = 'Burger Patty',         weight = 100,   type = 'item', image = 'burgerpatty.png',       unique = false, useable = false,    shouldClose = false,    description = 'A raw burger patty' },
carrot              = { name = 'carrot',            label = 'Carrot',               weight = 100,   type = 'item', image = 'carrot.png',            unique = false, useable = true,     shouldClose = true,     description = 'Whats up, Doc?' },
cheddar             = { name = 'cheddar',           label = 'Cheddar Slice',        weight = 100,   type = 'item', image = 'cheddar.png',           unique = false, useable = true,     shouldClose = true,     description = 'A slice of cheddar cheese' },
chicken             = { name = 'chicken',           label = 'Chicken',              weight = 500,   type = 'item', image = 'chicken.png',           unique = false, useable = false,    shouldClose = false,    description = 'A raw chicken' },
chickenbreast       = { name = 'chickenbreast',     label = 'Chicken Breast',       weight = 100,   type = 'item', image = 'chickenbreast.png',     unique = false, useable = false,    shouldClose = false,    description = 'A cooked chicken breast' },
chickennugget       = { name = 'chickennugget',     label = 'Chicken Nuggets',      weight = 100,   type = 'item', image = 'chickennugget.png',     unique = false, useable = false,    shouldClose = false,    description = 'A childhood favourite!' },
cinnamon            = { name = 'cinnamon',          label = 'Cinnamon',             weight = 100,   type = 'item', image = 'cinnamon.png',          unique = false, useable = false,    shouldClose = false,    description = 'Very festive' },
cocoabean           = { name = 'cocoabean',         label = 'Cocoa Bean',           weight = 100,   type = 'item', image = 'cocoabean.png',         unique = false, useable = false,    shouldClose = false,    description = 'Signature ingredient of chocolate' },
coffeebean          = { name = 'coffeebean',        label = 'Coffee Beans',         weight = 100,   type = 'item', image = 'coffeebean.png',        unique = false, useable = false,    shouldClose = false,    description = 'Signature ingredient of coffee' },
cucumber            = { name = 'cucumber',          label = 'Cucumber',             weight = 100,   type = 'item', image = 'cucumber.png',          unique = false, useable = true,     shouldClose = true,     description = 'A creeping vine plant common in salads' },
eggplant            = { name = 'eggplant',          label = 'Eggplant',             weight = 100,   type = 'item', image = 'eggplant.png',          unique = false, useable = true,     shouldClose = true,     description = 'A favourite of many... for consumption' },
egg                 = { name = 'egg',               label = 'Egg',                  weight = 100,   type = 'item', image = 'egg.png',               unique = false, useable = false,    shouldClose = false,    description = 'Free range of course!' },
flour               = { name = 'flour',             label = 'Flour',                weight = 100,   type = 'item', image = 'flour.png',             unique = false, useable = false,    shouldClose = false,    description = 'Milled powder from collected grain' },
garlic              = { name = 'garlic',            label = 'Garlic',               weight = 100,   type = 'item', image = 'garlic.png',            unique = false, useable = false,    shouldClose = false,    description = 'Not popular amongst Vampires' },
grain               = { name = 'grain',             label = 'Grain',                weight = 100,   type = 'item', image = 'grain.png',             unique = false, useable = false,    shouldClose = false,    description = 'Some small, hard, dry seeds' },
ham                 = { name = 'ham',               label = 'Ham',                  weight = 100,   type = 'item', image = 'ham.png',               unique = false, useable = true,     shouldClose = true,     description = 'Freshly sliced ham' },
lemon               = { name = 'lemon',             label = 'Lemon',                weight = 100,   type = 'item', image = 'lemon.png',             unique = false, useable = true,     shouldClose = true,     description = 'Citrusy delight' },
lettuce             = { name = 'lettuce',           label = 'Lettuce',              weight = 100,   type = 'item', image = 'lettuce.png',           unique = false, useable = true,     shouldClose = true,     description = 'Perfect for burger topping... and Rabbits' },
lime                = { name = 'lime',              label = 'Lime',                 weight = 100,   type = 'item', image = 'lime.png',              unique = false, useable = true,     shouldClose = true,     description = 'Goes well with Tequila!' },
milk                = { name = 'milk',              label = 'Milk',                 weight = 300,   type = 'item', image = 'milk.png',              unique = false, useable = true,     shouldClose = true,     description = 'A glass bottle of milk' },
mint                = { name = 'mint',              label = 'Mint',                 weight = 100,   type = 'item', image = 'mint.png',              unique = false, useable = false,    shouldClose = false,    description = 'Peppermint? Spearmint? Who knows!' },
mozzarella          = { name = 'mozzarella',        label = 'Mozzarella',           weight = 100,   type = 'item', image = 'mozzarella.png',        unique = false, useable = false,    shouldClose = false,    description = 'Made from Italian Buffalo milk' },
mushroom            = { name = 'mushroom',          label = 'Mushroom',             weight = 100,   type = 'item', image = 'mushroom.png',          unique = false, useable = true,     shouldClose = true,     description = 'What a fun guy!' },
olives              = { name = 'olives',            label = 'Olives',               weight = 100,   type = 'item', image = 'olives.png',            unique = false, useable = true,     shouldClose = true,     description = 'Not for everyone..' },
onion               = { name = 'onion',             label = 'Onion',                weight = 100,   type = 'item', image = 'onion.png',             unique = false, useable = false,    shouldClose = false,    description = 'Brings a tear to my eye' },
orange              = { name = 'orange',            label = 'Orange',               weight = 100,   type = 'item', image = 'orange.png',            unique = false, useable = true,     shouldClose = true,     description = 'What came first - the fruit or the colour?' },
peach               = { name = 'peach',             label = 'Peach',                weight = 100,   type = 'item', image = 'peach.png',             unique = false, useable = true,     shouldClose = true,     description = 'Peachy Keen!' },
peanut              = { name = 'peanut',            label = 'Peanut',               weight = 100,   type = 'item', image = 'peanut.png',            unique = false, useable = true,     shouldClose = true,     description = 'Make sure you are not allergic!' },
pepper              = { name = 'pepper',            label = 'Pepper',               weight = 100,   type = 'item', image = 'pepper.png',            unique = false, useable = true,     shouldClose = true,     description = 'Surprisingly good raw!' },
pork                = { name = 'pork',              label = 'Pork',                 weight = 500,   type = 'item', image = 'pork.png',              unique = false, useable = false,    shouldClose = false,    description = 'No longer wabbit season..' },
potato              = { name = 'potato',            label = 'Potato',               weight = 100,   type = 'item', image = 'potato.png',            unique = false, useable = true,     shouldClose = true,     description = 'An Irish staple' },
pumpkin             = { name = 'pumpkin',           label = 'Pumpkin',              weight = 100,   type = 'item', image = 'pumpkin.png',           unique = false, useable = true,     shouldClose = true,     description = 'Spooky!' },
salami              = { name = 'salami',            label = 'Salami',               weight = 100,   type = 'item', image = 'salami.png',            unique = false, useable = true,     shouldClose = true,     description = 'Thats some spicy sausage!' },
sausages            = { name = 'sausages',          label = 'Sausages',             weight = 100,   type = 'item', image = 'sausages.png',          unique = false, useable = true,     shouldClose = true,     description = 'Some not-so-spicy sausage!' },
soybean             = { name = 'soybean',           label = 'Soy Bean',             weight = 100,   type = 'item', image = 'soybean.png',           unique = false, useable = false,    shouldClose = false,    description = 'A bean, but a legume' },
strawberry          = { name = 'strawberry',        label = 'Strawberry',           weight = 100,   type = 'item', image = 'strawberry.png',        unique = false, useable = true,     shouldClose = true,     description = 'Technically not a berry' },
sugar               = { name = 'sugar',             label = 'Sugar',                weight = 100,   type = 'item', image = 'sugar.png',             unique = false, useable = false,    shouldClose = false,    description = 'Something sweet!' },
sugarcane           = { name = 'sugarcane',         label = 'Sugarcane',            weight = 100,   type = 'item', image = 'sugarcane.png',         unique = false, useable = false,    shouldClose = false,    description = 'A sucrose-rich grass stalk' },
tofu                = { name = 'tofu',              label = 'Tofu',                 weight = 100,   type = 'item', image = 'tofu.png',              unique = false, useable = true,     shouldClose = true,     description = 'Vegan friendly!' },
tomato              = { name = 'tomato',            label = 'Tomato',               weight = 100,   type = 'item', image = 'tomato.png',            unique = false, useable = true,     shouldClose = true,     description = 'A fruit. Not a vegetable.' },
yeast               = { name = 'yeast',             label = 'Yeast',                weight = 100,   type = 'item', image = 'yeast.png',             unique = false, useable = false,    shouldClose = false,    description = 'Single-celled organisms' },
yuzu                = { name = 'yuzu',              label = 'Yuzu',                 weight = 100,   type = 'item', image = 'yuzu.png',              unique = false, useable = false,    shouldClose = false,    description = 'Japanese citrus fruit that resembles a small grapefruit' },

-- Beekeeping
pollen              = { name = 'pollen',            label = 'Pollen',               weight = 100,   type = 'item', image = 'pollen.png',            unique = false, useable = false,    shouldClose = false,    description = 'Powdery substance produced by flowers of seed plants' },
pollen_apple        = { name = 'pollen_apple',      label = 'Apple Pollen',         weight = 100,   type = 'item', image = 'pollen_apple.png',      unique = false, useable = false,    shouldClose = false,    description = 'Pollen collected from apple fruit trees' },
pollen_lemon        = { name = 'pollen_lemon',      label = 'Lemon Pollen',         weight = 100,   type = 'item', image = 'pollen_lemon.png',      unique = false, useable = false,    shouldClose = false,    description = 'Pollen collected from lemon fruit trees' },
pollen_lime         = { name = 'pollen_lime',       label = 'Lime Pollen',          weight = 100,   type = 'item', image = 'pollen_lime.png',       unique = false, useable = false,    shouldClose = false,    description = 'Pollen collected from lime fruit trees' },
pollen_orange       = { name = 'pollen_orange',     label = 'Orange Pollen',        weight = 100,   type = 'item', image = 'pollen_orange.png',     unique = false, useable = false,    shouldClose = false,    description = 'Pollen collected from orange fruit trees' },
pollen_peach        = { name = 'pollen_peach',      label = 'Peach Pollen',         weight = 100,   type = 'item', image = 'pollen_peach.png',      unique = false, useable = false,    shouldClose = false,    description = 'Pollen collected from peach fruit trees' },
PreviousFarmingNextItems - OX

Last updated 15 hours ago

🐄