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

ox_inventory

	['raw_chicken'] = {
		label = 'Raw Chicken',
		weight = 500,
		stack = true,
		close = true,
		description = 'Fresh raw chicken that needs to be processed',
		client = {
			image = 'raw_chicken.png',
		}
	},

	['raw_beef'] = {
		label = 'Raw Beef',
		weight = 800,
		stack = true,
		close = true,
		description = 'Fresh raw beef that needs to be processed',
		client = {
			image = 'raw_beef.png',
		}
	},

	['raw_pork'] = {
		label = 'Raw Pork',
		weight = 600,
		stack = true,
		close = true,
		description = 'Fresh raw pork that needs to be processed',
		client = {
			image = 'raw_pork.png',
		}
	},

	['raw_lamb'] = {
		label = 'Raw Lamb',
		weight = 700,
		stack = true,
		close = true,
		description = 'Fresh raw lamb that needs to be processed',
		client = {
			image = 'raw_lamb.png',
		}
	},

	['raw_turkey'] = {
		label = 'Raw Turkey',
		weight = 1000,
		stack = true,
		close = true,
		description = 'Fresh raw turkey that needs to be processed',
		client = {
			image = 'raw_turkey.png',
		}
	},

	-- CUT MEAT ITEMS
	['cut_chicken'] = {
		label = 'Cut Chicken',
		weight = 450,
		stack = true,
		close = true,
		description = 'Properly cut chicken portions ready for packaging',
		client = {
			image = 'cut_chicken.png',
		}
	},

	['cut_beef'] = {
		label = 'Cut Beef',
		weight = 750,
		stack = true,
		close = true,
		description = 'Properly cut beef portions ready for packaging',
		client = {
			image = 'cut_beef.png',
		}
	},

	['cut_pork'] = {
		label = 'Cut Pork',
		weight = 550,
		stack = true,
		close = true,
		description = 'Properly cut pork portions ready for packaging',
		client = {
			image = 'cut_pork.png',
		}
	},

	['cut_lamb'] = {
		label = 'Cut Lamb',
		weight = 650,
		stack = true,
		close = true,
		description = 'Properly cut lamb portions ready for packaging',
		client = {
			image = 'cut_lamb.png',
		}
	},

	['cut_turkey'] = {
		label = 'Cut Turkey',
		weight = 900,
		stack = true,
		close = true,
		description = 'Properly cut turkey portions ready for packaging',
		client = {
			image = 'cut_turkey.png',
		}
	},

	-- PACKAGED MEAT ITEMS
	['packaged_chicken'] = {
		label = 'Packaged Chicken',
		weight = 400,
		stack = true,
		close = true,
		description = 'Vacuum sealed chicken ready for delivery',
		client = {
			image = 'packaged_chicken.png',
		}
	},

	['packaged_beef'] = {
		label = 'Packaged Beef',
		weight = 700,
		stack = true,
		close = true,
		description = 'Vacuum sealed beef ready for delivery',
		client = {
			image = 'packaged_beef.png',
		}
	},

	['packaged_pork'] = {
		label = 'Packaged Pork',
		weight = 500,
		stack = true,
		close = true,
		description = 'Vacuum sealed pork ready for delivery',
		client = {
			image = 'packaged_pork.png',
		}
	},

	['packaged_lamb'] = {
		label = 'Packaged Lamb',
		weight = 600,
		stack = true,
		close = true,
		description = 'Vacuum sealed lamb ready for delivery',
		client = {
			image = 'packaged_lamb.png',
		}
	},

	['packaged_turkey'] = {
		label = 'Packaged Turkey',
		weight = 800,
		stack = true,
		close = true,
		description = 'Vacuum sealed turkey ready for delivery',
		client = {
			image = 'packaged_turkey.png',
		}
	},
Previousconfig.luaNextqb-inventory

Last updated 15 days ago

🍖