Setup

All Setup information is inside the file that comes with the Resource! Check README.md

circle-exclamation

The installation for the two frameworks are slightly different due the base items on both frameworks!

circle-info

Make sure you read everything!

Please change the Config file to your framework, we currently have inside Presets folder for ESX and QB-Core due different items in each framework. Rename it for config.lua and put in the root folder!

QB Core Inventory

Add the images that come inside the images folder on the resource to qb-inventory > html > images

You should go to your QB-Core Folder > Shared > Items.lua and add the following code:

Required Items:

items.lua
	['wood_barrel'] 			= {['name'] = 'wood_barrel', 			  	['label'] = 'Wood Barrel', 					['weight'] = 30000, 		['type'] = 'item', 		['image'] = 'wood_barrel.png', 		['unique'] = false, 	['useable'] = true, 	['shouldClose'] = true,    	['combinable'] = nil,   ['description'] = 'Make your wine'},
	['purple_grape'] 			= {['name'] = 'purple_grape', 			  	['label'] = 'Purple Grape', 					['weight'] = 200, 		['type'] = 'item', 		['image'] = 'purple_grape.png', 	['unique'] = false, 	['useable'] = false, 	['shouldClose'] = false,    	['combinable'] = nil,   ['description'] = 'This purple thing tastes good'},
	['grape_seed'] 			 	= {['name'] = 'grape_seed', 			  	['label'] = 'Grape Seed', 					['weight'] = 100, 		['type'] = 'item', 		['image'] = 'grape_seed.png', 		['unique'] = false, 	['useable'] = true, 	['shouldClose'] = true,    	['combinable'] = nil,   ['description'] = 'Seed to make some Grapes'},
	['premium_wine'] 			= {['name'] = 'premium_wine', 			  	['label'] = 'Premium Wine', 					['weight'] = 2000, 		['type'] = 'item', 		['image'] = 'premium_wine.png', 	['unique'] = false, 	['useable'] = true, 	['shouldClose'] = true,    	['combinable'] = nil,   ['description'] = 'Seems to taste good'},
	['empty_bottle'] 			= {['name'] = 'empty_bottle', 			  	['label'] = 'Empty GlassBottle', 				['weight'] = 1000, 		['type'] = 'item', 		['image'] = 'empty_bottle.png', 	['unique'] = false, 	['useable'] = false, 	['shouldClose'] = false,	['combinable'] = nil,   ['description'] = 'Ohh. It is empty!'},
	['wood_box'] 				= {['name'] = 'wood_box', 			  	['label'] = 'Wood box', 					['weight'] = 30000, 		['type'] = 'item', 		['image'] = 'wood_box.png', 		['unique'] = false, 	['useable'] = false, 	['shouldClose'] = false,    	['combinable'] = nil,   ['description'] = 'Something can me inside this'},
	['wine_box'] 				= {['name'] = 'wine_box', 			  	['label'] = 'Wine box', 					['weight'] = 50000, 		['type'] = 'item', 		['image'] = 'wood_box.png', 		['unique'] = false, 	['useable'] = false, 	['shouldClose'] = false,    	['combinable'] = nil,   ['description'] = 'Uhm! A box of wine!'},

Optional Items:

The following items should be added if you don't already have a watering system in your server!

By Default the Config uses the next two items to be able to water the plants.


OX Inventory

Add the images that come inside the images folder on the resource to ox_inventory > web > images

You should go to your OX Inventory Folder > data > Items.lua and add the following code:

Required Items:

Optional Items:

The following items should be added if you don't already have a watering system in your server!

By Default the Config uses the next two items to be able to water the plants.


ESX Framework

This freamework by default doesn't have any fertelizer so please add the following item to your OX Inventory > Data > Items.lua

Last updated