Installation Guide
Follow these steps for flawless instalation:
Download the script from your cfx portal.
Place the script into your server resource folder:
FXServer\server-data\resources\fivecode_tequilalajobWrite the script into your server.cfg:
ensure fivecode_tequilalajobSetup your inventory:
ox
Add the following into:
ox_inventory\data\items.lua
-- Other
['tk_ticket'] = {
label = 'Ticket - Tequi-la-la',
weight = 1,
stack = true,
close = true,
description = 'Tequi-la-la ticket.'
},
['tk_cleansponge'] = {
label = 'Clean Sponge',
weight = 1,
stack = true,
close = true,
description = 'Clean sponge which is ready for some cleaning!'
},
['tk_dirtysponge'] = {
label = 'Dirty Sponge',
weight = 1,
stack = true,
close = true,
description = 'Dirty sponge which needs to be cleaned!'
},
['tk_nuts'] = {
label = 'Nuts',
weight = 1,
stack = true,
close = true,
description = 'Nuts to put into a clean bowl.'
},
['tk_beans'] = {
label = 'Beans',
weight = 1,
stack = true,
close = true,
description = 'Beans to put into a clean bowl.'
},
['tk_juice'] = {
label = 'Juice',
weight = 1,
stack = true,
close = true,
description = 'Carton of fresh juice. Probably not from local fruit.'
},
['tk_grenadine'] = {
label = 'Grenadine Syrup',
weight = 1,
stack = true,
close = true,
description = 'Sweet and vibrant red syrup made from pomegranates.'
},
['tk_grapefruitsoda'] = {
label = 'Grapefruit Soda',
weight = 1,
stack = true,
close = true,
description = 'A bottle of sparkling, bitter-sweet grapefruit soda.'
},
['tk_salt'] = {
label = 'Salt',
weight = 1,
stack = true,
close = true,
description = 'A tablespoon of coarse salt for rimming glasses.'
},
['tk_gingerbeer'] = {
label = 'Ginger Beer',
weight = 1,
stack = true,
close = true,
description = 'Spicy, non-alcoholic ginger beer. Packs a real punch.'
},
['tk_soda'] = {
label = 'Soda',
weight = 1,
stack = true,
close = true,
description = 'A bottle of sparkling soda water.'
},
['tk_bananaliqueur'] = {
label = 'Banana Liqueur',
weight = 1,
stack = true,
close = true,
description = 'Sweet and flavorful banana liqueur.'
},
['tk_cleantallglass'] = {
label = 'Clean Tall Glass',
weight = 1,
stack = true,
close = true,
description = 'Clean tall glass for serving drinks.'
},
['tk_dirtytallglass'] = {
label = 'Dirty Tall Glass',
weight = 1,
stack = true,
close = true,
description = 'Dirty tall glass ready to be cleaned.'
},
['tk_cleanshortglass'] = {
label = 'Clean Short Glass',
weight = 1,
stack = true,
close = true,
description = 'Clean short glass for serving spirits.'
},
['tk_dirtyshortglass'] = {
label = 'Dirty Short Glass',
weight = 1,
stack = true,
close = true,
description = 'Dirty short glass ready to be cleaned.'
},
['tk_cleancocktailglass'] = {
label = 'Clean Cocktail Glass',
weight = 1,
stack = true,
close = true,
description = 'Clean glass for serving cocktails.'
},
['tk_dirtycocktailglass'] = {
label = 'Dirty Cocktail Glass',
weight = 1,
stack = true,
close = true,
description = 'Dirty cocktail glass ready to be cleaned.'
},
['tk_ice'] = {
label = 'Ice',
weight = 1,
stack = true,
close = true,
description = 'A single ice cube for drinks.'
},
-- Snacks
['tk_cleanbowl'] = {
label = 'Clean Bowl',
weight = 1,
stack = true,
close = true,
description = 'Clean bowl to put food into.'
},
['tk_dirtybowl'] = {
label = 'Dirty Bowl',
weight = 1,
stack = true,
close = true,
description = 'Dirty bowl ready to be cleaned.'
},
['tk_beanbowl'] = {
label = 'Bean Bowl',
weight = 1,
stack = true,
close = true,
description = 'Bean bowl ready to be eaten.'
},
['tk_nutbowl'] = {
label = 'Nut Bowl',
weight = 1,
stack = true,
close = true,
description = 'Nut bowl ready to be eaten.'
},
-- Drinks
['tk_tequilasunrise'] = {
label = 'Tequila-la Sunrise',
weight = 1,
stack = true,
close = true,
description = 'A classic sunrise, layers of tequila, orange, and grenadine. Tastes like a sunny Los Santos morning.'
},
['tk_paloma'] = {
label = 'Los Santos Paloma',
weight = 1,
stack = true,
close = true,
description = 'Refreshing tequila and grapefruit soda with a salty kick. The unofficial drink of Vespucci Beach.'
},
['tk_vespuccimule'] = {
label = 'Vespucci Mule',
weight = 1,
stack = true,
close = true,
description = 'A spicy kick of tequila and ginger beer. For when you have business at the Del Perro Pier.'
},
['tk_margarita'] = {
label = 'La Margarita',
weight = 1,
stack = true,
close = true,
description = 'The house signature. Sharp, smooth, and salted. Just don\'t ask for a frozen one.'
},
['tk_rhumrunner'] = {
label = 'Rhum Runner',
weight = 1,
stack = true,
close = true,
description = 'A daring mix of tropical flavors and bold rum, crafted for those who chase adventure in every sip.'
},
['tk_vodkarevolution'] = {
label = 'Vodka Revolution',
weight = 1,
stack = true,
close = true,
description = 'A crisp and bold vodka experience, designed to spark a revolution on your taste buds with every glass.'
},
['tk_tequilabottle'] = {
label = 'Tequila Bottle',
weight = 1,
stack = true,
close = true,
description = 'Bottle of premium tequila.'
},
['tk_tequiladrink'] = {
label = 'Tequila Glass',
weight = 1,
stack = true,
close = true,
description = 'The original strong and smooth tequila shot.'
},
['tk_rhumbottle'] = {
label = 'Rhum Bottle',
weight = 1,
stack = true,
close = true,
description = 'Bottle of premium Caribbean rhum.'
},
['tk_rhumdrink'] = {
label = 'Rhum Glass',
weight = 1,
stack = true,
close = true,
description = 'A rich and flavorful cocktail crafted with premium rhum.'
},
['tk_vodkabottle'] = {
label = 'Vodka Bottle',
weight = 1,
stack = true,
close = true,
description = 'Bottle of premium vodka.'
},
['tk_vodkadrink'] = {
label = 'Vodka Glass',
weight = 1,
stack = true,
close = true,
description = 'A crisp and clean glass of vodka, best served chilled.'
},
-- Cutting Table
['tk_rawlemon'] = {
label = 'Raw Lemon',
weight = 1,
stack = true,
close = true,
description = 'A fresh lemon ready to be sliced.'
},
['tk_slicedlemon'] = {
label = 'Sliced Lemon',
weight = 1,
stack = true,
close = true,
description = 'Freshly sliced Lemon.'
},
['tk_raworange'] = {
label = 'Raw Orange',
weight = 1,
stack = true,
close = true,
description = 'A fresh orange ready to be sliced.'
},
['tk_slicedorange'] = {
label = 'Sliced Orange',
weight = 1,
stack = true,
close = true,
description = 'Freshly sliced orange.'
},
['tk_rawstrawberry'] = {
label = 'Raw Strawberry',
weight = 1,
stack = true,
close = true,
description = 'A fresh strawberry ready to be sliced.'
},
['tk_slicedstrawberry'] = {
label = 'Sliced Strawberry',
weight = 1,
stack = true,
close = true,
description = 'Freshly sliced strawberry.'
},
['tk_rawlime'] = {
label = 'Raw Lime',
weight = 1,
stack = true,
close = true,
description = 'A fresh lime ready to be sliced.'
},
['tk_slicedlime'] = {
label = 'Sliced Lime',
weight = 1,
stack = true,
close = true,
description = 'Freshly sliced lime.'
},qb
Add the following into:
qb-core\shared\items.lua
-- Other
tk_ticket = {name = "tk_ticket", label = "Ticket - Tequi-la-la", weight = 1, type = "item", image = "tk_ticket.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "Tequi-la-la ticket."},
tk_cleansponge = {name = "tk_cleansponge", label = "Clean Sponge", weight = 1, type = "item", image = "tk_cleansponge.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "Clean sponge which is ready for some cleaning!"},
tk_dirtysponge = {name = "tk_dirtysponge", label = "Dirty Sponge", weight = 1, type = "item", image = "tk_dirtysponge.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "Dirty sponge which needs to be cleaned!"},
tk_nuts = {name = "tk_nuts", label = "Nuts", weight = 1, type = "item", image = "tk_nuts.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "Nuts to put into a clean bowl."},
tk_beans = {name = "tk_beans", label = "Beans", weight = 1, type = "item", image = "tk_beans.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "Beans to put into a clean bowl."},
tk_juice = {name = "tk_juice", label = "Juice", weight = 1, type = "item", image = "tk_juice.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "Carton of fresh juice. Probably not from local fruit."},
tk_grenadine = {name = "tk_grenadine", label = "Grenadine Syrup", weight = 1, type = "item", image = "tk_grenadine.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "Sweet and vibrant red syrup made from pomegranates."},
tk_grapefruitsoda = {name = "tk_grapefruitsoda", label = "Grapefruit Soda", weight = 1, type = "item", image = "tk_grapefruitsoda.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "A bottle of sparkling, bitter-sweet grapefruit soda."},
tk_salt = {name = "tk_salt", label = "Salt", weight = 1, type = "item", image = "tk_salt.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "A tablespoon of coarse salt for rimming glasses."},
tk_gingerbeer = {name = "tk_gingerbeer", label = "Ginger Beer", weight = 1, type = "item", image = "tk_gingerbeer.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "Spicy, non-alcoholic ginger beer. Packs a real punch."},
tk_soda = {name = "tk_soda", label = "Soda", weight = 1, type = "item", image = "tk_soda.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "A bottle of sparkling soda water."},
tk_bananaliqueur = {name = "tk_bananaliqueur", label = "Banana Liqueur", weight = 1, type = "item", image = "tk_bananaliqueur.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "Sweet and flavorful banana liqueur."},
tk_cleantallglass = {name = "tk_cleantallglass", label = "Clean Tall Glass", weight = 1, type = "item", image = "tk_cleantallglass.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "Clean tall glass for serving drinks."},
tk_dirtytallglass = {name = "tk_dirtytallglass", label = "Dirty Tall Glass", weight = 1, type = "item", image = "tk_dirtytallglass.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "Dirty tall glass ready to be cleaned."},
tk_cleanshortglass = {name = "tk_cleanshortglass", label = "Clean Short Glass", weight = 1, type = "item", image = "tk_cleanshortglass.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "Clean short glass for serving spirits."},
tk_dirtyshortglass = {name = "tk_dirtyshortglass", label = "Dirty Short Glass", weight = 1, type = "item", image = "tk_dirtyshortglass.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "Dirty short glass ready to be cleaned."},
tk_cleancocktailglass = {name = "tk_cleancocktailglass", label = "Clean Cocktail Glass", weight = 1, type = "item", image = "tk_cleancocktailglass.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "Clean glass for serving cocktails."},
tk_dirtycocktailglass = {name = "tk_dirtycocktailglass", label = "Dirty Cocktail Glass", weight = 1, type = "item", image = "tk_dirtycocktailglass.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "Dirty cocktail glass ready to be cleaned."},
tk_ice = {name = "tk_ice", label = "Ice", weight = 1, type = "item", image = "tk_ice.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "A single ice cube for drinks."},
-- Snacks
tk_cleanbowl = {name = "tk_cleanbowl", label = "Clean Bowl", weight = 1, type = "item", image = "tk_cleanbowl.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "Clean bowl to put food into."},
tk_dirtybowl = {name = "tk_dirtybowl", label = "Dirty Bowl", weight = 1, type = "item", image = "tk_dirtybowl.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "Dirty bowl ready to be cleaned."},
tk_beanbowl = {name = "tk_beanbowl", label = "Bean Bowl", weight = 1, type = "item", image = "tk_beanbowl.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "Bean bowl ready to be eaten."},
tk_nutbowl = {name = "tk_nutbowl", label = "Nut Bowl", weight = 1, type = "item", image = "tk_nutbowl.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "Nut bowl ready to be eaten."},
-- Drinks
tk_tequilasunrise = {name = "tk_tequilasunrise", label = "Tequila-la Sunrise", weight = 1, type = "item", image = "tk_tequilasunrise.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "A classic sunrise, layers of tequila, orange, and grenadine. Tastes like a sunny Los Santos morning."},
tk_paloma = {name = "tk_paloma", label = "Los Santos Paloma", weight = 1, type = "item", image = "tk_paloma.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "Refreshing tequila and grapefruit soda with a salty kick. The unofficial drink of Vespucci Beach."},
tk_vespuccimule = {name = "tk_vespuccimule", label = "Vespucci Mule", weight = 1, type = "item", image = "tk_vespuccimule.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "A spicy kick of tequila and ginger beer. For when you have business at the Del Perro Pier."},
tk_margarita = {name = "tk_margarita", label = "La Margarita", weight = 1, type = "item", image = "tk_margarita.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "The house signature. Sharp, smooth, and salted. Just don't ask for a frozen one."},
tk_rhumrunner = {name = "tk_rhumrunner", label = "Rhum Runner", weight = 1, type = "item", image = "tk_rhumrunner.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "A daring mix of tropical flavors and bold rum, crafted for those who chase adventure in every sip."},
tk_vodkarevolution = {name = "tk_vodkarevolution", label = "Vodka Revolution", weight = 1, type = "item", image = "tk_vodkarevolution.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "A crisp and bold vodka experience, designed to spark a revolution on your taste buds with every glass."},
tk_tequilabottle = {name = "tk_tequilabottle", label = "Tequila Bottle", weight = 1, type = "item", image = "tk_tequilabottle.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "Bottle of premium tequila."},
tk_tequiladrink = {name = "tk_tequiladrink", label = "Tequila Glass", weight = 1, type = "item", image = "tk_tequiladrink.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "The original strong and smooth tequila shot."},
tk_rhumbottle = {name = "tk_rhumbottle", label = "Rhum Bottle", weight = 1, type = "item", image = "tk_rhumbottle.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "Bottle of premium Caribbean rhum."},
tk_rhumdrink = {name = "tk_rhumdrink", label = "Rhum Glass", weight = 1, type = "item", image = "tk_rhumdrink.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "A rich and flavorful cocktail crafted with premium rhum."},
tk_vodkabottle = {name = "tk_vodkabottle", label = "Vodka Bottle", weight = 1, type = "item", image = "tk_vodkabottle.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "Bottle of premium vodka."},
tk_vodkadrink = {name = "tk_vodkadrink", label = "Vodka Glass", weight = 1, type = "item", image = "tk_vodkadrink.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "A crisp and clean glass of vodka, best served chilled."},
-- Cutting Table
tk_rawlemon = {name = "tk_rawlemon", label = "Raw Lemon", weight = 1, type = "item", image = "tk_rawlemon.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "A fresh lemon ready to be sliced."},
tk_slicedlemon = {name = "tk_slicedlemon", label = "Sliced Lemon", weight = 1, type = "item", image = "tk_slicedlemon.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "Freshly sliced Lemon."},
tk_raworange = {name = "tk_raworange", label = "Raw Orange", weight = 1, type = "item", image = "tk_raworange.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "A fresh orange ready to be sliced."},
tk_slicedorange = {name = "tk_slicedorange", label = "Sliced Orange", weight = 1, type = "item", image = "tk_slicedorange.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "Freshly sliced orange."},
tk_rawstrawberry = {name = "tk_rawstrawberry", label = "Raw Strawberry", weight = 1, type = "item", image = "tk_rawstrawberry.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "A fresh strawberry ready to be sliced."},
tk_slicedstrawberry = {name = "tk_slicedstrawberry", label = "Sliced Strawberry", weight = 1, type = "item", image = "tk_slicedstrawberry.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "Freshly sliced strawberry."},
tk_rawlime = {name = "tk_rawlime", label = "Raw Lime", weight = 1, type = "item", image = "tk_rawlime.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "A fresh lime ready to be sliced."},
tk_slicedlime = {name = "tk_slicedlime", label = "Sliced Lime", weight = 1, type = "item", image = "tk_slicedlime.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "Freshly sliced lime."},qs
Add the following into:
qs-inventory\shared\items.lua
-- Other
['tk_ticket'] = {['name'] = 'tk_ticket', ['label'] = 'Ticket - Tequi-la-la', ['weight'] = 1, ['type'] = 'item', ['image'] = 'tk_ticket.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'Tequi-la-la ticket.'},
['tk_cleansponge'] = {['name'] = 'tk_cleansponge', ['label'] = 'Clean Sponge', ['weight'] = 1, ['type'] = 'item', ['image'] = 'tk_cleansponge.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'Clean sponge which is ready for some cleaning!'},
['tk_dirtysponge'] = {['name'] = 'tk_dirtysponge', ['label'] = 'Dirty Sponge', ['weight'] = 1, ['type'] = 'item', ['image'] = 'tk_dirtysponge.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'Dirty sponge which needs to be cleaned!'},
['tk_nuts'] = {['name'] = 'tk_nuts', ['label'] = 'Nuts', ['weight'] = 1, ['type'] = 'item', ['image'] = 'tk_nuts.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'Nuts to put into a clean bowl.'},
['tk_beans'] = {['name'] = 'tk_beans', ['label'] = 'Beans', ['weight'] = 1, ['type'] = 'item', ['image'] = 'tk_beans.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'Beans to put into a clean bowl.'},
['tk_juice'] = {['name'] = 'tk_juice', ['label'] = 'Juice', ['weight'] = 1, ['type'] = 'item', ['image'] = 'tk_juice.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'Carton of fresh juice. Probably not from local fruit.'},
['tk_grenadine'] = {['name'] = 'tk_grenadine', ['label'] = 'Grenadine Syrup', ['weight'] = 1, ['type'] = 'item', ['image'] = 'tk_grenadine.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'Sweet and vibrant red syrup made from pomegranates.'},
['tk_grapefruitsoda'] = {['name'] = 'tk_grapefruitsoda', ['label'] = 'Grapefruit Soda', ['weight'] = 1, ['type'] = 'item', ['image'] = 'tk_grapefruitsoda.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'A bottle of sparkling, bitter-sweet grapefruit soda.'},
['tk_salt'] = {['name'] = 'tk_salt', ['label'] = 'Salt', ['weight'] = 1, ['type'] = 'item', ['image'] = 'tk_salt.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'A tablespoon of coarse salt for rimming glasses.'},
['tk_gingerbeer'] = {['name'] = 'tk_gingerbeer', ['label'] = 'Ginger Beer', ['weight'] = 1, ['type'] = 'item', ['image'] = 'tk_gingerbeer.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'Spicy, non-alcoholic ginger beer. Packs a real punch.'},
['tk_soda'] = {['name'] = 'tk_soda', ['label'] = 'Soda', ['weight'] = 1, ['type'] = 'item', ['image'] = 'tk_soda.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'A bottle of sparkling soda water.'},
['tk_bananaliqueur'] = {['name'] = 'tk_bananaliqueur', ['label'] = 'Banana Liqueur', ['weight'] = 1, ['type'] = 'item', ['image'] = 'tk_bananaliqueur.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'Sweet and flavorful banana liqueur.'},
['tk_cleantallglass'] = {['name'] = 'tk_cleantallglass', ['label'] = 'Clean Tall Glass', ['weight'] = 1, ['type'] = 'item', ['image'] = 'tk_cleantallglass.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'Clean tall glass for serving drinks.'},
['tk_dirtytallglass'] = {['name'] = 'tk_dirtytallglass', ['label'] = 'Dirty Tall Glass', ['weight'] = 1, ['type'] = 'item', ['image'] = 'tk_dirtytallglass.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'Dirty tall glass ready to be cleaned.'},
['tk_cleanshortglass'] = {['name'] = 'tk_cleanshortglass', ['label'] = 'Clean Short Glass', ['weight'] = 1, ['type'] = 'item', ['image'] = 'tk_cleanshortglass.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'Clean short glass for serving spirits.'},
['tk_dirtyshortglass'] = {['name'] = 'tk_dirtyshortglass', ['label'] = 'Dirty Short Glass', ['weight'] = 1, ['type'] = 'item', ['image'] = 'tk_dirtyshortglass.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'Dirty short glass ready to be cleaned.'},
['tk_cleancocktailglass'] = {['name'] = 'tk_cleancocktailglass', ['label'] = 'Clean Cocktail Glass', ['weight'] = 1, ['type'] = 'item', ['image'] = 'tk_cleancocktailglass.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'Clean glass for serving cocktails.'},
['tk_dirtycocktailglass'] = {['name'] = 'tk_dirtycocktailglass', ['label'] = 'Dirty Cocktail Glass', ['weight'] = 1, ['type'] = 'item', ['image'] = 'tk_dirtycocktailglass.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'Dirty cocktail glass ready to be cleaned.'},
['tk_ice'] = {['name'] = 'tk_ice', ['label'] = 'Ice', ['weight'] = 1, ['type'] = 'item', ['image'] = 'tk_ice.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'A single ice cube for drinks.'},
-- Snacks
['tk_cleanbowl'] = {['name'] = 'tk_cleanbowl', ['label'] = 'Clean Bowl', ['weight'] = 1, ['type'] = 'item', ['image'] = 'tk_cleanbowl.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'Clean bowl to put food into.'},
['tk_dirtybowl'] = {['name'] = 'tk_dirtybowl', ['label'] = 'Dirty Bowl', ['weight'] = 1, ['type'] = 'item', ['image'] = 'tk_dirtybowl.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'Dirty bowl ready to be cleaned.'},
['tk_beanbowl'] = {['name'] = 'tk_beanbowl', ['label'] = 'Bean Bowl', ['weight'] = 1, ['type'] = 'item', ['image'] = 'tk_beanbowl.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'Bean bowl ready to be eaten.'},
['tk_nutbowl'] = {['name'] = 'tk_nutbowl', ['label'] = 'Nut Bowl', ['weight'] = 1, ['type'] = 'item', ['image'] = 'tk_nutbowl.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'Nut bowl ready to be eaten.'},
-- Drinks
['tk_tequilasunrise'] = {['name'] = 'tk_tequilasunrise', ['label'] = 'Tequila-la Sunrise', ['weight'] = 1, ['type'] = 'item', ['image'] = 'tk_tequilasunrise.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'A classic sunrise, layers of tequila, orange, and grenadine. Tastes like a sunny Los Santos morning.'},
['tk_paloma'] = {['name'] = 'tk_paloma', ['label'] = 'Los Santos Paloma', ['weight'] = 1, ['type'] = 'item', ['image'] = 'tk_paloma.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'Refreshing tequila and grapefruit soda with a salty kick. The unofficial drink of Vespucci Beach.'},
['tk_vespuccimule'] = {['name'] = 'tk_vespuccimule', ['label'] = 'Vespucci Mule', ['weight'] = 1, ['type'] = 'item', ['image'] = 'tk_vespuccimule.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'A spicy kick of tequila and ginger beer. For when you have business at the Del Perro Pier.'},
['tk_margarita'] = {['name'] = 'tk_margarita', ['label'] = 'La Margarita', ['weight'] = 1, ['type'] = 'item', ['image'] = 'tk_margarita.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'The house signature. Sharp, smooth, and salted. Just don\'t ask for a frozen one.'},
['tk_rhumrunner'] = {['name'] = 'tk_rhumrunner', ['label'] = 'Rhum Runner', ['weight'] = 1, ['type'] = 'item', ['image'] = 'tk_rhumrunner.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'A daring mix of tropical flavors and bold rum, crafted for those who chase adventure in every sip.'},
['tk_vodkarevolution'] = {['name'] = 'tk_vodkarevolution', ['label'] = 'Vodka Revolution', ['weight'] = 1, ['type'] = 'item', ['image'] = 'tk_vodkarevolution.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'A crisp and bold vodka experience, designed to spark a revolution on your taste buds with every glass.'},
['tk_tequilabottle'] = {['name'] = 'tk_tequilabottle', ['label'] = 'Tequila Bottle', ['weight'] = 1, ['type'] = 'item', ['image'] = 'tk_tequilabottle.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'Bottle of premium tequila.'},
['tk_tequiladrink'] = {['name'] = 'tk_tequiladrink', ['label'] = 'Tequila Glass', ['weight'] = 1, ['type'] = 'item', ['image'] = 'tk_tequiladrink.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'The original strong and smooth tequila shot.'},
['tk_rhumbottle'] = {['name'] = 'tk_rhumbottle', ['label'] = 'Rhum Bottle', ['weight'] = 1, ['type'] = 'item', ['image'] = 'tk_rhumbottle.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'Bottle of premium Caribbean rhum.'},
['tk_rhumdrink'] = {['name'] = 'tk_rhumdrink', ['label'] = 'Rhum Glass', ['weight'] = 1, ['type'] = 'item', ['image'] = 'tk_rhumdrink.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'A rich and flavorful cocktail crafted with premium rhum.'},
['tk_vodkabottle'] = {['name'] = 'tk_vodkabottle', ['label'] = 'Vodka Bottle', ['weight'] = 1, ['type'] = 'item', ['image'] = 'tk_vodkabottle.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'Bottle of premium vodka.'},
['tk_vodkadrink'] = {['name'] = 'tk_vodkadrink', ['label'] = 'Vodka Glass', ['weight'] = 1, ['type'] = 'item', ['image'] = 'tk_vodkadrink.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'A crisp and clean glass of vodka, best served chilled.'},
-- Cutting Table
['tk_rawlemon'] = {['name'] = 'tk_rawlemon', ['label'] = 'Raw Lemon', ['weight'] = 1, ['type'] = 'item', ['image'] = 'tk_rawlemon.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'A fresh lemon ready to be sliced.'},
['tk_slicedlemon'] = {['name'] = 'tk_slicedlemon', ['label'] = 'Sliced Lemon', ['weight'] = 1, ['type'] = 'item', ['image'] = 'tk_slicedlemon.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'Freshly sliced Lemon.'},
['tk_raworange'] = {['name'] = 'tk_raworange', ['label'] = 'Raw Orange', ['weight'] = 1, ['type'] = 'item', ['image'] = 'tk_raworange.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'A fresh orange ready to be sliced.'},
['tk_slicedorange'] = {['name'] = 'tk_slicedorange', ['label'] = 'Sliced Orange', ['weight'] = 1, ['type'] = 'item', ['image'] = 'tk_slicedorange.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'Freshly sliced orange.'},
['tk_rawstrawberry'] = {['name'] = 'tk_rawstrawberry', ['label'] = 'Raw Strawberry', ['weight'] = 1, ['type'] = 'item', ['image'] = 'tk_rawstrawberry.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'A fresh strawberry ready to be sliced.'},
['tk_slicedstrawberry'] = {['name'] = 'tk_slicedstrawberry', ['label'] = 'Sliced Strawberry', ['weight'] = 1, ['type'] = 'item', ['image'] = 'tk_slicedstrawberry.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'Freshly sliced strawberry.'},
['tk_rawlime'] = {['name'] = 'tk_rawlime', ['label'] = 'Raw Lime', ['weight'] = 1, ['type'] = 'item', ['image'] = 'tk_rawlime.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'A fresh lime ready to be sliced.'},
['tk_slicedlime'] = {['name'] = 'tk_slicedlime', ['label'] = 'Sliced Lime', ['weight'] = 1, ['type'] = 'item', ['image'] = 'tk_slicedlime.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'Freshly sliced lime.'},
ps
Add the following into:
qb-core\shared\items.lua
-- Other
tk_ticket = {name = "tk_ticket", label = "Ticket - Tequi-la-la", weight = 1, type = "item", image = "tk_ticket.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "Tequi-la-la ticket."},
tk_cleansponge = {name = "tk_cleansponge", label = "Clean Sponge", weight = 1, type = "item", image = "tk_cleansponge.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "Clean sponge which is ready for some cleaning!"},
tk_dirtysponge = {name = "tk_dirtysponge", label = "Dirty Sponge", weight = 1, type = "item", image = "tk_dirtysponge.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "Dirty sponge which needs to be cleaned!"},
tk_nuts = {name = "tk_nuts", label = "Nuts", weight = 1, type = "item", image = "tk_nuts.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "Nuts to put into a clean bowl."},
tk_beans = {name = "tk_beans", label = "Beans", weight = 1, type = "item", image = "tk_beans.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "Beans to put into a clean bowl."},
tk_juice = {name = "tk_juice", label = "Juice", weight = 1, type = "item", image = "tk_juice.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "Carton of fresh juice. Probably not from local fruit."},
tk_grenadine = {name = "tk_grenadine", label = "Grenadine Syrup", weight = 1, type = "item", image = "tk_grenadine.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "Sweet and vibrant red syrup made from pomegranates."},
tk_grapefruitsoda = {name = "tk_grapefruitsoda", label = "Grapefruit Soda", weight = 1, type = "item", image = "tk_grapefruitsoda.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "A bottle of sparkling, bitter-sweet grapefruit soda."},
tk_salt = {name = "tk_salt", label = "Salt", weight = 1, type = "item", image = "tk_salt.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "A tablespoon of coarse salt for rimming glasses."},
tk_gingerbeer = {name = "tk_gingerbeer", label = "Ginger Beer", weight = 1, type = "item", image = "tk_gingerbeer.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "Spicy, non-alcoholic ginger beer. Packs a real punch."},
tk_soda = {name = "tk_soda", label = "Soda", weight = 1, type = "item", image = "tk_soda.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "A bottle of sparkling soda water."},
tk_bananaliqueur = {name = "tk_bananaliqueur", label = "Banana Liqueur", weight = 1, type = "item", image = "tk_bananaliqueur.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "Sweet and flavorful banana liqueur."},
tk_cleantallglass = {name = "tk_cleantallglass", label = "Clean Tall Glass", weight = 1, type = "item", image = "tk_cleantallglass.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "Clean tall glass for serving drinks."},
tk_dirtytallglass = {name = "tk_dirtytallglass", label = "Dirty Tall Glass", weight = 1, type = "item", image = "tk_dirtytallglass.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "Dirty tall glass ready to be cleaned."},
tk_cleanshortglass = {name = "tk_cleanshortglass", label = "Clean Short Glass", weight = 1, type = "item", image = "tk_cleanshortglass.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "Clean short glass for serving spirits."},
tk_dirtyshortglass = {name = "tk_dirtyshortglass", label = "Dirty Short Glass", weight = 1, type = "item", image = "tk_dirtyshortglass.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "Dirty short glass ready to be cleaned."},
tk_cleancocktailglass = {name = "tk_cleancocktailglass", label = "Clean Cocktail Glass", weight = 1, type = "item", image = "tk_cleancocktailglass.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "Clean glass for serving cocktails."},
tk_dirtycocktailglass = {name = "tk_dirtycocktailglass", label = "Dirty Cocktail Glass", weight = 1, type = "item", image = "tk_dirtycocktailglass.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "Dirty cocktail glass ready to be cleaned."},
tk_ice = {name = "tk_ice", label = "Ice", weight = 1, type = "item", image = "tk_ice.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "A single ice cube for drinks."},
-- Snacks
tk_cleanbowl = {name = "tk_cleanbowl", label = "Clean Bowl", weight = 1, type = "item", image = "tk_cleanbowl.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "Clean bowl to put food into."},
tk_dirtybowl = {name = "tk_dirtybowl", label = "Dirty Bowl", weight = 1, type = "item", image = "tk_dirtybowl.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "Dirty bowl ready to be cleaned."},
tk_beanbowl = {name = "tk_beanbowl", label = "Bean Bowl", weight = 1, type = "item", image = "tk_beanbowl.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "Bean bowl ready to be eaten."},
tk_nutbowl = {name = "tk_nutbowl", label = "Nut Bowl", weight = 1, type = "item", image = "tk_nutbowl.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "Nut bowl ready to be eaten."},
-- Drinks
tk_tequilasunrise = {name = "tk_tequilasunrise", label = "Tequila-la Sunrise", weight = 1, type = "item", image = "tk_tequilasunrise.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "A classic sunrise, layers of tequila, orange, and grenadine. Tastes like a sunny Los Santos morning."},
tk_paloma = {name = "tk_paloma", label = "Los Santos Paloma", weight = 1, type = "item", image = "tk_paloma.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "Refreshing tequila and grapefruit soda with a salty kick. The unofficial drink of Vespucci Beach."},
tk_vespuccimule = {name = "tk_vespuccimule", label = "Vespucci Mule", weight = 1, type = "item", image = "tk_vespuccimule.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "A spicy kick of tequila and ginger beer. For when you have business at the Del Perro Pier."},
tk_margarita = {name = "tk_margarita", label = "La Margarita", weight = 1, type = "item", image = "tk_margarita.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "The house signature. Sharp, smooth, and salted. Just don't ask for a frozen one."},
tk_rhumrunner = {name = "tk_rhumrunner", label = "Rhum Runner", weight = 1, type = "item", image = "tk_rhumrunner.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "A daring mix of tropical flavors and bold rum, crafted for those who chase adventure in every sip."},
tk_vodkarevolution = {name = "tk_vodkarevolution", label = "Vodka Revolution", weight = 1, type = "item", image = "tk_vodkarevolution.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "A crisp and bold vodka experience, designed to spark a revolution on your taste buds with every glass."},
tk_tequilabottle = {name = "tk_tequilabottle", label = "Tequila Bottle", weight = 1, type = "item", image = "tk_tequilabottle.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "Bottle of premium tequila."},
tk_tequiladrink = {name = "tk_tequiladrink", label = "Tequila Glass", weight = 1, type = "item", image = "tk_tequiladrink.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "The original strong and smooth tequila shot."},
tk_rhumbottle = {name = "tk_rhumbottle", label = "Rhum Bottle", weight = 1, type = "item", image = "tk_rhumbottle.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "Bottle of premium Caribbean rhum."},
tk_rhumdrink = {name = "tk_rhumdrink", label = "Rhum Glass", weight = 1, type = "item", image = "tk_rhumdrink.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "A rich and flavorful cocktail crafted with premium rhum."},
tk_vodkabottle = {name = "tk_vodkabottle", label = "Vodka Bottle", weight = 1, type = "item", image = "tk_vodkabottle.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "Bottle of premium vodka."},
tk_vodkadrink = {name = "tk_vodkadrink", label = "Vodka Glass", weight = 1, type = "item", image = "tk_vodkadrink.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "A crisp and clean glass of vodka, best served chilled."},
-- Cutting Table
tk_rawlemon = {name = "tk_rawlemon", label = "Raw Lemon", weight = 1, type = "item", image = "tk_rawlemon.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "A fresh lemon ready to be sliced."},
tk_slicedlemon = {name = "tk_slicedlemon", label = "Sliced Lemon", weight = 1, type = "item", image = "tk_slicedlemon.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "Freshly sliced Lemon."},
tk_raworange = {name = "tk_raworange", label = "Raw Orange", weight = 1, type = "item", image = "tk_raworange.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "A fresh orange ready to be sliced."},
tk_slicedorange = {name = "tk_slicedorange", label = "Sliced Orange", weight = 1, type = "item", image = "tk_slicedorange.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "Freshly sliced orange."},
tk_rawstrawberry = {name = "tk_rawstrawberry", label = "Raw Strawberry", weight = 1, type = "item", image = "tk_rawstrawberry.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "A fresh strawberry ready to be sliced."},
tk_slicedstrawberry = {name = "tk_slicedstrawberry", label = "Sliced Strawberry", weight = 1, type = "item", image = "tk_slicedstrawberry.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "Freshly sliced strawberry."},
tk_rawlime = {name = "tk_rawlime", label = "Raw Lime", weight = 1, type = "item", image = "tk_rawlime.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "A fresh lime ready to be sliced."},
tk_slicedlime = {name = "tk_slicedlime", label = "Sliced Lime", weight = 1, type = "item", image = "tk_slicedlime.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "Freshly sliced lime."},Create vanillaunicorn society/job:
qb
Add the following into:
qb-core\shared\jobs.lua
If you are using qb-management add the following into your database:
Configure everything to your liking in Config.lua.
Add the following into your database:
Restart your inventory script and start fivecode_tequilalajob, or restart your server.
Enjoy the script!
[Optional] If you want to have item image in your inventory, place the images below here:
fivecode_tequilalajob\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
If you need help with anything else, do not hesitate and open a support ticket in our discord.
Last updated
Was this helpful?