Installation Guide
Follow these steps for flawless instalation:
Last updated
Was this helpful?
Follow these steps for flawless instalation:
Last updated
Was this helpful?
Download the script from your .
Place the script into your server resource folder:
FXServer\server-data\resources\fivecode_vanillaunicornjob
Write the script into your server.cfg:
ensure fivecode_vanillaunicornjob
Setup your inventory:
Add the following into:
ox_inventory\modules\items\client.lua
local usableFoodItems = {'vu_mojitodrink', 'vu_pinacoladadrink', 'vu_tequilasunrisedrink', 'vu_unicornblissdrink', 'vu_lossantosdrink', 'vu_paletobaydrink', 'vu_whiskeydrink', 'vu_rhumdrink', 'vu_tequiladrink', 'vu_vodkadrink', 'vu_nutbowl', 'vu_beanbowl'}
for _, item in pairs(usableFoodItems) do
Item(item, function(data, slot)
exports.ox_inventory:closeInventory()
TriggerEvent('fivecode_vanillaunicornjob:useFoodItem', data.name)
end)
end
local usableCigarettesItems = {'vu_redwoodcigpack', 'vu_estanciacigpack', 'vu_redwoodcigsingle', 'vu_estanciacigsingle'}
for _, item in pairs(usableCigarettesItems) do
Item(item, function(data, slot)
exports.ox_inventory:closeInventory()
TriggerEvent('fivecode_vanillaunicornjob:useCigarette', data.name)
end)
end
and this into:
ox_inventory\data\items.lua
-- Other
['vu_ticket'] = {
label = 'Ticket - Vanilla Unicorn',
weight = 1,
stack = true,
close = true,
description = 'Vanilla unicorn ticket.'
},
['vu_cleansponge'] = {
label = 'Clean Sponge',
weight = 1,
stack = true,
close = true,
description = 'Clean sponge which is ready for some cleaning!'
},
['vu_dirtysponge'] = {
label = 'Dirty Sponge',
weight = 1,
stack = true,
close = true,
description = 'Dirty sponge which needs to be cleaned!'
},
['vu_redwoodcigpack'] = {
label = 'Redwood Cigarette Pack',
weight = 1,
stack = true,
close = true,
description = 'A pack of premium Redwood cigarettes, the favorite brand of Vinewood elites.'
},
['vu_redwoodcigsingle'] = {
label = 'Redwood Cigarette',
weight = 1,
stack = true,
close = true,
description = 'A single Redwood cigarette, smooth and satisfying.'
},
['vu_estanciacigpack'] = {
label = 'Estancia Cigarette Pack',
weight = 1,
stack = true,
close = true,
description = 'A pack of Estancia cigarettes, known for their bold and rich flavor.'
},
['vu_estanciacigsingle'] = {
label = 'Estancia Cigarette',
weight = 1,
stack = true,
close = true,
description = 'A single Estancia cigarette, a strong hit for those who crave intensity.'
},
['vu_sugar'] = {
label = 'Sugar',
weight = 1,
stack = true,
close = true,
description = 'Sugar.'
},
['vu_ice'] = {
label = 'Ice',
weight = 1,
stack = true,
close = true,
description = 'Ice ready to cool your drink!'
},
['vu_soda'] = {
label = 'Soda',
weight = 1,
stack = true,
close = true,
description = 'Soda.'
},
['vu_juice'] = {
label = 'Juice',
weight = 1,
stack = true,
close = true,
description = 'Juice.'
},
['vu_coconutcream'] = {
label = 'Coconut Cream',
weight = 1,
stack = true,
close = true,
description = 'Coconut Cream.'
},
-- Snacks
['vu_cleanbowl'] = {
label = 'Clean Bowl',
weight = 1,
stack = true,
close = true,
description = 'Clean bowl to put food into.'
},
['vu_dirtybowl'] = {
label = 'Dirty Bowl',
weight = 1,
stack = true,
close = true,
description = 'Dirty bowl ready to be cleaned.'
},
['vu_beanbowl'] = {
label = 'Bean Bowl',
weight = 1,
stack = true,
close = true,
description = 'Bean bowl ready to be eaten.'
},
['vu_nutbowl'] = {
label = 'Nut Bowl',
weight = 1,
stack = true,
close = true,
description = 'Nut bowl ready to be eaten.'
},
['vu_beans'] = {
label = 'Beans',
weight = 1,
stack = true,
close = true,
description = 'Beans to put into a clean bowl.'
},
['vu_nuts'] = {
label = 'Nuts',
weight = 1,
stack = true,
close = true,
description = 'Nuts to put into a clean bowl.'
},
-- Drinks
['vu_cleanshortglass'] = {
label = 'Clean Short Glass',
weight = 1,
stack = true,
close = true,
description = 'Clean short glass ready to be filled up with a drink of your choice.'
},
['vu_dirtyshortglass'] = {
label = 'Dirty Short Glass',
weight = 1,
stack = true,
close = true,
description = 'Dirty short glass ready to be cleaned.'
},
['vu_cleantallglass'] = {
label = 'Clean Tall Glass',
weight = 1,
stack = true,
close = true,
description = 'Clean tall glass ready to be filled up with a drink of your choice.'
},
['vu_dirtytallglass'] = {
label = 'Dirty Tall Glass',
weight = 1,
stack = true,
close = true,
description = 'Dirty tall glass ready to be cleaned.'
},
['vu_cleancocktailglass'] = {
label = 'Clean Cocktail Glass',
weight = 1,
stack = true,
close = true,
description = 'Clean cocktail glass ready to be filled up with a drink of your choice.'
},
['vu_dirtycocktailglass'] = {
label = 'Dirty Cocktail Glass',
weight = 1,
stack = true,
close = true,
description = 'Dirty cocktail glass ready to be cleaned.'
},
['vu_rhumbottle'] = {
label = 'Rhum Glass',
weight = 1,
stack = true,
close = true,
description = 'A bottle of fine rhum.'
},
['vu_tequilabottle'] = {
label = 'Tequila Glass',
weight = 1,
stack = true,
close = true,
description = 'A premium bottle of tequila.'
},
['vu_vodkabottle'] = {
label = 'Vodka Glass',
weight = 1,
stack = true,
close = true,
description = 'A crisp and clean vodka bottle, perfect for mixing or enjoying straight.'
},
['vu_whiskeybottle'] = {
label = 'Whiskey Glass',
weight = 1,
stack = true,
close = true,
description = 'A smooth bottle of aged whiskey.'
},
['vu_mojitodrink'] = {
label = 'Mojito Cocktail',
weight = 1,
stack = true,
close = true,
description = 'A refreshing cocktail made with rum, mint, lime, sugar, and soda water.'
},
['vu_pinacoladadrink'] = {
label = 'Piña Colada',
weight = 1,
stack = true,
close = true,
description = 'A tropical mix of rum, pineapple, and coconut cream over ice.'
},
['vu_tequilasunrisedrink'] = {
label = 'Tequila Sunrise',
weight = 1,
stack = true,
close = true,
description = 'A vibrant cocktail with tequila, citrus juice, and a hint of sweetness.'
},
['vu_unicornblissdrink'] = {
label = 'Unicorn Bliss',
weight = 1,
stack = true,
close = true,
description = 'A smooth vodka cocktail with citrus juice and a hint of lemon.'
},
['vu_lossantosdrink'] = {
label = 'Los Santos',
weight = 1,
stack = true,
close = true,
description = 'A smooth vodka cocktail with citrus juice and a hint of lemon.'
},
['vu_paletobaydrink'] = {
label = 'Paleto Bay',
weight = 1,
stack = true,
close = true,
description = 'A smooth vodka cocktail with citrus juice and a hint of lemon.'
},
['vu_rhumdrink'] = {
label = 'Rhum Drink',
weight = 1,
stack = true,
close = true,
description = 'A rich and flavorful cocktail crafted with premium rhum.'
},
['vu_tequiladrink'] = {
label = 'Tequila Shot',
weight = 1,
stack = true,
close = true,
description = 'A strong and smooth tequila shot.'
},
['vu_whiskeydrink'] = {
label = 'Whiskey Glass',
weight = 1,
stack = true,
close = true,
description = 'A fine glass of aged whiskey, perfect for sipping and enjoying.'
},
['vu_vodkadrink'] = {
label = 'Vodka Glass',
weight = 1,
stack = true,
close = true,
description = 'A crisp and clean glass of vodka, best served chilled.'
},
['vu_lossantos'] = {
label = 'Los Santos',
weight = 1,
stack = true,
close = true,
description = 'A signature city-inspired cocktail with a unique blend of flavors.'
},
['vu_paletobay'] = {
label = 'Paleto Bay',
weight = 1,
stack = true,
close = true,
description = 'A tropical and smooth drink inspired by the coastal town of Paleto Bay.'
},
-- Cutting Table
['vu_rawlime'] = {
label = 'Raw Lime',
weight = 1,
stack = true,
close = true,
description = 'Raw Lime.'
},
['vu_slicedlime'] = {
label = 'Sliced Lime',
weight = 1,
stack = true,
close = true,
description = 'Sliced Lime.'
},
['vu_rawlemon'] = {
label = 'Raw Lemon',
weight = 1,
stack = true,
close = true,
description = 'Raw Lemon.'
},
['vu_slicedlemon'] = {
label = 'Sliced Lemon',
weight = 1,
stack = true,
close = true,
description = 'Sliced Lemon.'
},
['vu_rawstrawberry'] = {
label = 'Raw Strawberry',
weight = 1,
stack = true,
close = true,
description = 'Raw Strawberry.'
},
['vu_slicedstrawberry'] = {
label = 'Sliced Strawberry',
weight = 1,
stack = true,
close = true,
description = 'Sliced Strawberry.'
},
['vu_rawmint'] = {
label = 'Raw Mint',
weight = 1,
stack = true,
close = true,
description = 'Raw mint.'
},
['vu_slicedmint'] = {
label = 'Sliced Mint',
weight = 1,
stack = true,
close = true,
description = 'Sliced mint.'
},
Add the following into:
qb-core\shared\items.lua
-- Other
vu_ticket = {name = "vu_ticket", label = "Ticket - Vanilla Unicorn", weight = 1, type = "item", image = "vu_ticket.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "Vanilla unicorn ticket."},
vu_cleansponge = {name = "vu_cleansponge", label = "Clean Sponge", weight = 1, type = "item", image = "vu_cleansponge.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "Clean sponge which is ready for some cleaning!"},
vu_dirtysponge = {name = "vu_dirtysponge", label = "Dirty Sponge", weight = 1, type = "item", image = "vu_dirtysponge.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "Dirty sponge which needs to be cleaned!"},
vu_redwoodcigpack = {name = "vu_redwoodcigpack", label = "Redwood Cigarette Pack", weight = 1, type = "item", image = "vu_redwoodcigpack.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "A pack of premium Redwood cigarettes, the favorite brand of Vinewood elites."},
vu_redwoodcigsingle = {name = "vu_redwoodcigsingle", label = "Redwood Cigarette", weight = 1, type = "item", image = "vu_redwoodcigsingle.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "A single Redwood cigarette, smooth and satisfying."},
vu_estanciacigpack = {name = "vu_estanciacigpack", label = "Estancia Cigarette Pack", weight = 1, type = "item", image = "vu_estanciacigpack.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "A pack of Estancia cigarettes, known for their bold and rich flavor."},
vu_estanciacigsingle = {name = "vu_estanciacigsingle", label = "Estancia Cigarette", weight = 1, type = "item", image = "vu_estanciacigsingle.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "A single Estancia cigarette, a strong hit for those who crave intensity."},
vu_sugar = {name = "vu_sugar", label = "Sugar", weight = 1, type = "item", image = "vu_sugar.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "Sugar."},
vu_ice = {name = "vu_ice", label = "Ice", weight = 1, type = "item", image = "vu_ice.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "Ice ready to cool your drink!"},
vu_soda = {name = "vu_soda", label = "Soda", weight = 1, type = "item", image = "vu_soda.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "Soda."},
vu_juice = {name = "vu_juice", label = "Juice", weight = 1, type = "item", image = "vu_juice.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "Juice."},
vu_coconutcream = {name = "vu_coconutcream", label = "Coconut Cream", weight = 1, type = "item", image = "vu_coconutcream.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "Coconut Cream."},
-- Snacks
vu_cleanbowl = {name = "vu_cleanbowl", label = "Clean Bowl", weight = 1, type = "item", image = "vu_cleanbowl.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "Clean bowl to put food into."},
vu_dirtybowl = {name = "vu_dirtybowl", label = "Dirty Bowl", weight = 1, type = "item", image = "vu_dirtybowl.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "Dirty bowl ready to be cleaned."},
vu_beanbowl = {name = "vu_beanbowl", label = "Bean Bowl", weight = 1, type = "item", image = "vu_beanbowl.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "Bean bowl ready to be eaten."},
vu_nutbowl = {name = "vu_nutbowl", label = "Nut Bowl", weight = 1, type = "item", image = "vu_nutbowl.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "Nut bowl ready to be eaten."},
vu_beans = {name = "vu_beans", label = "Beans", weight = 1, type = "item", image = "vu_beans.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "Beans to put into a clean bowl."},
vu_nuts = {name = "vu_nuts", label = "Nuts", weight = 1, type = "item", image = "vu_nuts.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "Nuts to put into a clean bowl."},
-- Drinks
vu_cleanshortglass = {name = "vu_cleanshortglass", label = "Clean Short Glass", weight = 1, type = "item", image = "vu_cleanshortglass.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "Clean short glass ready to be filled up with a drink of your choice."},
vu_dirtyshortglass = {name = "vu_dirtyshortglass", label = "Dirty Short Glass", weight = 1, type = "item", image = "vu_dirtyshortglass.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "Dirty short glass ready to be cleaned."},
vu_cleantallglass = {name = "vu_cleantallglass", label = "Clean Tall Glass", weight = 1, type = "item", image = "vu_cleantallglass.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "Clean tall glass ready to be filled up with a drink of your choice."},
vu_dirtytallglass = {name = "vu_dirtytallglass", label = "Dirty Tall Glass", weight = 1, type = "item", image = "vu_dirtytallglass.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "Dirty tall glass ready to be cleaned."},
vu_cleancocktailglass = {name = "vu_cleancocktailglass", label = "Clean Cocktail Glass", weight = 1, type = "item", image = "vu_cleancocktailglass.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "Clean cocktail glass ready to be filled up with a drink of your choice."},
vu_dirtycocktailglass = {name = "vu_dirtycocktailglass", label = "Dirty Cocktail Glass", weight = 1, type = "item", image = "vu_dirtycocktailglass.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "Dirty cocktail glass ready to be cleaned."},
vu_rhumbottle = {name = "vu_rhumbottle", label = "Rhum Glass", weight = 1, type = "item", image = "vu_rhumbottle.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "A bottle of fine rhum."},
vu_tequilabottle = {name = "vu_tequilabottle", label = "Tequila Glass", weight = 1, type = "item", image = "vu_tequilabottle.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "A premium bottle of tequila."},
vu_vodkabottle = {name = "vu_vodkabottle", label = "Vodka Glass", weight = 1, type = "item", image = "vu_vodkabottle.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "A crisp and clean vodka bottle, perfect for mixing or enjoying straight."},
vu_whiskeybottle = {name = "vu_whiskeybottle", label = "Whiskey Glass", weight = 1, type = "item", image = "vu_whiskeybottle.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "A smooth bottle of aged whiskey."},
vu_mojitodrink = {name = "vu_mojitodrink", label = "Mojito Cocktail", weight = 1, type = "item", image = "vu_mojitodrink.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "A refreshing cocktail made with rum, mint, lime, sugar, and soda water."},
vu_pinacoladadrink = {name = "vu_pinacoladadrink", label = "Piña Colada", weight = 1, type = "item", image = "vu_pinacoladadrink.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "A tropical mix of rum, pineapple, and coconut cream over ice."},
vu_tequilasunrisedrink = {name = "vu_tequilasunrisedrink", label = "Tequila Sunrise", weight = 1, type = "item", image = "vu_tequilasunrisedrink.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "A vibrant cocktail with tequila, citrus juice, and a hint of sweetness."},
vu_unicornblissdrink = {name = "vu_unicornblissdrink", label = "Unicorn Bliss", weight = 1, type = "item", image = "vu_unicornblissdrink.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "A smooth vodka cocktail with citrus juice and a hint of lemon."},
vu_lossantosdrink = {name = "vu_lossantosdrink", label = "Los Santos", weight = 1, type = "item", image = "vu_lossantosdrink.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "A smooth vodka cocktail with citrus juice and a hint of lemon."},
vu_paletobaydrink = {name = "vu_paletobaydrink", label = "Paleto Bay", weight = 1, type = "item", image = "vu_paletobaydrink.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "A smooth vodka cocktail with citrus juice and a hint of lemon."},
vu_rhumdrink = {name = "vu_rhumdrink", label = "Rhum Drink", weight = 1, type = "item", image = "vu_rhumdrink.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "A rich and flavorful cocktail crafted with premium rhum."},
vu_tequiladrink = {name = "vu_tequiladrink", label = "Tequila Shot", weight = 1, type = "item", image = "vu_tequiladrink.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "A strong and smooth tequila shot."},
vu_whiskeydrink = {name = "vu_whiskeydrink", label = "Whiskey Glass", weight = 1, type = "item", image = "vu_whiskeydrink.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "A fine glass of aged whiskey, perfect for sipping and enjoying."},
vu_vodkadrink = {name = "vu_vodkadrink", label = "Vodka Glass", weight = 1, type = "item", image = "vu_vodkadrink.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "A crisp and clean glass of vodka, best served chilled."},
vu_lossantos = {name = "vu_lossantos", label = "Los Santos", weight = 1, type = "item", image = "vu_lossantos.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "A signature city-inspired cocktail with a unique blend of flavors."},
vu_paletobay = {name = "vu_paletobay", label = "Paleto Bay", weight = 1, type = "item", image = "vu_paletobay.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "A tropical and smooth drink inspired by the coastal town of Paleto Bay."},
-- Cutting Table
vu_rawlime = {name = "vu_rawlime", label = "Raw Lime", weight = 1, type = "item", image = "vu_rawlime.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "Raw Lime."},
vu_slicedlime = {name = "vu_slicedlime", label = "Sliced Lime", weight = 1, type = "item", image = "vu_slicedlime.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "Sliced Lime."},
vu_rawlemon = {name = "vu_rawlemon", label = "Raw Lemon", weight = 1, type = "item", image = "vu_rawlemon.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "Raw Lemon."},
vu_slicedlemon = {name = "vu_slicedlemon", label = "Sliced Lemon", weight = 1, type = "item", image = "vu_slicedlemon.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "Sliced Lemon."},
vu_rawstrawberry = {name = "vu_rawstrawberry", label = "Raw Strawberry", weight = 1, type = "item", image = "vu_rawstrawberry.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "Raw Strawberry."},
vu_slicedstrawberry = {name = "vu_slicedstrawberry", label = "Sliced Strawberry", weight = 1, type = "item", image = "vu_slicedstrawberry.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "Sliced Strawberry."},
vu_rawmint = {name = "vu_rawmint", label = "Raw Mint", weight = 1, type = "item", image = "vu_rawmint.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "Raw mint."},
vu_slicedmint = {name = "vu_slicedmint", label = "Sliced Mint", weight = 1, type = "item", image = "vu_slicedmint.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "Sliced mint."},
Add the following into:
qs-inventory\shared\items.lua
-- Other
['vu_ticket'] = {['name'] = 'vu_ticket', ['label'] = 'Ticket - Vanilla Unicorn', ['weight'] = 100, ['type'] = 'item', ['image'] = 'vu_ticket.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'Vanilla unicorn ticket.'},
['vu_cleansponge'] = {['name'] = 'vu_cleansponge', ['label'] = 'Clean Sponge', ['weight'] = 100, ['type'] = 'item', ['image'] = 'vu_cleansponge.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'Clean sponge which is ready for some cleaning!'},
['vu_dirtysponge'] = {['name'] = 'vu_dirtysponge', ['label'] = 'Dirty Sponge', ['weight'] = 100, ['type'] = 'item', ['image'] = 'vu_dirtysponge.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'Dirty sponge which needs to be cleaned!'},
['vu_redwoodcigpack'] = {['name'] = 'vu_redwoodcigpack', ['label'] = 'Redwood Cigarette Pack', ['weight'] = 100, ['type'] = 'item', ['image'] = 'vu_redwoodcigpack.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'A pack of premium Redwood cigarettes, the favorite brand of Vinewood elites.'},
['vu_redwoodcigsingle'] = {['name'] = 'vu_redwoodcigsingle', ['label'] = 'Redwood Cigarette', ['weight'] = 100, ['type'] = 'item', ['image'] = 'vu_redwoodcigsingle.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'A single Redwood cigarette, smooth and satisfying.'},
['vu_estanciacigpack'] = {['name'] = 'vu_estanciacigpack', ['label'] = 'Estancia Cigarette Pack', ['weight'] = 100, ['type'] = 'item', ['image'] = 'vu_estanciacigpack.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'A pack of Estancia cigarettes, known for their bold and rich flavor.'},
['vu_estanciacigsingle'] = {['name'] = 'vu_estanciacigsingle', ['label'] = 'Estancia Cigarette', ['weight'] = 100, ['type'] = 'item', ['image'] = 'vu_estanciacigsingle.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'A single Estancia cigarette, a strong hit for those who crave intensity.'},
['vu_sugar'] = {['name'] = 'vu_sugar', ['label'] = 'Sugar', ['weight'] = 100, ['type'] = 'item', ['image'] = 'vu_sugar.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'Sugar.'},
['vu_ice'] = {['name'] = 'vu_ice', ['label'] = 'Ice', ['weight'] = 100, ['type'] = 'item', ['image'] = 'vu_ice.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'Ice ready to cool your drink!'},
['vu_soda'] = {['name'] = 'vu_soda', ['label'] = 'Soda', ['weight'] = 100, ['type'] = 'item', ['image'] = 'vu_soda.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'Soda.'},
['vu_juice'] = {['name'] = 'vu_juice', ['label'] = 'Juice', ['weight'] = 100, ['type'] = 'item', ['image'] = 'vu_juice.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'Juice.'},
['vu_coconutcream'] = {['name'] = 'vu_coconutcream', ['label'] = 'Coconut Cream', ['weight'] = 100, ['type'] = 'item', ['image'] = 'vu_coconutcream.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'Coconut Cream.'},
-- Snacks
['vu_cleanbowl'] = {['name'] = 'vu_cleanbowl', ['label'] = 'Clean Bowl', ['weight'] = 100, ['type'] = 'item', ['image'] = 'vu_cleanbowl.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'Clean bowl to put food into.'},
['vu_dirtybowl'] = {['name'] = 'vu_dirtybowl', ['label'] = 'Dirty Bowl', ['weight'] = 100, ['type'] = 'item', ['image'] = 'vu_dirtybowl.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'Dirty bowl ready to be cleaned.'},
['vu_beanbowl'] = {['name'] = 'vu_beanbowl', ['label'] = 'Bean Bowl', ['weight'] = 100, ['type'] = 'item', ['image'] = 'vu_beanbowl.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'Bean bowl ready to be eaten.'},
['vu_nutbowl'] = {['name'] = 'vu_nutbowl', ['label'] = 'Nut Bowl', ['weight'] = 100, ['type'] = 'item', ['image'] = 'vu_nutbowl.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'Nut bowl ready to be eaten.'},
['vu_beans'] = {['name'] = 'vu_beans', ['label'] = 'Beans', ['weight'] = 100, ['type'] = 'item', ['image'] = 'vu_beans.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'Beans to put into a clean bowl.'},
['vu_nuts'] = {['name'] = 'vu_nuts', ['label'] = 'Nuts', ['weight'] = 100, ['type'] = 'item', ['image'] = 'vu_nuts.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'Nuts to put into a clean bowl.'},
-- Drinks
['vu_cleanshortglass'] = {['name'] = 'vu_cleanshortglass', ['label'] = 'Clean Short Glass', ['weight'] = 100, ['type'] = 'item', ['image'] = 'vu_cleanshortglass.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'Clean short glass ready to be filled up with a drink of your choice.'},
['vu_dirtyshortglass'] = {['name'] = 'vu_dirtyshortglass', ['label'] = 'Dirty Short Glass', ['weight'] = 100, ['type'] = 'item', ['image'] = 'vu_dirtyshortglass.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'Dirty short glass ready to be cleaned.'},
['vu_cleantallglass'] = {['name'] = 'vu_cleantallglass', ['label'] = 'Clean Tall Glass', ['weight'] = 100, ['type'] = 'item', ['image'] = 'vu_cleantallglass.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'Clean tall glass ready to be filled up with a drink of your choice.'},
['vu_dirtytallglass'] = {['name'] = 'vu_dirtytallglass', ['label'] = 'Dirty Tall Glass', ['weight'] = 100, ['type'] = 'item', ['image'] = 'vu_dirtytallglass.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'Dirty tall glass ready to be cleaned.'},
['vu_cleancocktailglass'] = {['name'] = 'vu_cleancocktailglass', ['label'] = 'Clean Cocktail Glass', ['weight'] = 100, ['type'] = 'item', ['image'] = 'vu_cleancocktailglass.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'Clean cocktail glass ready to be filled up with a drink of your choice.'},
['vu_dirtycocktailglass'] = {['name'] = 'vu_dirtycocktailglass', ['label'] = 'Dirty Cocktail Glass', ['weight'] = 100, ['type'] = 'item', ['image'] = 'vu_dirtycocktailglass.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'Dirty cocktail glass ready to be cleaned.'},
['vu_rhumbottle'] = {['name'] = 'vu_rhumbottle', ['label'] = 'Rhum Glass', ['weight'] = 100, ['type'] = 'item', ['image'] = 'vu_rhumbottle.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'A bottle of fine rhum.'},
['vu_tequilabottle'] = {['name'] = 'vu_tequilabottle', ['label'] = 'Tequila Glass', ['weight'] = 100, ['type'] = 'item', ['image'] = 'vu_tequilabottle.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'A premium bottle of tequila.'},
['vu_vodkabottle'] = {['name'] = 'vu_vodkabottle', ['label'] = 'Vodka Glass', ['weight'] = 100, ['type'] = 'item', ['image'] = 'vu_vodkabottle.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'A crisp and clean vodka bottle, perfect for mixing or enjoying straight.'},
['vu_whiskeybottle'] = {['name'] = 'vu_whiskeybottle', ['label'] = 'Whiskey Glass', ['weight'] = 100, ['type'] = 'item', ['image'] = 'vu_whiskeybottle.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'A smooth bottle of aged whiskey.'},
['vu_mojitodrink'] = {['name'] = 'vu_mojitodrink', ['label'] = 'Mojito Cocktail', ['weight'] = 100, ['type'] = 'item', ['image'] = 'vu_mojitodrink.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'A refreshing cocktail made with rum, mint, lime, sugar, and soda water.'},
['vu_pinacoladadrink'] = {['name'] = 'vu_pinacoladadrink', ['label'] = 'Piña Colada', ['weight'] = 100, ['type'] = 'item', ['image'] = 'vu_pinacoladadrink.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'A tropical mix of rum, pineapple, and coconut cream over ice.'},
['vu_tequilasunrisedrink'] = {['name'] = 'vu_tequilasunrisedrink', ['label'] = 'Tequila Sunrise', ['weight'] = 100, ['type'] = 'item', ['image'] = 'vu_tequilasunrisedrink.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'A vibrant cocktail with tequila, citrus juice, and a hint of sweetness.'},
['vu_unicornblissdrink'] = {['name'] = 'vu_unicornblissdrink', ['label'] = 'Unicorn Bliss', ['weight'] = 100, ['type'] = 'item', ['image'] = 'vu_unicornblissdrink.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'A smooth vodka cocktail with citrus juice and a hint of lemon.'},
['vu_lossantosdrink'] = {['name'] = 'vu_lossantosdrink', ['label'] = 'Los Santos', ['weight'] = 100, ['type'] = 'item', ['image'] = 'vu_lossantosdrink.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'A smooth vodka cocktail with citrus juice and a hint of lemon.'},
['vu_paletobaydrink'] = {['name'] = 'vu_paletobaydrink', ['label'] = 'Paleto Bay', ['weight'] = 100, ['type'] = 'item', ['image'] = 'vu_paletobaydrink.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'A smooth vodka cocktail with citrus juice and a hint of lemon.'},
['vu_rhumdrink'] = {['name'] = 'vu_rhumdrink', ['label'] = 'Rhum Drink', ['weight'] = 100, ['type'] = 'item', ['image'] = 'vu_rhumdrink.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'A rich and flavorful cocktail crafted with premium rhum.'},
['vu_tequiladrink'] = {['name'] = 'vu_tequiladrink', ['label'] = 'Tequila Shot', ['weight'] = 100, ['type'] = 'item', ['image'] = 'vu_tequiladrink.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'A strong and smooth tequila shot.'},
['vu_whiskeydrink'] = {['name'] = 'vu_whiskeydrink', ['label'] = 'Whiskey Glass', ['weight'] = 100, ['type'] = 'item', ['image'] = 'vu_whiskeydrink.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'A fine glass of aged whiskey, perfect for sipping and enjoying.'},
['vu_vodkadrink'] = {['name'] = 'vu_vodkadrink', ['label'] = 'Vodka Glass', ['weight'] = 100, ['type'] = 'item', ['image'] = 'vu_vodkadrink.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'A crisp and clean glass of vodka, best served chilled.'},
['vu_lossantos'] = {['name'] = 'vu_lossantos', ['label'] = 'Los Santos', ['weight'] = 100, ['type'] = 'item', ['image'] = 'vu_lossantos.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'A signature city-inspired cocktail with a unique blend of flavors.'},
['vu_paletobay'] = {['name'] = 'vu_paletobay', ['label'] = 'Paleto Bay', ['weight'] = 100, ['type'] = 'item', ['image'] = 'vu_paletobay.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'A tropical and smooth drink inspired by the coastal town of Paleto Bay.'},
-- Cutting Table
['vu_rawlime'] = {['name'] = 'vu_rawlime', ['label'] = 'Raw Lime', ['weight'] = 100, ['type'] = 'item', ['image'] = 'vu_rawlime.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'Raw Lime.'},
['vu_slicedlime'] = {['name'] = 'vu_slicedlime', ['label'] = 'Sliced Lime', ['weight'] = 100, ['type'] = 'item', ['image'] = 'vu_slicedlime.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'Sliced Lime.'},
['vu_rawlemon'] = {['name'] = 'vu_rawlemon', ['label'] = 'Raw Lemon', ['weight'] = 100, ['type'] = 'item', ['image'] = 'vu_rawlemon.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'Raw Lemon.'},
['vu_slicedlemon'] = {['name'] = 'vu_slicedlemon', ['label'] = 'Sliced Lemon', ['weight'] = 100, ['type'] = 'item', ['image'] = 'vu_slicedlemon.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'Sliced Lemon.'},
['vu_rawstrawberry'] = {['name'] = 'vu_rawstrawberry', ['label'] = 'Raw Strawberry', ['weight'] = 100, ['type'] = 'item', ['image'] = 'vu_rawstrawberry.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'Raw Strawberry.'},
['vu_slicedstrawberry'] = {['name'] = 'vu_slicedstrawberry', ['label'] = 'Sliced Strawberry', ['weight'] = 100, ['type'] = 'item', ['image'] = 'vu_slicedstrawberry.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'Sliced Strawberry.'},
['vu_rawmint'] = {['name'] = 'vu_rawmint', ['label'] = 'Raw Mint', ['weight'] = 100, ['type'] = 'item', ['image'] = 'vu_rawmint.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'Raw mint.'},
['vu_slicedmint'] = {['name'] = 'vu_slicedmint', ['label'] = 'Sliced Mint', ['weight'] = 100, ['type'] = 'item', ['image'] = 'vu_slicedmint.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'Sliced mint.'},
Add the following into:
qb-core\shared\items.lua
-- Other
vu_ticket = {name = "vu_ticket", label = "Ticket - Vanilla Unicorn", weight = 1, type = "item", image = "vu_ticket.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "Vanilla unicorn ticket."},
vu_cleansponge = {name = "vu_cleansponge", label = "Clean Sponge", weight = 1, type = "item", image = "vu_cleansponge.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "Clean sponge which is ready for some cleaning!"},
vu_dirtysponge = {name = "vu_dirtysponge", label = "Dirty Sponge", weight = 1, type = "item", image = "vu_dirtysponge.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "Dirty sponge which needs to be cleaned!"},
vu_redwoodcigpack = {name = "vu_redwoodcigpack", label = "Redwood Cigarette Pack", weight = 1, type = "item", image = "vu_redwoodcigpack.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "A pack of premium Redwood cigarettes, the favorite brand of Vinewood elites."},
vu_redwoodcigsingle = {name = "vu_redwoodcigsingle", label = "Redwood Cigarette", weight = 1, type = "item", image = "vu_redwoodcigsingle.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "A single Redwood cigarette, smooth and satisfying."},
vu_estanciacigpack = {name = "vu_estanciacigpack", label = "Estancia Cigarette Pack", weight = 1, type = "item", image = "vu_estanciacigpack.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "A pack of Estancia cigarettes, known for their bold and rich flavor."},
vu_estanciacigsingle = {name = "vu_estanciacigsingle", label = "Estancia Cigarette", weight = 1, type = "item", image = "vu_estanciacigsingle.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "A single Estancia cigarette, a strong hit for those who crave intensity."},
vu_sugar = {name = "vu_sugar", label = "Sugar", weight = 1, type = "item", image = "vu_sugar.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "Sugar."},
vu_ice = {name = "vu_ice", label = "Ice", weight = 1, type = "item", image = "vu_ice.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "Ice ready to cool your drink!"},
vu_soda = {name = "vu_soda", label = "Soda", weight = 1, type = "item", image = "vu_soda.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "Soda."},
vu_juice = {name = "vu_juice", label = "Juice", weight = 1, type = "item", image = "vu_juice.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "Juice."},
vu_coconutcream = {name = "vu_coconutcream", label = "Coconut Cream", weight = 1, type = "item", image = "vu_coconutcream.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "Coconut Cream."},
-- Snacks
vu_cleanbowl = {name = "vu_cleanbowl", label = "Clean Bowl", weight = 1, type = "item", image = "vu_cleanbowl.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "Clean bowl to put food into."},
vu_dirtybowl = {name = "vu_dirtybowl", label = "Dirty Bowl", weight = 1, type = "item", image = "vu_dirtybowl.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "Dirty bowl ready to be cleaned."},
vu_beanbowl = {name = "vu_beanbowl", label = "Bean Bowl", weight = 1, type = "item", image = "vu_beanbowl.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "Bean bowl ready to be eaten."},
vu_nutbowl = {name = "vu_nutbowl", label = "Nut Bowl", weight = 1, type = "item", image = "vu_nutbowl.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "Nut bowl ready to be eaten."},
vu_beans = {name = "vu_beans", label = "Beans", weight = 1, type = "item", image = "vu_beans.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "Beans to put into a clean bowl."},
vu_nuts = {name = "vu_nuts", label = "Nuts", weight = 1, type = "item", image = "vu_nuts.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "Nuts to put into a clean bowl."},
-- Drinks
vu_cleanshortglass = {name = "vu_cleanshortglass", label = "Clean Short Glass", weight = 1, type = "item", image = "vu_cleanshortglass.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "Clean short glass ready to be filled up with a drink of your choice."},
vu_dirtyshortglass = {name = "vu_dirtyshortglass", label = "Dirty Short Glass", weight = 1, type = "item", image = "vu_dirtyshortglass.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "Dirty short glass ready to be cleaned."},
vu_cleantallglass = {name = "vu_cleantallglass", label = "Clean Tall Glass", weight = 1, type = "item", image = "vu_cleantallglass.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "Clean tall glass ready to be filled up with a drink of your choice."},
vu_dirtytallglass = {name = "vu_dirtytallglass", label = "Dirty Tall Glass", weight = 1, type = "item", image = "vu_dirtytallglass.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "Dirty tall glass ready to be cleaned."},
vu_cleancocktailglass = {name = "vu_cleancocktailglass", label = "Clean Cocktail Glass", weight = 1, type = "item", image = "vu_cleancocktailglass.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "Clean cocktail glass ready to be filled up with a drink of your choice."},
vu_dirtycocktailglass = {name = "vu_dirtycocktailglass", label = "Dirty Cocktail Glass", weight = 1, type = "item", image = "vu_dirtycocktailglass.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "Dirty cocktail glass ready to be cleaned."},
vu_rhumbottle = {name = "vu_rhumbottle", label = "Rhum Glass", weight = 1, type = "item", image = "vu_rhumbottle.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "A bottle of fine rhum."},
vu_tequilabottle = {name = "vu_tequilabottle", label = "Tequila Glass", weight = 1, type = "item", image = "vu_tequilabottle.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "A premium bottle of tequila."},
vu_vodkabottle = {name = "vu_vodkabottle", label = "Vodka Glass", weight = 1, type = "item", image = "vu_vodkabottle.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "A crisp and clean vodka bottle, perfect for mixing or enjoying straight."},
vu_whiskeybottle = {name = "vu_whiskeybottle", label = "Whiskey Glass", weight = 1, type = "item", image = "vu_whiskeybottle.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "A smooth bottle of aged whiskey."},
vu_mojitodrink = {name = "vu_mojitodrink", label = "Mojito Cocktail", weight = 1, type = "item", image = "vu_mojitodrink.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "A refreshing cocktail made with rum, mint, lime, sugar, and soda water."},
vu_pinacoladadrink = {name = "vu_pinacoladadrink", label = "Piña Colada", weight = 1, type = "item", image = "vu_pinacoladadrink.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "A tropical mix of rum, pineapple, and coconut cream over ice."},
vu_tequilasunrisedrink = {name = "vu_tequilasunrisedrink", label = "Tequila Sunrise", weight = 1, type = "item", image = "vu_tequilasunrisedrink.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "A vibrant cocktail with tequila, citrus juice, and a hint of sweetness."},
vu_unicornblissdrink = {name = "vu_unicornblissdrink", label = "Unicorn Bliss", weight = 1, type = "item", image = "vu_unicornblissdrink.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "A smooth vodka cocktail with citrus juice and a hint of lemon."},
vu_lossantosdrink = {name = "vu_lossantosdrink", label = "Los Santos", weight = 1, type = "item", image = "vu_lossantosdrink.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "A smooth vodka cocktail with citrus juice and a hint of lemon."},
vu_paletobaydrink = {name = "vu_paletobaydrink", label = "Paleto Bay", weight = 1, type = "item", image = "vu_paletobaydrink.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "A smooth vodka cocktail with citrus juice and a hint of lemon."},
vu_rhumdrink = {name = "vu_rhumdrink", label = "Rhum Drink", weight = 1, type = "item", image = "vu_rhumdrink.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "A rich and flavorful cocktail crafted with premium rhum."},
vu_tequiladrink = {name = "vu_tequiladrink", label = "Tequila Shot", weight = 1, type = "item", image = "vu_tequiladrink.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "A strong and smooth tequila shot."},
vu_whiskeydrink = {name = "vu_whiskeydrink", label = "Whiskey Glass", weight = 1, type = "item", image = "vu_whiskeydrink.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "A fine glass of aged whiskey, perfect for sipping and enjoying."},
vu_vodkadrink = {name = "vu_vodkadrink", label = "Vodka Glass", weight = 1, type = "item", image = "vu_vodkadrink.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "A crisp and clean glass of vodka, best served chilled."},
vu_lossantos = {name = "vu_lossantos", label = "Los Santos", weight = 1, type = "item", image = "vu_lossantos.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "A signature city-inspired cocktail with a unique blend of flavors."},
vu_paletobay = {name = "vu_paletobay", label = "Paleto Bay", weight = 1, type = "item", image = "vu_paletobay.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "A tropical and smooth drink inspired by the coastal town of Paleto Bay."},
-- Cutting Table
vu_rawlime = {name = "vu_rawlime", label = "Raw Lime", weight = 1, type = "item", image = "vu_rawlime.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "Raw Lime."},
vu_slicedlime = {name = "vu_slicedlime", label = "Sliced Lime", weight = 1, type = "item", image = "vu_slicedlime.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "Sliced Lime."},
vu_rawlemon = {name = "vu_rawlemon", label = "Raw Lemon", weight = 1, type = "item", image = "vu_rawlemon.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "Raw Lemon."},
vu_slicedlemon = {name = "vu_slicedlemon", label = "Sliced Lemon", weight = 1, type = "item", image = "vu_slicedlemon.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "Sliced Lemon."},
vu_rawstrawberry = {name = "vu_rawstrawberry", label = "Raw Strawberry", weight = 1, type = "item", image = "vu_rawstrawberry.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "Raw Strawberry."},
vu_slicedstrawberry = {name = "vu_slicedstrawberry", label = "Sliced Strawberry", weight = 1, type = "item", image = "vu_slicedstrawberry.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "Sliced Strawberry."},
vu_rawmint = {name = "vu_rawmint", label = "Raw Mint", weight = 1, type = "item", image = "vu_rawmint.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "Raw mint."},
vu_slicedmint = {name = "vu_slicedmint", label = "Sliced Mint", weight = 1, type = "item", image = "vu_slicedmint.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "Sliced mint."},
Add the following into:
codem-inventory\config\itemlist.lua
-- Other
vu_ticket = {name = "vu_ticket", label = "Ticket - Vanilla Unicorn", weight = 1, type = "item", image = "vu_ticket.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "Vanilla unicorn ticket."},
vu_cleansponge = {name = "vu_cleansponge", label = "Clean Sponge", weight = 1, type = "item", image = "vu_cleansponge.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "Clean sponge which is ready for some cleaning!"},
vu_dirtysponge = {name = "vu_dirtysponge", label = "Dirty Sponge", weight = 1, type = "item", image = "vu_dirtysponge.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "Dirty sponge which needs to be cleaned!"},
vu_redwoodcigpack = {name = "vu_redwoodcigpack", label = "Redwood Cigarette Pack", weight = 1, type = "item", image = "vu_redwoodcigpack.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "A pack of premium Redwood cigarettes, the favorite brand of Vinewood elites."},
vu_redwoodcigsingle = {name = "vu_redwoodcigsingle", label = "Redwood Cigarette", weight = 1, type = "item", image = "vu_redwoodcigsingle.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "A single Redwood cigarette, smooth and satisfying."},
vu_estanciacigpack = {name = "vu_estanciacigpack", label = "Estancia Cigarette Pack", weight = 1, type = "item", image = "vu_estanciacigpack.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "A pack of Estancia cigarettes, known for their bold and rich flavor."},
vu_estanciacigsingle = {name = "vu_estanciacigsingle", label = "Estancia Cigarette", weight = 1, type = "item", image = "vu_estanciacigsingle.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "A single Estancia cigarette, a strong hit for those who crave intensity."},
vu_sugar = {name = "vu_sugar", label = "Sugar", weight = 1, type = "item", image = "vu_sugar.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "Sugar."},
vu_ice = {name = "vu_ice", label = "Ice", weight = 1, type = "item", image = "vu_ice.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "Ice ready to cool your drink!"},
vu_soda = {name = "vu_soda", label = "Soda", weight = 1, type = "item", image = "vu_soda.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "Soda."},
vu_juice = {name = "vu_juice", label = "Juice", weight = 1, type = "item", image = "vu_juice.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "Juice."},
vu_coconutcream = {name = "vu_coconutcream", label = "Coconut Cream", weight = 1, type = "item", image = "vu_coconutcream.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "Coconut Cream."},
-- Snacks
vu_cleanbowl = {name = "vu_cleanbowl", label = "Clean Bowl", weight = 1, type = "item", image = "vu_cleanbowl.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "Clean bowl to put food into."},
vu_dirtybowl = {name = "vu_dirtybowl", label = "Dirty Bowl", weight = 1, type = "item", image = "vu_dirtybowl.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "Dirty bowl ready to be cleaned."},
vu_beanbowl = {name = "vu_beanbowl", label = "Bean Bowl", weight = 1, type = "item", image = "vu_beanbowl.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "Bean bowl ready to be eaten."},
vu_nutbowl = {name = "vu_nutbowl", label = "Nut Bowl", weight = 1, type = "item", image = "vu_nutbowl.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "Nut bowl ready to be eaten."},
vu_beans = {name = "vu_beans", label = "Beans", weight = 1, type = "item", image = "vu_beans.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "Beans to put into a clean bowl."},
vu_nuts = {name = "vu_nuts", label = "Nuts", weight = 1, type = "item", image = "vu_nuts.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "Nuts to put into a clean bowl."},
-- Drinks
vu_cleanshortglass = {name = "vu_cleanshortglass", label = "Clean Short Glass", weight = 1, type = "item", image = "vu_cleanshortglass.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "Clean short glass ready to be filled up with a drink of your choice."},
vu_dirtyshortglass = {name = "vu_dirtyshortglass", label = "Dirty Short Glass", weight = 1, type = "item", image = "vu_dirtyshortglass.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "Dirty short glass ready to be cleaned."},
vu_cleantallglass = {name = "vu_cleantallglass", label = "Clean Tall Glass", weight = 1, type = "item", image = "vu_cleantallglass.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "Clean tall glass ready to be filled up with a drink of your choice."},
vu_dirtytallglass = {name = "vu_dirtytallglass", label = "Dirty Tall Glass", weight = 1, type = "item", image = "vu_dirtytallglass.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "Dirty tall glass ready to be cleaned."},
vu_cleancocktailglass = {name = "vu_cleancocktailglass", label = "Clean Cocktail Glass", weight = 1, type = "item", image = "vu_cleancocktailglass.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "Clean cocktail glass ready to be filled up with a drink of your choice."},
vu_dirtycocktailglass = {name = "vu_dirtycocktailglass", label = "Dirty Cocktail Glass", weight = 1, type = "item", image = "vu_dirtycocktailglass.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "Dirty cocktail glass ready to be cleaned."},
vu_rhumbottle = {name = "vu_rhumbottle", label = "Rhum Glass", weight = 1, type = "item", image = "vu_rhumbottle.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "A bottle of fine rhum."},
vu_tequilabottle = {name = "vu_tequilabottle", label = "Tequila Glass", weight = 1, type = "item", image = "vu_tequilabottle.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "A premium bottle of tequila."},
vu_vodkabottle = {name = "vu_vodkabottle", label = "Vodka Glass", weight = 1, type = "item", image = "vu_vodkabottle.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "A crisp and clean vodka bottle, perfect for mixing or enjoying straight."},
vu_whiskeybottle = {name = "vu_whiskeybottle", label = "Whiskey Glass", weight = 1, type = "item", image = "vu_whiskeybottle.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "A smooth bottle of aged whiskey."},
vu_mojitodrink = {name = "vu_mojitodrink", label = "Mojito Cocktail", weight = 1, type = "item", image = "vu_mojitodrink.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "A refreshing cocktail made with rum, mint, lime, sugar, and soda water."},
vu_pinacoladadrink = {name = "vu_pinacoladadrink", label = "Piña Colada", weight = 1, type = "item", image = "vu_pinacoladadrink.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "A tropical mix of rum, pineapple, and coconut cream over ice."},
vu_tequilasunrisedrink = {name = "vu_tequilasunrisedrink", label = "Tequila Sunrise", weight = 1, type = "item", image = "vu_tequilasunrisedrink.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "A vibrant cocktail with tequila, citrus juice, and a hint of sweetness."},
vu_unicornblissdrink = {name = "vu_unicornblissdrink", label = "Unicorn Bliss", weight = 1, type = "item", image = "vu_unicornblissdrink.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "A smooth vodka cocktail with citrus juice and a hint of lemon."},
vu_lossantosdrink = {name = "vu_lossantosdrink", label = "Los Santos", weight = 1, type = "item", image = "vu_lossantosdrink.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "A smooth vodka cocktail with citrus juice and a hint of lemon."},
vu_paletobaydrink = {name = "vu_paletobaydrink", label = "Paleto Bay", weight = 1, type = "item", image = "vu_paletobaydrink.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "A smooth vodka cocktail with citrus juice and a hint of lemon."},
vu_rhumdrink = {name = "vu_rhumdrink", label = "Rhum Drink", weight = 1, type = "item", image = "vu_rhumdrink.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "A rich and flavorful cocktail crafted with premium rhum."},
vu_tequiladrink = {name = "vu_tequiladrink", label = "Tequila Shot", weight = 1, type = "item", image = "vu_tequiladrink.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "A strong and smooth tequila shot."},
vu_whiskeydrink = {name = "vu_whiskeydrink", label = "Whiskey Glass", weight = 1, type = "item", image = "vu_whiskeydrink.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "A fine glass of aged whiskey, perfect for sipping and enjoying."},
vu_vodkadrink = {name = "vu_vodkadrink", label = "Vodka Glass", weight = 1, type = "item", image = "vu_vodkadrink.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "A crisp and clean glass of vodka, best served chilled."},
vu_lossantos = {name = "vu_lossantos", label = "Los Santos", weight = 1, type = "item", image = "vu_lossantos.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "A signature city-inspired cocktail with a unique blend of flavors."},
vu_paletobay = {name = "vu_paletobay", label = "Paleto Bay", weight = 1, type = "item", image = "vu_paletobay.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "A tropical and smooth drink inspired by the coastal town of Paleto Bay."},
-- Cutting Table
vu_rawlime = {name = "vu_rawlime", label = "Raw Lime", weight = 1, type = "item", image = "vu_rawlime.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "Raw Lime."},
vu_slicedlime = {name = "vu_slicedlime", label = "Sliced Lime", weight = 1, type = "item", image = "vu_slicedlime.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "Sliced Lime."},
vu_rawlemon = {name = "vu_rawlemon", label = "Raw Lemon", weight = 1, type = "item", image = "vu_rawlemon.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "Raw Lemon."},
vu_slicedlemon = {name = "vu_slicedlemon", label = "Sliced Lemon", weight = 1, type = "item", image = "vu_slicedlemon.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "Sliced Lemon."},
vu_rawstrawberry = {name = "vu_rawstrawberry", label = "Raw Strawberry", weight = 1, type = "item", image = "vu_rawstrawberry.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "Raw Strawberry."},
vu_slicedstrawberry = {name = "vu_slicedstrawberry", label = "Sliced Strawberry", weight = 1, type = "item", image = "vu_slicedstrawberry.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "Sliced Strawberry."},
vu_rawmint = {name = "vu_rawmint", label = "Raw Mint", weight = 1, type = "item", image = "vu_rawmint.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "Raw mint."},
vu_slicedmint = {name = "vu_slicedmint", label = "Sliced Mint", weight = 1, type = "item", image = "vu_slicedmint.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "Sliced mint."},
Add the following into your database:
INSERT INTO items (name, label, weight, rare, can_remove, desc) VALUES
-- Other
('vu_ticket', 'Ticket - Vanilla Unicorn', 50, 0, 1, 'Vanilla unicorn ticket.'),
('vu_cleansponge', 'Clean Sponge', 50, 0, 1, 'Clean sponge which is ready for some cleaning!'),
('vu_dirtysponge', 'Dirty Sponge', 50, 0, 1, 'Dirty sponge which needs to be cleaned!'),
('vu_redwoodcigpack', 'Redwood Cigarette Pack', 50, 0, 1, 'A pack of premium Redwood cigarettes, the favorite brand of Vinewood elites.'),
('vu_redwoodcigsingle', 'Redwood Cigarette', 50, 0, 1, 'A single Redwood cigarette, smooth and satisfying.'),
('vu_estanciacigpack', 'Estancia Cigarette Pack', 50, 0, 1, 'A pack of Estancia cigarettes, known for their bold and rich flavor.'),
('vu_estanciacigsingle', 'Estancia Cigarette', 50, 0, 1, 'A single Estancia cigarette, a strong hit for those who crave intensity.'),
('vu_sugar', 'Sugar', 50, 0, 1, 'Sugar.'),
('vu_ice', 'Ice', 50, 0, 1, 'Ice ready to cool your drink!'),
('vu_soda', 'Soda', 50, 0, 1, 'Soda.'),
('vu_juice', 'Juice', 50, 0, 1, 'Juice.'),
('vu_coconutcream', 'Coconut Cream', 50, 0, 1, 'Coconut Cream.'),
-- Snacks
('vu_cleanbowl', 'Clean Bowl', 50, 0, 1, 'Clean bowl to put food into.'),
('vu_dirtybowl', 'Dirty Bowl', 50, 0, 1, 'Dirty bowl ready to be cleaned.'),
('vu_beanbowl', 'Bean Bowl', 50, 0, 1, 'Bean bowl ready to be eaten.'),
('vu_nutbowl', 'Nut Bowl', 50, 0, 1, 'Nut bowl ready to be eaten.'),
('vu_beans', 'Beans', 50, 0, 1, 'Beans to put into a clean bowl.'),
('vu_nuts', 'Nuts', 50, 0, 1, 'Nuts to put into a clean bowl.'),
-- Drinks
('vu_cleanshortglass', 'Clean Short Glass', 50, 0, 1, 'Clean short glass ready to be filled up with a drink of your choice.'),
('vu_dirtyshortglass', 'Dirty Short Glass', 50, 0, 1, 'Dirty short glass ready to be cleaned.'),
('vu_cleantallglass', 'Clean Tall Glass', 50, 0, 1, 'Clean tall glass ready to be filled up with a drink of your choice.'),
('vu_dirtytallglass', 'Dirty Tall Glass', 50, 0, 1, 'Dirty tall glass ready to be cleaned.'),
('vu_cleancocktailglass', 'Clean Cocktail Glass', 50, 0, 1, 'Clean cocktail glass ready to be filled up with a drink of your choice.'),
('vu_dirtycocktailglass', 'Dirty Cocktail Glass', 50, 0, 1, 'Dirty cocktail glass ready to be cleaned.'),
('vu_rhumbottle', 'Rhum Glass', 50, 0, 1, 'A bottle of fine rhum.'),
('vu_tequilabottle', 'Tequila Glass', 50, 0, 1, 'A premium bottle of tequila.'),
('vu_vodkabottle', 'Vodka Glass', 50, 0, 1, 'A crisp and clean vodka bottle, perfect for mixing or enjoying straight.'),
('vu_whiskeybottle', 'Whiskey Glass', 50, 0, 1, 'A smooth bottle of aged whiskey.'),
('vu_mojitodrink', 'Mojito Cocktail', 50, 0, 1, 'A refreshing cocktail made with rum, mint, lime, sugar, and soda water.'),
('vu_pinacoladadrink', 'Piña Colada', 50, 0, 1, 'A tropical mix of rum, pineapple, and coconut cream over ice.'),
('vu_tequilasunrisedrink', 'Tequila Sunrise', 50, 0, 1, 'A vibrant cocktail with tequila, citrus juice, and a hint of sweetness.'),
('vu_unicornblissdrink', 'Unicorn Bliss', 50, 0, 1, 'A smooth vodka cocktail with citrus juice and a hint of lemon.'),
('vu_lossantosdrink', 'Los Santos', 50, 0, 1, 'A smooth vodka cocktail with citrus juice and a hint of lemon.'),
('vu_paletobaydrink', 'Paleto Bay', 50, 0, 1, 'A smooth vodka cocktail with citrus juice and a hint of lemon.'),
('vu_rhumdrink', 'Rhum Drink', 50, 0, 1, 'A rich and flavorful cocktail crafted with premium rhum.'),
('vu_tequiladrink', 'Tequila Shot', 50, 0, 1, 'A strong and smooth tequila shot.'),
('vu_whiskeydrink', 'Whiskey Glass', 50, 0, 1, 'A fine glass of aged whiskey, perfect for sipping and enjoying.'),
('vu_vodkadrink', 'Vodka Glass', 50, 0, 1, 'A crisp and clean glass of vodka, best served chilled.'),
('vu_lossantos', 'Los Santos', 50, 0, 1, 'A signature city-inspired cocktail with a unique blend of flavors.'),
('vu_paletobay', 'Paleto Bay', 50, 0, 1, 'A tropical and smooth drink inspired by the coastal town of Paleto Bay.'),
-- Cutting Table
('vu_rawlime', 'Raw Lime', 50, 0, 1, 'Raw Lime.'),
('vu_slicedlime', 'Sliced Lime', 50, 0, 1, 'Sliced Lime.'),
('vu_rawlemon', 'Raw Lemon', 50, 0, 1, 'Raw Lemon.'),
('vu_slicedlemon', 'Sliced Lemon', 50, 0, 1, 'Sliced Lemon.'),
('vu_rawstrawberry', 'Raw Strawberry', 50, 0, 1, 'Raw Strawberry.'),
('vu_slicedstrawberry', 'Sliced Strawberry', 50, 0, 1, 'Sliced Strawberry.'),
('vu_rawmint', 'Raw Mint', 50, 0, 1, 'Raw mint.'),
('vu_slicedmint', 'Sliced Mint', 50, 0, 1, 'Sliced mint.');
Add the following into:
origen_inventory\config\items.lua
-- Other
['vu_ticket'] = {['name'] = 'vu_ticket', ['label'] = 'Ticket - Vanilla Unicorn', ['weight'] = 100, ['type'] = 'item', ['image'] = 'vu_ticket.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'Vanilla unicorn ticket.'},
['vu_cleansponge'] = {['name'] = 'vu_cleansponge', ['label'] = 'Clean Sponge', ['weight'] = 100, ['type'] = 'item', ['image'] = 'vu_cleansponge.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'Clean sponge which is ready for some cleaning!'},
['vu_dirtysponge'] = {['name'] = 'vu_dirtysponge', ['label'] = 'Dirty Sponge', ['weight'] = 100, ['type'] = 'item', ['image'] = 'vu_dirtysponge.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'Dirty sponge which needs to be cleaned!'},
['vu_redwoodcigpack'] = {['name'] = 'vu_redwoodcigpack', ['label'] = 'Redwood Cigarette Pack', ['weight'] = 100, ['type'] = 'item', ['image'] = 'vu_redwoodcigpack.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'A pack of premium Redwood cigarettes, the favorite brand of Vinewood elites.'},
['vu_redwoodcigsingle'] = {['name'] = 'vu_redwoodcigsingle', ['label'] = 'Redwood Cigarette', ['weight'] = 100, ['type'] = 'item', ['image'] = 'vu_redwoodcigsingle.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'A single Redwood cigarette, smooth and satisfying.'},
['vu_estanciacigpack'] = {['name'] = 'vu_estanciacigpack', ['label'] = 'Estancia Cigarette Pack', ['weight'] = 100, ['type'] = 'item', ['image'] = 'vu_estanciacigpack.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'A pack of Estancia cigarettes, known for their bold and rich flavor.'},
['vu_estanciacigsingle'] = {['name'] = 'vu_estanciacigsingle', ['label'] = 'Estancia Cigarette', ['weight'] = 100, ['type'] = 'item', ['image'] = 'vu_estanciacigsingle.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'A single Estancia cigarette, a strong hit for those who crave intensity.'},
['vu_sugar'] = {['name'] = 'vu_sugar', ['label'] = 'Sugar', ['weight'] = 100, ['type'] = 'item', ['image'] = 'vu_sugar.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'Sugar.'},
['vu_ice'] = {['name'] = 'vu_ice', ['label'] = 'Ice', ['weight'] = 100, ['type'] = 'item', ['image'] = 'vu_ice.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'Ice ready to cool your drink!'},
['vu_soda'] = {['name'] = 'vu_soda', ['label'] = 'Soda', ['weight'] = 100, ['type'] = 'item', ['image'] = 'vu_soda.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'Soda.'},
['vu_juice'] = {['name'] = 'vu_juice', ['label'] = 'Juice', ['weight'] = 100, ['type'] = 'item', ['image'] = 'vu_juice.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'Juice.'},
['vu_coconutcream'] = {['name'] = 'vu_coconutcream', ['label'] = 'Coconut Cream', ['weight'] = 100, ['type'] = 'item', ['image'] = 'vu_coconutcream.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'Coconut Cream.'},
-- Snacks
['vu_cleanbowl'] = {['name'] = 'vu_cleanbowl', ['label'] = 'Clean Bowl', ['weight'] = 100, ['type'] = 'item', ['image'] = 'vu_cleanbowl.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'Clean bowl to put food into.'},
['vu_dirtybowl'] = {['name'] = 'vu_dirtybowl', ['label'] = 'Dirty Bowl', ['weight'] = 100, ['type'] = 'item', ['image'] = 'vu_dirtybowl.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'Dirty bowl ready to be cleaned.'},
['vu_beanbowl'] = {['name'] = 'vu_beanbowl', ['label'] = 'Bean Bowl', ['weight'] = 100, ['type'] = 'item', ['image'] = 'vu_beanbowl.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'Bean bowl ready to be eaten.'},
['vu_nutbowl'] = {['name'] = 'vu_nutbowl', ['label'] = 'Nut Bowl', ['weight'] = 100, ['type'] = 'item', ['image'] = 'vu_nutbowl.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'Nut bowl ready to be eaten.'},
['vu_beans'] = {['name'] = 'vu_beans', ['label'] = 'Beans', ['weight'] = 100, ['type'] = 'item', ['image'] = 'vu_beans.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'Beans to put into a clean bowl.'},
['vu_nuts'] = {['name'] = 'vu_nuts', ['label'] = 'Nuts', ['weight'] = 100, ['type'] = 'item', ['image'] = 'vu_nuts.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'Nuts to put into a clean bowl.'},
-- Drinks
['vu_cleanshortglass'] = {['name'] = 'vu_cleanshortglass', ['label'] = 'Clean Short Glass', ['weight'] = 100, ['type'] = 'item', ['image'] = 'vu_cleanshortglass.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'Clean short glass ready to be filled up with a drink of your choice.'},
['vu_dirtyshortglass'] = {['name'] = 'vu_dirtyshortglass', ['label'] = 'Dirty Short Glass', ['weight'] = 100, ['type'] = 'item', ['image'] = 'vu_dirtyshortglass.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'Dirty short glass ready to be cleaned.'},
['vu_cleantallglass'] = {['name'] = 'vu_cleantallglass', ['label'] = 'Clean Tall Glass', ['weight'] = 100, ['type'] = 'item', ['image'] = 'vu_cleantallglass.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'Clean tall glass ready to be filled up with a drink of your choice.'},
['vu_dirtytallglass'] = {['name'] = 'vu_dirtytallglass', ['label'] = 'Dirty Tall Glass', ['weight'] = 100, ['type'] = 'item', ['image'] = 'vu_dirtytallglass.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'Dirty tall glass ready to be cleaned.'},
['vu_cleancocktailglass'] = {['name'] = 'vu_cleancocktailglass', ['label'] = 'Clean Cocktail Glass', ['weight'] = 100, ['type'] = 'item', ['image'] = 'vu_cleancocktailglass.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'Clean cocktail glass ready to be filled up with a drink of your choice.'},
['vu_dirtycocktailglass'] = {['name'] = 'vu_dirtycocktailglass', ['label'] = 'Dirty Cocktail Glass', ['weight'] = 100, ['type'] = 'item', ['image'] = 'vu_dirtycocktailglass.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'Dirty cocktail glass ready to be cleaned.'},
['vu_rhumbottle'] = {['name'] = 'vu_rhumbottle', ['label'] = 'Rhum Glass', ['weight'] = 100, ['type'] = 'item', ['image'] = 'vu_rhumbottle.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'A bottle of fine rhum.'},
['vu_tequilabottle'] = {['name'] = 'vu_tequilabottle', ['label'] = 'Tequila Glass', ['weight'] = 100, ['type'] = 'item', ['image'] = 'vu_tequilabottle.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'A premium bottle of tequila.'},
['vu_vodkabottle'] = {['name'] = 'vu_vodkabottle', ['label'] = 'Vodka Glass', ['weight'] = 100, ['type'] = 'item', ['image'] = 'vu_vodkabottle.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'A crisp and clean vodka bottle, perfect for mixing or enjoying straight.'},
['vu_whiskeybottle'] = {['name'] = 'vu_whiskeybottle', ['label'] = 'Whiskey Glass', ['weight'] = 100, ['type'] = 'item', ['image'] = 'vu_whiskeybottle.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'A smooth bottle of aged whiskey.'},
['vu_mojitodrink'] = {['name'] = 'vu_mojitodrink', ['label'] = 'Mojito Cocktail', ['weight'] = 100, ['type'] = 'item', ['image'] = 'vu_mojitodrink.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'A refreshing cocktail made with rum, mint, lime, sugar, and soda water.'},
['vu_pinacoladadrink'] = {['name'] = 'vu_pinacoladadrink', ['label'] = 'Piña Colada', ['weight'] = 100, ['type'] = 'item', ['image'] = 'vu_pinacoladadrink.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'A tropical mix of rum, pineapple, and coconut cream over ice.'},
['vu_tequilasunrisedrink'] = {['name'] = 'vu_tequilasunrisedrink', ['label'] = 'Tequila Sunrise', ['weight'] = 100, ['type'] = 'item', ['image'] = 'vu_tequilasunrisedrink.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'A vibrant cocktail with tequila, citrus juice, and a hint of sweetness.'},
['vu_unicornblissdrink'] = {['name'] = 'vu_unicornblissdrink', ['label'] = 'Unicorn Bliss', ['weight'] = 100, ['type'] = 'item', ['image'] = 'vu_unicornblissdrink.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'A smooth vodka cocktail with citrus juice and a hint of lemon.'},
['vu_lossantosdrink'] = {['name'] = 'vu_lossantosdrink', ['label'] = 'Los Santos', ['weight'] = 100, ['type'] = 'item', ['image'] = 'vu_lossantosdrink.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'A smooth vodka cocktail with citrus juice and a hint of lemon.'},
['vu_paletobaydrink'] = {['name'] = 'vu_paletobaydrink', ['label'] = 'Paleto Bay', ['weight'] = 100, ['type'] = 'item', ['image'] = 'vu_paletobaydrink.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'A smooth vodka cocktail with citrus juice and a hint of lemon.'},
['vu_rhumdrink'] = {['name'] = 'vu_rhumdrink', ['label'] = 'Rhum Drink', ['weight'] = 100, ['type'] = 'item', ['image'] = 'vu_rhumdrink.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'A rich and flavorful cocktail crafted with premium rhum.'},
['vu_tequiladrink'] = {['name'] = 'vu_tequiladrink', ['label'] = 'Tequila Shot', ['weight'] = 100, ['type'] = 'item', ['image'] = 'vu_tequiladrink.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'A strong and smooth tequila shot.'},
['vu_whiskeydrink'] = {['name'] = 'vu_whiskeydrink', ['label'] = 'Whiskey Glass', ['weight'] = 100, ['type'] = 'item', ['image'] = 'vu_whiskeydrink.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'A fine glass of aged whiskey, perfect for sipping and enjoying.'},
['vu_vodkadrink'] = {['name'] = 'vu_vodkadrink', ['label'] = 'Vodka Glass', ['weight'] = 100, ['type'] = 'item', ['image'] = 'vu_vodkadrink.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'A crisp and clean glass of vodka, best served chilled.'},
['vu_lossantos'] = {['name'] = 'vu_lossantos', ['label'] = 'Los Santos', ['weight'] = 100, ['type'] = 'item', ['image'] = 'vu_lossantos.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'A signature city-inspired cocktail with a unique blend of flavors.'},
['vu_paletobay'] = {['name'] = 'vu_paletobay', ['label'] = 'Paleto Bay', ['weight'] = 100, ['type'] = 'item', ['image'] = 'vu_paletobay.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'A tropical and smooth drink inspired by the coastal town of Paleto Bay.'},
-- Cutting Table
['vu_rawlime'] = {['name'] = 'vu_rawlime', ['label'] = 'Raw Lime', ['weight'] = 100, ['type'] = 'item', ['image'] = 'vu_rawlime.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'Raw Lime.'},
['vu_slicedlime'] = {['name'] = 'vu_slicedlime', ['label'] = 'Sliced Lime', ['weight'] = 100, ['type'] = 'item', ['image'] = 'vu_slicedlime.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'Sliced Lime.'},
['vu_rawlemon'] = {['name'] = 'vu_rawlemon', ['label'] = 'Raw Lemon', ['weight'] = 100, ['type'] = 'item', ['image'] = 'vu_rawlemon.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'Raw Lemon.'},
['vu_slicedlemon'] = {['name'] = 'vu_slicedlemon', ['label'] = 'Sliced Lemon', ['weight'] = 100, ['type'] = 'item', ['image'] = 'vu_slicedlemon.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'Sliced Lemon.'},
['vu_rawstrawberry'] = {['name'] = 'vu_rawstrawberry', ['label'] = 'Raw Strawberry', ['weight'] = 100, ['type'] = 'item', ['image'] = 'vu_rawstrawberry.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'Raw Strawberry.'},
['vu_slicedstrawberry'] = {['name'] = 'vu_slicedstrawberry', ['label'] = 'Sliced Strawberry', ['weight'] = 100, ['type'] = 'item', ['image'] = 'vu_slicedstrawberry.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'Sliced Strawberry.'},
['vu_rawmint'] = {['name'] = 'vu_rawmint', ['label'] = 'Raw Mint', ['weight'] = 100, ['type'] = 'item', ['image'] = 'vu_rawmint.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'Raw mint.'},
['vu_slicedmint'] = {['name'] = 'vu_slicedmint', ['label'] = 'Sliced Mint', ['weight'] = 100, ['type'] = 'item', ['image'] = 'vu_slicedmint.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'Sliced mint.'},
Add the following into:
items.lua in your framework script
-- Other
vu_ticket = {name = "vu_ticket", label = "Ticket - Vanilla Unicorn", weight = 1, type = "item", image = "vu_ticket.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "Vanilla unicorn ticket."},
vu_cleansponge = {name = "vu_cleansponge", label = "Clean Sponge", weight = 1, type = "item", image = "vu_cleansponge.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "Clean sponge which is ready for some cleaning!"},
vu_dirtysponge = {name = "vu_dirtysponge", label = "Dirty Sponge", weight = 1, type = "item", image = "vu_dirtysponge.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "Dirty sponge which needs to be cleaned!"},
vu_redwoodcigpack = {name = "vu_redwoodcigpack", label = "Redwood Cigarette Pack", weight = 1, type = "item", image = "vu_redwoodcigpack.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "A pack of premium Redwood cigarettes, the favorite brand of Vinewood elites."},
vu_redwoodcigsingle = {name = "vu_redwoodcigsingle", label = "Redwood Cigarette", weight = 1, type = "item", image = "vu_redwoodcigsingle.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "A single Redwood cigarette, smooth and satisfying."},
vu_estanciacigpack = {name = "vu_estanciacigpack", label = "Estancia Cigarette Pack", weight = 1, type = "item", image = "vu_estanciacigpack.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "A pack of Estancia cigarettes, known for their bold and rich flavor."},
vu_estanciacigsingle = {name = "vu_estanciacigsingle", label = "Estancia Cigarette", weight = 1, type = "item", image = "vu_estanciacigsingle.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "A single Estancia cigarette, a strong hit for those who crave intensity."},
vu_sugar = {name = "vu_sugar", label = "Sugar", weight = 1, type = "item", image = "vu_sugar.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "Sugar."},
vu_ice = {name = "vu_ice", label = "Ice", weight = 1, type = "item", image = "vu_ice.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "Ice ready to cool your drink!"},
vu_soda = {name = "vu_soda", label = "Soda", weight = 1, type = "item", image = "vu_soda.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "Soda."},
vu_juice = {name = "vu_juice", label = "Juice", weight = 1, type = "item", image = "vu_juice.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "Juice."},
vu_coconutcream = {name = "vu_coconutcream", label = "Coconut Cream", weight = 1, type = "item", image = "vu_coconutcream.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "Coconut Cream."},
-- Snacks
vu_cleanbowl = {name = "vu_cleanbowl", label = "Clean Bowl", weight = 1, type = "item", image = "vu_cleanbowl.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "Clean bowl to put food into."},
vu_dirtybowl = {name = "vu_dirtybowl", label = "Dirty Bowl", weight = 1, type = "item", image = "vu_dirtybowl.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "Dirty bowl ready to be cleaned."},
vu_beanbowl = {name = "vu_beanbowl", label = "Bean Bowl", weight = 1, type = "item", image = "vu_beanbowl.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "Bean bowl ready to be eaten."},
vu_nutbowl = {name = "vu_nutbowl", label = "Nut Bowl", weight = 1, type = "item", image = "vu_nutbowl.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "Nut bowl ready to be eaten."},
vu_beans = {name = "vu_beans", label = "Beans", weight = 1, type = "item", image = "vu_beans.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "Beans to put into a clean bowl."},
vu_nuts = {name = "vu_nuts", label = "Nuts", weight = 1, type = "item", image = "vu_nuts.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "Nuts to put into a clean bowl."},
-- Drinks
vu_cleanshortglass = {name = "vu_cleanshortglass", label = "Clean Short Glass", weight = 1, type = "item", image = "vu_cleanshortglass.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "Clean short glass ready to be filled up with a drink of your choice."},
vu_dirtyshortglass = {name = "vu_dirtyshortglass", label = "Dirty Short Glass", weight = 1, type = "item", image = "vu_dirtyshortglass.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "Dirty short glass ready to be cleaned."},
vu_cleantallglass = {name = "vu_cleantallglass", label = "Clean Tall Glass", weight = 1, type = "item", image = "vu_cleantallglass.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "Clean tall glass ready to be filled up with a drink of your choice."},
vu_dirtytallglass = {name = "vu_dirtytallglass", label = "Dirty Tall Glass", weight = 1, type = "item", image = "vu_dirtytallglass.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "Dirty tall glass ready to be cleaned."},
vu_cleancocktailglass = {name = "vu_cleancocktailglass", label = "Clean Cocktail Glass", weight = 1, type = "item", image = "vu_cleancocktailglass.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "Clean cocktail glass ready to be filled up with a drink of your choice."},
vu_dirtycocktailglass = {name = "vu_dirtycocktailglass", label = "Dirty Cocktail Glass", weight = 1, type = "item", image = "vu_dirtycocktailglass.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "Dirty cocktail glass ready to be cleaned."},
vu_rhumbottle = {name = "vu_rhumbottle", label = "Rhum Glass", weight = 1, type = "item", image = "vu_rhumbottle.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "A bottle of fine rhum."},
vu_tequilabottle = {name = "vu_tequilabottle", label = "Tequila Glass", weight = 1, type = "item", image = "vu_tequilabottle.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "A premium bottle of tequila."},
vu_vodkabottle = {name = "vu_vodkabottle", label = "Vodka Glass", weight = 1, type = "item", image = "vu_vodkabottle.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "A crisp and clean vodka bottle, perfect for mixing or enjoying straight."},
vu_whiskeybottle = {name = "vu_whiskeybottle", label = "Whiskey Glass", weight = 1, type = "item", image = "vu_whiskeybottle.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "A smooth bottle of aged whiskey."},
vu_mojitodrink = {name = "vu_mojitodrink", label = "Mojito Cocktail", weight = 1, type = "item", image = "vu_mojitodrink.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "A refreshing cocktail made with rum, mint, lime, sugar, and soda water."},
vu_pinacoladadrink = {name = "vu_pinacoladadrink", label = "Piña Colada", weight = 1, type = "item", image = "vu_pinacoladadrink.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "A tropical mix of rum, pineapple, and coconut cream over ice."},
vu_tequilasunrisedrink = {name = "vu_tequilasunrisedrink", label = "Tequila Sunrise", weight = 1, type = "item", image = "vu_tequilasunrisedrink.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "A vibrant cocktail with tequila, citrus juice, and a hint of sweetness."},
vu_unicornblissdrink = {name = "vu_unicornblissdrink", label = "Unicorn Bliss", weight = 1, type = "item", image = "vu_unicornblissdrink.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "A smooth vodka cocktail with citrus juice and a hint of lemon."},
vu_lossantosdrink = {name = "vu_lossantosdrink", label = "Los Santos", weight = 1, type = "item", image = "vu_lossantosdrink.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "A smooth vodka cocktail with citrus juice and a hint of lemon."},
vu_paletobaydrink = {name = "vu_paletobaydrink", label = "Paleto Bay", weight = 1, type = "item", image = "vu_paletobaydrink.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "A smooth vodka cocktail with citrus juice and a hint of lemon."},
vu_rhumdrink = {name = "vu_rhumdrink", label = "Rhum Drink", weight = 1, type = "item", image = "vu_rhumdrink.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "A rich and flavorful cocktail crafted with premium rhum."},
vu_tequiladrink = {name = "vu_tequiladrink", label = "Tequila Shot", weight = 1, type = "item", image = "vu_tequiladrink.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "A strong and smooth tequila shot."},
vu_whiskeydrink = {name = "vu_whiskeydrink", label = "Whiskey Glass", weight = 1, type = "item", image = "vu_whiskeydrink.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "A fine glass of aged whiskey, perfect for sipping and enjoying."},
vu_vodkadrink = {name = "vu_vodkadrink", label = "Vodka Glass", weight = 1, type = "item", image = "vu_vodkadrink.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "A crisp and clean glass of vodka, best served chilled."},
vu_lossantos = {name = "vu_lossantos", label = "Los Santos", weight = 1, type = "item", image = "vu_lossantos.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "A signature city-inspired cocktail with a unique blend of flavors."},
vu_paletobay = {name = "vu_paletobay", label = "Paleto Bay", weight = 1, type = "item", image = "vu_paletobay.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "A tropical and smooth drink inspired by the coastal town of Paleto Bay."},
-- Cutting Table
vu_rawlime = {name = "vu_rawlime", label = "Raw Lime", weight = 1, type = "item", image = "vu_rawlime.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "Raw Lime."},
vu_slicedlime = {name = "vu_slicedlime", label = "Sliced Lime", weight = 1, type = "item", image = "vu_slicedlime.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "Sliced Lime."},
vu_rawlemon = {name = "vu_rawlemon", label = "Raw Lemon", weight = 1, type = "item", image = "vu_rawlemon.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "Raw Lemon."},
vu_slicedlemon = {name = "vu_slicedlemon", label = "Sliced Lemon", weight = 1, type = "item", image = "vu_slicedlemon.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "Sliced Lemon."},
vu_rawstrawberry = {name = "vu_rawstrawberry", label = "Raw Strawberry", weight = 1, type = "item", image = "vu_rawstrawberry.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "Raw Strawberry."},
vu_slicedstrawberry = {name = "vu_slicedstrawberry", label = "Sliced Strawberry", weight = 1, type = "item", image = "vu_slicedstrawberry.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "Sliced Strawberry."},
vu_rawmint = {name = "vu_rawmint", label = "Raw Mint", weight = 1, type = "item", image = "vu_rawmint.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "Raw mint."},
vu_slicedmint = {name = "vu_slicedmint", label = "Sliced Mint", weight = 1, type = "item", image = "vu_slicedmint.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "Sliced mint."},
Add the following into your database:
INSERT INTO items (name, label, weight, rare, can_remove) VALUES
-- Other
('vu_ticket', 'Ticket - Vanilla Unicorn', 50, 0, 1),
('vu_cleansponge', 'Clean Sponge', 50, 0, 1),
('vu_dirtysponge', 'Dirty Sponge', 50, 0, 1),
('vu_redwoodcigpack', 'Redwood Cigarette Pack', 50, 0, 1),
('vu_redwoodcigsingle', 'Redwood Cigarette', 50, 0, 1),
('vu_estanciacigpack', 'Estancia Cigarette Pack', 50, 0, 1),
('vu_estanciacigsingle', 'Estancia Cigarette', 50, 0, 1),
('vu_sugar', 'Sugar', 50, 0, 1),
('vu_ice', 'Ice', 50, 0, 1),
('vu_soda', 'Soda', 50, 0, 1),
('vu_juice', 'Juice', 50, 0, 1),
('vu_coconutcream', 'Coconut Cream', 50, 0, 1),
-- Snacks
('vu_cleanbowl', 'Clean Bowl', 50, 0, 1),
('vu_dirtybowl', 'Dirty Bowl', 50, 0, 1),
('vu_beanbowl', 'Bean Bowl', 50, 0, 1),
('vu_nutbowl', 'Nut Bowl', 50, 0, 1),
('vu_beans', 'Beans', 50, 0, 1),
('vu_nuts', 'Nuts', 50, 0, 1),
-- Drinks
('vu_cleanshortglass', 'Clean Short Glass', 50, 0, 1),
('vu_dirtyshortglass', 'Dirty Short Glass', 50, 0, 1),
('vu_cleantallglass', 'Clean Tall Glass', 50, 0, 1),
('vu_dirtytallglass', 'Dirty Tall Glass', 50, 0, 1),
('vu_cleancocktailglass', 'Clean Cocktail Glass', 50, 0, 1),
('vu_dirtycocktailglass', 'Dirty Cocktail Glass', 50, 0, 1),
('vu_rhumbottle', 'Rhum Glass', 50, 0, 1),
('vu_tequilabottle', 'Tequila Glass', 50, 0, 1),
('vu_vodkabottle', 'Vodka Glass', 50, 0, 1),
('vu_whiskeybottle', 'Whiskey Glass', 50, 0, 1),
('vu_mojitodrink', 'Mojito Cocktail', 50, 0, 1),
('vu_pinacoladadrink', 'Piña Colada', 50, 0, 1),
('vu_tequilasunrisedrink', 'Tequila Sunrise', 50, 0, 1),
('vu_unicornblissdrink', 'Unicorn Bliss', 50, 0, 1),
('vu_lossantosdrink', 'Los Santos', 50, 0, 1),
('vu_paletobaydrink', 'Paleto Bay', 50, 0, 1),
('vu_rhumdrink', 'Rhum Drink', 50, 0, 1),
('vu_tequiladrink', 'Tequila Shot', 50, 0, 1),
('vu_whiskeydrink', 'Whiskey Glass', 50, 0, 1),
('vu_vodkadrink', 'Vodka Glass', 50, 0, 1),
('vu_lossantos', 'Los Santos', 50, 0, 1),
('vu_paletobay', 'Paleto Bay', 50, 0, 1),
-- Cutting Table
('vu_rawlime', 'Raw Lime', 50, 0, 1),
('vu_slicedlime', 'Sliced Lime', 50, 0, 1),
('vu_rawlemon', 'Raw Lemon', 50, 0, 1),
('vu_slicedlemon', 'Sliced Lemon', 50, 0, 1),
('vu_rawstrawberry', 'Raw Strawberry', 50, 0, 1),
('vu_slicedstrawberry', 'Sliced Strawberry', 50, 0, 1),
('vu_rawmint', 'Raw Mint', 50, 0, 1),
('vu_slicedmint', 'Sliced Mint', 50, 0, 1);
Create vanillaunicorn society/job:
Add the following into your database:
INSERT INTO jobs (name, label) VALUES
('vanillaunicorn', 'Vanilla Unicorn');
INSERT INTO job_grades (job_name, grade, name, label, salary, skin_male, skin_female) VALUES
('vanillaunicorn', 0, 'recruit', 'Recruit', 200, '{}', '{}'),
('vanillaunicorn', 1, 'trainee', 'Trainee', 200, '{}', '{}'),
('vanillaunicorn', 2, 'dancer', 'Dancer', 200, '{}', '{}'),
('vanillaunicorn', 3, 'barman', 'Barman', 200, '{}', '{}'),
('vanillaunicorn', 4, 'employee', 'Employee', 200, '{}', '{}'),
('vanillaunicorn', 5, 'underboss', 'Manager', 200, '{}', '{}'),
('vanillaunicorn', 6, 'boss', 'CEO', 200, '{}', '{}');
INSERT INTO addon_account (name, label, shared) VALUES
('society_vanillaunicorn', 'Vanilla Unicorn', 1);
INSERT INTO addon_inventory (name, label, shared) VALUES
('society_vanillaunicorn', 'Vanilla Unicorn', 1);
Add the following into:
qb-core\shared\jobs.lua
['vanillaunicorn'] = {
label = 'Vanilla Unicorn Employee',
defaultDuty = true,
offDutyPay = false,
grades = {
['0'] = {
name = 'Recruit',
payment = 200
},
['1'] = {
name = 'Trainee',
payment = 200
},
['2'] = {
name = 'Dancer',
payment = 200
},
['3'] = {
name = 'Barman',
payment = 200
},
['4'] = {
name = 'Employee',
payment = 200
},
['5'] = {
name = 'Manager',
payment = 200
},
['6'] = {
name = 'CEO',
isboss = true,
payment = 200
},
},
},
Add the following into:
qbx_core\shared\jobs.lua
['vanillaunicorn'] = {
label = 'Vanilla Unicorn Employee',
defaultDuty = true,
offDutyPay = false,
grades = {
['0'] = {
name = 'Recruit',
payment = 200
},
['1'] = {
name = 'Trainee',
payment = 200
},
['2'] = {
name = 'Dancer',
payment = 200
},
['3'] = {
name = 'Barman',
payment = 200
},
['4'] = {
name = 'Employee',
payment = 200
},
['5'] = {
name = 'Manager',
payment = 200
},
['6'] = {
name = 'CEO',
isboss = true,
payment = 200
},
},
},
Add the following into your database:
CREATE TABLE IF NOT EXISTS vanillaunicorn_stock (
item VARCHAR(255) NOT NULL,
amount int(11) NOT NULL DEFAULT 0
)
Restart your inventory script and start fivecode_vanillaunicornjob, or restart your server.
Enjoy the script!
[Optional] If you want to have item image in your inventory, place the images below here:
fivecode_vanillaunicornjob\Installation #9 - Images
- ox_inventory\web\images
- qb-inventory\html\images
- qs-inventory\html\images
- ps-inventory\html\images
- codem-inventory\html\itemimages
- core_inventory\html\img
- origen_inventory\html\images
- tgiann-inventory\inventory_images\images
Configure everything to your liking in .
If you need help with anything else, do not hesitate and open a support ticket in our .