TxglsScripting
  • 🔊txgls-loadscreen
    • Index.html
  • 🍖txgls-butcherjob
    • config.lua
    • ox_inventory
    • qb-inventory
    • okokNotify
  • 🧑‍🌾txgls-farmingjob
    • config.lua
    • ox_inventory
    • qb-inventory
    • farming_data.sql
Powered by GitBook
On this page
  1. txgls-butcherjob

qb-inventory

['raw_chicken'] = {
    name = 'raw_chicken',
    label = 'Raw Chicken',
    weight = 500,
    type = 'item',
    image = 'raw_chicken.png',
    unique = false,
    useable = true,
    shouldClose = true,
    combinable = nil,
    description = 'Fresh raw chicken that needs to be processed'
},
['raw_beef'] = {
    name = 'raw_beef',
    label = 'Raw Beef',
    weight = 800,
    type = 'item',
    image = 'raw_beef.png',
    unique = false,
    useable = true,
    shouldClose = true,
    combinable = nil,
    description = 'Fresh raw beef that needs to be processed'
},
['raw_pork'] = {
    name = 'raw_pork',
    label = 'Raw Pork',
    weight = 600,
    type = 'item',
    image = 'raw_pork.png',
    unique = false,
    useable = true,
    shouldClose = true,
    combinable = nil,
    description = 'Fresh raw pork that needs to be processed'
},
['raw_lamb'] = {
    name = 'raw_lamb',
    label = 'Raw Lamb',
    weight = 700,
    type = 'item',
    image = 'raw_lamb.png',
    unique = false,
    useable = true,
    shouldClose = true,
    combinable = nil,
    description = 'Fresh raw lamb that needs to be processed'
},
['raw_turkey'] = {
    name = 'raw_turkey',
    label = 'Raw Turkey',
    weight = 1000,
    type = 'item',
    image = 'raw_turkey.png',
    unique = false,
    useable = true,
    shouldClose = true,
    combinable = nil,
    description = 'Fresh raw turkey that needs to be processed'
},

-- CUT MEAT ITEMS
['cut_chicken'] = {
    name = 'cut_chicken',
    label = 'Cut Chicken',
    weight = 450,
    type = 'item',
    image = 'cut_chicken.png',
    unique = false,
    useable = true,
    shouldClose = true,
    combinable = nil,
    description = 'Properly cut chicken portions ready for packaging'
},
['cut_beef'] = {
    name = 'cut_beef',
    label = 'Cut Beef',
    weight = 750,
    type = 'item',
    image = 'cut_beef.png',
    unique = false,
    useable = true,
    shouldClose = true,
    combinable = nil,
    description = 'Properly cut beef portions ready for packaging'
},
['cut_pork'] = {
    name = 'cut_pork',
    label = 'Cut Pork',
    weight = 550,
    type = 'item',
    image = 'cut_pork.png',
    unique = false,
    useable = true,
    shouldClose = true,
    combinable = nil,
    description = 'Properly cut pork portions ready for packaging'
},
['cut_lamb'] = {
    name = 'cut_lamb',
    label = 'Cut Lamb',
    weight = 650,
    type = 'item',
    image = 'cut_lamb.png',
    unique = false,
    useable = true,
    shouldClose = true,
    combinable = nil,
    description = 'Properly cut lamb portions ready for packaging'
},
['cut_turkey'] = {
    name = 'cut_turkey',
    label = 'Cut Turkey',
    weight = 900,
    type = 'item',
    image = 'cut_turkey.png',
    unique = false,
    useable = true,
    shouldClose = true,
    combinable = nil,
    description = 'Properly cut turkey portions ready for packaging'
},

-- PACKAGED MEAT ITEMS
['packaged_chicken'] = {
    name = 'packaged_chicken',
    label = 'Packaged Chicken',
    weight = 400,
    type = 'item',
    image = 'packaged_chicken.png',
    unique = false,
    useable = true,
    shouldClose = true,
    combinable = nil,
    description = 'Vacuum sealed chicken ready for delivery'
},
['packaged_beef'] = {
    name = 'packaged_beef',
    label = 'Packaged Beef',
    weight = 700,
    type = 'item',
    image = 'packaged_beef.png',
    unique = false,
    useable = true,
    shouldClose = true,
    combinable = nil,
    description = 'Vacuum sealed beef ready for delivery'
},
['packaged_pork'] = {
    name = 'packaged_pork',
    label = 'Packaged Pork',
    weight = 500,
    type = 'item',
    image = 'packaged_pork.png',
    unique = false,
    useable = true,
    shouldClose = true,
    combinable = nil,
    description = 'Vacuum sealed pork ready for delivery'
},
['packaged_lamb'] = {
    name = 'packaged_lamb',
    label = 'Packaged Lamb',
    weight = 600,
    type = 'item',
    image = 'packaged_lamb.png',
    unique = false,
    useable = true,
    shouldClose = true,
    combinable = nil,
    description = 'Vacuum sealed lamb ready for delivery'
},
['packaged_turkey'] = {
    name = 'packaged_turkey',
    label = 'Packaged Turkey',
    weight = 800,
    type = 'item',
    image = 'packaged_turkey.png',
    unique = false,
    useable = true,
    shouldClose = true,
    combinable = nil,
    description = 'Vacuum sealed turkey ready for delivery'
},
Previousox_inventoryNextokokNotify

Last updated 15 days ago

🍖