💻Installation

  • Insert the resource to the resoureces folder

  • Configure the config shared/config.lua as your likings

  • Start the resource in server.cfg by inserting ensure wql-farmer-job

  • Restart your server

Create item in ox_inventory/data/items.lua

	['farmer'] = {
		label = 'Farmer Shovel',
		weight = 20,
		stack = true,
		close = true,
		description = 'Useful for collecting products in the lands.'
	},
​
	['emptybag'] = {
		label = 'Empty Bag',
		weight = 40,
		stack = true,
		close = true,
	},
​
	['emptybucket'] = {
		label = 'Empty Bucket',
		weight = 50,
		stack = true,
		close = true,
	},
​
	['sackpotatoes'] = {
		label = 'Sack Potatoes',
		weight = 300,
		stack = true,
		close = true,
	},
​
	['sackonion'] = {
		label = 'Sack Onion',
		weight = 300,
		stack = true,
		close = true,
	},
​
	['sackcarrot'] = {
		label = 'Sack Carrot',
		weight = 300,
		stack = true,
		close = true,
	},
​
	['sacktomatoes'] = {
		label = 'Sack Tomatoes',
		weight = 300,
		stack = true,
		close = true,
	},
​
	['milkbucket'] = {
		label = 'Milk Bucket',
		weight = 400,
		stack = true,
		close = true,
	},
​
	['hay'] = {
		label = 'Hay',
		weight = 30,
		stack = true,
		close = true,
	},

Last updated