ox_inventory Items
lua
['fruit_masher'] = { label = "Fruit Masher", weight = 2500, stack = true, close = true, description = "A tool used to mash fruits for fermentation.", client = { image = "fruit_masher.png" } },
['potstil_01'] = { label = "Pot Still 01", weight = 5000, stack = true, close = true, description = "Basic equipment for distilling moonshine.", client = { image = "potstil_01.png" } },
['potstil_02'] = { label = "Pot Still 02", weight = 5000, stack = true, close = true, description = "Standard equipment for distilling moonshine.", client = { image = "potstil_02.png" } },
['potstil_03'] = { label = "Pot Still 03", weight = 5000, stack = true, close = true, description = "Advanced equipment for distilling moonshine.", client = { image = "potstil_03.png" } },
['woodaxe_moonshine'] = { label = "Wood Axe", weight = 1200, stack = true, close = true, description = "A sharp axe for chopping wood.", client = { image = "woodaxe_moonshine.png" } },
['fuel_wood'] = { label = "Fuel Wood", weight = 1200, stack = true, close = true, description = "Fuel Wood.", client = { image = "fuel_wood.png" } },
['chopblock_moonshine'] = { label = "Chop Block", weight = 3000, stack = true, close = true, description = "A sturdy wooden block for chopping logs.", client = { image = "chopblock_moonshine.png" } },
['oldfruit'] = { label = "Rotten Fruit", weight = 100, stack = true, close = true, description = "Fruit that has started to ferment. Good for mash.", client = { image = "oldfruit.png" } },
['oldcorn'] = { label = "Dried Corn", weight = 100, stack = true, close = true, description = "Old corn kernels, essential for moonshine base.", client = { image = "oldcorn.png" } },
['oldbread'] = { label = "Stale Bread", weight = 100, stack = true, close = true, description = "Hard, stale bread. Can be used for yeast.", client = { image = "oldbread.png" } },
['fruit_mesh'] = { label = "Fruit Mash", weight = 200, stack = true, close = true, description = "Mashed fruit pulp ready for processing.", client = { image = "fruit_mesh.png" } },
['createmoonshine'] = { label = "Moonshine Mash", weight = 500, stack = true, close = true, description = "A fermented mixture ready to be distilled.", client = { image = "createmoonshine.png" } },
['moonshine'] = { label = "Moonshine Jar", weight = 750, stack = true, close = true, description = "A jar of strong homemade alcohol.", client = { image = "moonshine.png" } },
['moonshine2'] = { label = "Premium Moonshine", weight = 750, stack = true, close = true, description = "High-quality, potent moonshine with a smooth finish.", client = { image = "moonshine2.png" } },
qb-inventory Items
lua
fruit_masher = { name = 'fruit_masher', label = 'Fruit Masher', weight = 2500, type = 'item', image = 'fruit_masher.png', unique = false, useable = true, shouldClose = true, description = 'A tool used to mash fruits for fermentation.' },
potstil_01 = { name = 'potstil_01', label = 'Pot Still 01', weight = 5000, type = 'item', image = 'potstil_01.png', unique = false, useable = true, shouldClose = true, description = 'Basic equipment for distilling moonshine.' },
potstil_02 = { name = 'potstil_02', label = 'Pot Still 02', weight = 5000, type = 'item', image = 'potstil_02.png', unique = false, useable = true, shouldClose = true, description = 'Standard equipment for distilling moonshine.' },
potstil_03 = { name = 'potstil_03', label = 'Pot Still 03', weight = 5000, type = 'item', image = 'potstil_03.png', unique = false, useable = true, shouldClose = true, description = 'Advanced equipment for distilling moonshine.' },
woodaxe_moonshine = { name = 'woodaxe_moonshine', label = 'Wood Axe', weight = 1200, type = 'item', image = 'woodaxe_moonshine.png', unique = false, useable = true, shouldClose = true, description = 'A sharp axe for chopping wood.' },
fuel_wood = { name = 'fuel_wood', label = 'Wood Fuel', weight = 1200, type = 'item', image = 'fuel_wood.png', unique = false, useable = true, shouldClose = true, description = 'Wood Fuel.' },
chopblock_moonshine = { name = 'chopblock_moonshine', label = 'Chop Block', weight = 3000, type = 'item', image = 'chopblock_moonshine.png', unique = false, useable = true, shouldClose = true, description = 'A sturdy wooden block for chopping logs.' },
oldfruit = { name = 'oldfruit', label = 'Rotten Fruit', weight = 100, type = 'item', image = 'oldfruit.png', unique = false, useable = false, shouldClose = false, description = 'Fruit that has started to ferment. Good for mash.' },
oldcorn = { name = 'oldcorn', label = 'Dried Corn', weight = 100, type = 'item', image = 'oldcorn.png', unique = false, useable = false, shouldClose = false, description = 'Old corn kernels, essential for moonshine base.' },
oldbread = { name = 'oldbread', label = 'Stale Bread', weight = 100, type = 'item', image = 'oldbread.png', unique = false, useable = false, shouldClose = false, description = 'Hard, stale bread. Can be used for yeast.' },
fruit_mesh = { name = 'fruit_mesh', label = 'Fruit Mash', weight = 200, type = 'item', image = 'fruit_mesh.png', unique = false, useable = false, shouldClose = false, description = 'Mashed fruit pulp ready for processing.' },
createmoonshine = { name = 'createmoonshine', label = 'Moonshine Mash', weight = 500, type = 'item', image = 'createmoonshine.png', unique = false, useable = false, shouldClose = false, description = 'A fermented mixture ready to be distilled.' },
moonshine = { name = 'moonshine', label = 'Moonshine Jar', weight = 750, type = 'item', image = 'moonshine.png', unique = false, useable = true, shouldClose = true, description = 'A jar of strong homemade alcohol.' },
moonshine2 = { name = 'moonshine2', label = 'Premium Moonshine', weight = 750, type = 'item', image = 'moonshine2.png', unique = false, useable = true, shouldClose = true, description = 'High-quality, potent moonshine with a smooth finish.' },
Icons
Install/icons
qb-inventory/html/images
ox_inventory/web/images
SQL
CREATE TABLE IF NOT EXISTS `jomidar_moonshine_data` (
`cid` VARCHAR(50) NOT NULL PRIMARY KEY,
`stills` LONGTEXT DEFAULT NULL,
`xp` LONGTEXT DEFAULT NULL,
`sellsincome` DECIMAL(15,2) DEFAULT 0.00,
`soldlogs` LONGTEXT DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
Server Ensure
ensure J0-Moonshine
ensure nukepung_assets