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_bahamamamasjob
Write the script into your server.cfg:
ensure fivecode_bahamamamasjob
Setup your inventory:
Add the following into:
ox_inventory\modules\items\client.lua
local usableFoodItems = {'bm_tropicalfruitbowl', 'bm_nutbowl', 'bm__beanbowl', 'bm_bahamamama', 'bm_tropicalbreeze', 'bm_caribbeansunset', 'bm_pinacoladadrink', 'bm_mangotango', 'bm_coconutdream', 'bm_islandicedtea', 'bm_rhumdrink', 'bm_tequiladrink', 'bm_vodkadrink', 'bm_champagneplatinumglass', 'bm_champagnegoldglass', 'bm_champangenormalglass'}
for _, item in pairs(usableFoodItems) do
Item(item, function(data, slot)
exports.ox_inventory:closeInventory()
TriggerEvent('fivecode_bahamamamasjob:useFoodItem', data.name)
end)
end
local bottleItems = {'bm_champangenormal', 'bm_champagnegold', 'bm_champagneplatinum'}
for _, item in pairs(bottleItems) do
Item(item, function(data, slot)
exports.ox_inventory:closeInventory()
TriggerEvent('fivecode_bahamamamasjob:useChampagneBottle', data.name)
end)
end
local barrierItems = {'bm_vipbarrier'}
for _, item in pairs(barrierItems) do
Item(item, function(data, slot)
exports.ox_inventory:closeInventory()
TriggerEvent('fivecode_bahamamamasjob:placeBarrier', data.name)
end)
end
and this into:
ox_inventory\data\items.lua
-- Other
['bm_vipbarrier'] = {
label = 'V.I.P Barrier',
weight = 1,
stack = true,
close = true,
description = 'Bahama Mamas V.I.P Barrier.'
},
['bm_ticket'] = {
label = 'Ticket - Bahama Mamas',
weight = 1,
stack = true,
close = true,
description = 'Bahama mamas ticket.'
},
['bm_cleansponge'] = {
label = 'Clean Sponge',
weight = 1,
stack = true,
close = true,
description = 'Clean sponge which is ready for some cleaning!'
},
['bm_dirtysponge'] = {
label = 'Dirty Sponge',
weight = 1,
stack = true,
close = true,
description = 'Dirty sponge which needs to be cleaned!'
},
['bm_cleancocktailglass'] = {
label = 'Clean Cocktail Glass',
weight = 1,
stack = true,
close = true,
description = 'Clean glass for serving cocktails'
},
['bm_dirtycocktailglass'] = {
label = 'Dirty Cocktail Glass',
weight = 1,
stack = true,
close = true,
description = 'Dirty cocktail glass ready to be cleaned.'
},
['bm_cleantallglass'] = {
label = 'Clean Tall Glass',
weight = 1,
stack = true,
close = true,
description = 'Clean tall glass for serving drinks'
},
['bm_dirtytallglass'] = {
label = 'Dirty Tall Glass',
weight = 1,
stack = true,
close = true,
description = 'Dirty tall glass ready to be cleaned.'
},
['bm_cleanshortglass'] = {
label = 'Clean Short Glass',
weight = 1,
stack = true,
close = true,
description = 'Clean short glass for serving spirits'
},
['bm_dirtyshortglass'] = {
label = 'Dirty Short Glass',
weight = 1,
stack = true,
close = true,
description = 'Dirty short glass ready to be cleaned.'
},
['bm_coconutcream'] = {
label = 'Coconut Cream',
weight = 1,
stack = true,
close = true,
description = 'Rich coconut cream for tropical drinks'
},
['bm_juice'] = {
label = 'Juice',
weight = 1,
stack = true,
close = true,
description = 'Assorted fruit juice for mixing'
},
['bm_grenadine'] = {
label = 'Grenadine',
weight = 1,
stack = true,
close = true,
description = 'Sweet grenadine syrup for cocktails'
},
['bm_gingerbeer'] = {
label = 'Ginger Beer',
weight = 1,
stack = true,
close = true,
description = 'Spicy ginger beer for mixing'
},
['bm_vanilla'] = {
label = 'Vanilla',
weight = 1,
stack = true,
close = true,
description = 'Vanilla extract for flavoring'
},
['bm_teabag'] = {
label = 'Tea Bag',
weight = 1,
stack = true,
close = true,
description = 'Tea bag for making iced tea'
},
['bm_beans'] = {
label = 'Beans',
weight = 1,
stack = true,
close = true,
description = 'Beans to put into a clean bowl.'
},
['bm_nuts'] = {
label = 'Nuts',
weight = 1,
stack = true,
close = true,
description = 'Nuts to put into a clean bowl.'
},
-- Snacks
['bm_cleanbowl'] = {
label = 'Clean Bowl',
weight = 1,
stack = true,
close = true,
description = 'Clean bowl to put food into.'
},
['bm_dirtybowl'] = {
label = 'Dirty Bowl',
weight = 1,
stack = true,
close = true,
description = 'Dirty bowl ready to be cleaned.'
},
['bm_tropicalfruitbowl'] = {
label = 'Tropical Fruit Bowl',
weight = 1,
stack = true,
close = true,
description = 'Fresh assortment of tropical fruits'
},
['bm_beanbowl'] = {
label = 'Bean Bowl',
weight = 1,
stack = true,
close = true,
description = 'Bean bowl ready to be eaten.'
},
['bm_nutbowl'] = {
label = 'Nut Bowl',
weight = 1,
stack = true,
close = true,
description = 'Nut bowl ready to be eaten.'
},
-- Drinks
['bm_bahamamama'] = {
label = 'Bahama Mama',
weight = 1,
stack = true,
close = true,
description = 'Classic tropical cocktail with rum and fruit juices'
},
['bm_tropicalbreeze'] = {
label = 'Tropical Breeze',
weight = 1,
stack = true,
close = true,
description = 'Refreshing vodka cocktail with mango and kiwi'
},
['bm_caribbeansunset'] = {
label = 'Caribbean Sunset',
weight = 1,
stack = true,
close = true,
description = 'Beautiful layered tequila cocktail'
},
['bm_pinacoladadrink'] = {
label = 'Piña Colada',
weight = 1,
stack = true,
close = true,
description = 'Piña colada twist on the classic piña colada'
},
['bm_mangotango'] = {
label = 'Mango Tango',
weight = 1,
stack = true,
close = true,
description = 'Vodka cocktail with mango and ginger beer'
},
['bm_coconutdream'] = {
label = 'Coconut Dream',
weight = 1,
stack = true,
close = true,
description = 'Creamy coconut rum cocktail'
},
['bm_islandicedtea'] = {
label = 'Island Iced Tea',
weight = 1,
stack = true,
close = true,
description = 'Tropical version of Long Island Iced Tea'
},
['bm_rhumdrink'] = {
label = 'Rhum Drink',
weight = 1,
stack = true,
close = true,
description = 'A rich and flavorful cocktail crafted with premium rhum.'
},
['bm_tequiladrink'] = {
label = 'Tequila Shot',
weight = 1,
stack = true,
close = true,
description = 'A strong and smooth tequila shot.'
},
['bm_vodkadrink'] = {
label = 'Vodka Glass',
weight = 1,
stack = true,
close = true,
description = 'A crisp and clean glass of vodka, best served chilled.'
},
['bm_champagneplatinumglass'] = {
label = 'Platinum Champagne Glass',
weight = 1,
stack = true,
close = true,
description = 'A shot from platinum champagne bottle.'
},
['bm_champagnegoldglass'] = {
label = 'Gold Champagne Glass',
weight = 1,
stack = true,
close = true,
description = 'A shot from gold champagne bottle.'
},
['bm_champangenormalglass'] = {
label = 'Normal Champagne Glass',
weight = 1,
stack = true,
close = true,
description = 'A shot from normal champagne bottle.'
},
['bm_rhumbottle'] = {
label = 'Rhum Bottle',
weight = 1,
stack = true,
close = true,
description = 'Bottle of premium Caribbean rhum'
},
['bm_vodkabottle'] = {
label = 'Vodka Bottle',
weight = 1,
stack = true,
close = true,
description = 'Bottle of premium vodka'
},
['bm_tequilabottle'] = {
label = 'Tequila Bottle',
weight = 1,
stack = true,
close = true,
description = 'Bottle of premium tequila'
},
['bm_champagneplatinum'] = {
label = 'Platinum Champagne',
weight = 1,
stack = true,
close = true,
description = 'Bottle of platinum champagne'
},
['bm_champagnegold'] = {
label = 'Gold Champagne',
weight = 1,
stack = true,
close = true,
description = 'Bottle of gold champagne'
},
['bm_champangenormal'] = {
label = 'Normal Champagne',
weight = 1,
stack = true,
close = true,
description = 'Bottle of normal champagne'
},
-- Cutting Table
['bm_rawlemon'] = {
label = 'Raw Lemon',
weight = 1,
stack = true,
close = true,
description = 'A fresh lemon ready to be sliced.'
},
['bm_slicedlemon'] = {
label = 'Sliced Lemon',
weight = 1,
stack = true,
close = true,
description = 'Freshly sliced Lemon'
},
['bm_rawpineapple'] = {
label = 'Pineapple',
weight = 1,
stack = true,
close = true,
description = 'A fresh pineapple ready to be sliced'
},
['bm_slicedpineapple'] = {
label = 'Sliced Pineapple',
weight = 1,
stack = true,
close = true,
description = 'Freshly sliced pineapple for drinks or snacks'
},
['bm_raworange'] = {
label = 'Orange',
weight = 1,
stack = true,
close = true,
description = 'A juicy orange ready to be sliced'
},
['bm_slicedorange'] = {
label = 'Sliced Orange',
weight = 1,
stack = true,
close = true,
description = 'Freshly sliced orange for drinks'
},
['bm_rawcoconut'] = {
label = 'Coconut',
weight = 1,
stack = true,
close = true,
description = 'A fresh coconut ready to be sliced'
},
['bm_slicedcoconut'] = {
label = 'Sliced Coconut',
weight = 1,
stack = true,
close = true,
description = 'Freshly sliced coconut for drinks'
},
['bm_rawmango'] = {
label = 'Mango',
weight = 1,
stack = true,
close = true,
description = 'A fresh mango ready to be sliced'
},
['bm_slicedmango'] = {
label = 'Sliced Mango',
weight = 1,
stack = true,
close = true,
description = 'Freshly sliced mango for drinks or snacks'
},
['bm_rawkiwi'] = {
label = 'Kiwi',
weight = 1,
stack = true,
close = true,
description = 'A fuzzy kiwi ready to be sliced'
},
['bm_slicedkiwi'] = {
label = 'Sliced Kiwi',
weight = 1,
stack = true,
close = true,
description = 'Freshly sliced kiwi for drinks or snacks'
},
['bm_ice'] = {
label = 'Ice',
weight = 1,
stack = true,
close = true,
description = 'A single ice cube for drinks'
},
['bm_crushedice'] = {
label = 'Crushed Ice',
weight = 1,
stack = true,
close = true,
description = 'Crushed ice for tropical drinks'
},
Add the following into:
qb-core\shared\items.lua
-- Other
bm_vipbarrier = {name = "bm_vipbarrier", label = "V.I.P Barrier", weight = 1, type = "item", image = "bm_vipbarrier.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "Bahama Mamas V.I.P Barrier."},
bm_ticket = {name = "bm_ticket", label = "Ticket - Bahama Mamas", weight = 1, type = "item", image = "bm_ticket.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "Bahama mamas ticket."},
bm_cleansponge = {name = "bm_cleansponge", label = "Clean Sponge", weight = 1, type = "item", image = "bm_cleansponge.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "Clean sponge which is ready for some cleaning!"},
bm_dirtysponge = {name = "bm_dirtysponge", label = "Dirty Sponge", weight = 1, type = "item", image = "bm_dirtysponge.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "Dirty sponge which needs to be cleaned!"},
bm_cleancocktailglass = {name = "bm_cleancocktailglass", label = "Clean Cocktail Glass", weight = 1, type = "item", image = "bm_cleancocktailglass.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "Clean glass for serving cocktails"},
bm_dirtycocktailglass = {name = "bm_dirtycocktailglass", label = "Dirty Cocktail Glass", weight = 1, type = "item", image = "bm_dirtycocktailglass.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "Dirty cocktail glass ready to be cleaned."},
bm_cleantallglass = {name = "bm_cleantallglass", label = "Clean Tall Glass", weight = 1, type = "item", image = "bm_cleantallglass.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "Clean tall glass for serving drinks"},
bm_dirtytallglass = {name = "bm_dirtytallglass", label = "Dirty Tall Glass", weight = 1, type = "item", image = "bm_dirtytallglass.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "Dirty tall glass ready to be cleaned."},
bm_cleanshortglass = {name = "bm_cleanshortglass", label = "Clean Short Glass", weight = 1, type = "item", image = "bm_cleanshortglass.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "Clean short glass for serving spirits"},
bm_dirtyshortglass = {name = "bm_dirtyshortglass", label = "Dirty Short Glass", weight = 1, type = "item", image = "bm_dirtyshortglass.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "Dirty short glass ready to be cleaned."},
bm_coconutcream = {name = "bm_coconutcream", label = "Coconut Cream", weight = 1, type = "item", image = "bm_coconutcream.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "Rich coconut cream for tropical drinks"},
bm_juice = {name = "bm_juice", label = "Juice", weight = 1, type = "item", image = "bm_juice.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "Assorted fruit juice for mixing"},
bm_grenadine = {name = "bm_grenadine", label = "Grenadine", weight = 1, type = "item", image = "bm_grenadine.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "Sweet grenadine syrup for cocktails"},
bm_gingerbeer = {name = "bm_gingerbeer", label = "Ginger Beer", weight = 1, type = "item", image = "bm_gingerbeer.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "Spicy ginger beer for mixing"},
bm_vanilla = {name = "bm_vanilla", label = "Vanilla", weight = 1, type = "item", image = "bm_vanilla.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "Vanilla extract for flavoring"},
bm_teabag = {name = "bm_teabag", label = "Tea Bag", weight = 1, type = "item", image = "bm_teabag.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "Tea bag for making iced tea"},
bm_beans = {name = "bm_beans", label = "Beans", weight = 1, type = "item", image = "bm_beans.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "Beans to put into a clean bowl."},
bm_nuts = {name = "bm_nuts", label = "Nuts", weight = 1, type = "item", image = "bm_nuts.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "Nuts to put into a clean bowl."},
-- Snacks
bm_cleanbowl = {name = "bm_cleanbowl", label = "Clean Bowl", weight = 1, type = "item", image = "bm_cleanbowl.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "Clean bowl to put food into."},
bm_dirtybowl = {name = "bm_dirtybowl", label = "Dirty Bowl", weight = 1, type = "item", image = "bm_dirtybowl.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "Dirty bowl ready to be cleaned."},
bm_tropicalfruitbowl = {name = "bm_tropicalfruitbowl", label = "Tropical Fruit Bowl", weight = 1, type = "item", image = "bm_tropicalfruitbowl.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "Fresh assortment of tropical fruits"},
bm_beanbowl = {name = "bm_beanbowl", label = "Bean Bowl", weight = 1, type = "item", image = "bm_beanbowl.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "Bean bowl ready to be eaten."},
bm_nutbowl = {name = "bm_nutbowl", label = "Nut Bowl", weight = 1, type = "item", image = "bm_nutbowl.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "Nut bowl ready to be eaten."},
-- Drinks
bm_bahamamama = {name = "bm_bahamamama", label = "Bahama Mama", weight = 1, type = "item", image = "bm_bahamamama.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "Classic tropical cocktail with rum and fruit juices"},
bm_tropicalbreeze = {name = "bm_tropicalbreeze", label = "Tropical Breeze", weight = 1, type = "item", image = "bm_tropicalbreeze.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "Refreshing vodka cocktail with mango and kiwi"},
bm_caribbeansunset = {name = "bm_caribbeansunset", label = "Caribbean Sunset", weight = 1, type = "item", image = "bm_caribbeansunset.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "Beautiful layered tequila cocktail"},
bm_pinacoladadrink = {name = "bm_pinacoladadrink", label = "Piña Colada", weight = 1, type = "item", image = "bm_pinacoladadrink.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "Piña colada twist on the classic piña colada"},
bm_mangotango = {name = "bm_mangotango", label = "Mango Tango", weight = 1, type = "item", image = "bm_mangotango.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "Vodka cocktail with mango and ginger beer"},
bm_coconutdream = {name = "bm_coconutdream", label = "Coconut Dream", weight = 1, type = "item", image = "bm_coconutdream.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "Creamy coconut rum cocktail"},
bm_islandicedtea = {name = "bm_islandicedtea", label = "Island Iced Tea", weight = 1, type = "item", image = "bm_islandicedtea.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "Tropical version of Long Island Iced Tea"},
bm_rhumdrink = {name = "bm_rhumdrink", label = "Rhum Drink", weight = 1, type = "item", image = "bm_rhumdrink.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "A rich and flavorful cocktail crafted with premium rhum."},
bm_tequiladrink = {name = "bm_tequiladrink", label = "Tequila Shot", weight = 1, type = "item", image = "bm_tequiladrink.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "A strong and smooth tequila shot."},
bm_vodkadrink = {name = "bm_vodkadrink", label = "Vodka Glass", weight = 1, type = "item", image = "bm_vodkadrink.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "A crisp and clean glass of vodka, best served chilled."},
bm_champagneplatinumglass = {name = "bm_champagneplatinumglass", label = "Platinum Champagne Glass", weight = 1, type = "item", image = "bm_champagneplatinumglass.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "A shot from platinum champagne bottle."},
bm_champagnegoldglass = {name = "bm_champagnegoldglass", label = "Gold Champagne Glass", weight = 1, type = "item", image = "bm_champagnegoldglass.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "A shot from gold champagne bottle."},
bm_champangenormalglass = {name = "bm_champangenormalglass", label = "Normal Champagne Glass", weight = 1, type = "item", image = "bm_champangenormalglass.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "A shot from normal champagne bottle."},
bm_rhumbottle = {name = "bm_rhumbottle", label = "Rhum Bottle", weight = 1, type = "item", image = "bm_rhumbottle.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "Bottle of premium Caribbean rhum"},
bm_vodkabottle = {name = "bm_vodkabottle", label = "Vodka Bottle", weight = 1, type = "item", image = "bm_vodkabottle.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "Bottle of premium vodka"},
bm_tequilabottle = {name = "bm_tequilabottle", label = "Tequila Bottle", weight = 1, type = "item", image = "bm_tequilabottle.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "Bottle of premium tequila"},
bm_champagneplatinum = {name = "bm_champagneplatinum", label = "Platinum Champagne", weight = 1, type = "item", image = "bm_champagneplatinum.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "Bottle of platinum champagne"},
bm_champagnegold = {name = "bm_champagnegold", label = "Gold Champagne", weight = 1, type = "item", image = "bm_champagnegold.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "Bottle of gold champagne"},
bm_champangenormal = {name = "bm_champangenormal", label = "Normal Champagne", weight = 1, type = "item", image = "bm_champangenormal.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "Bottle of normal champagne"},
-- Cutting Table
bm_rawlemon = {name = "bm_rawlemon", label = "Raw Lemon", weight = 1, type = "item", image = "bm_rawlemon.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "A fresh lemon ready to be sliced."},
bm_slicedlemon = {name = "bm_slicedlemon", label = "Sliced Lemon", weight = 1, type = "item", image = "bm_slicedlemon.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "Freshly sliced Lemon"},
bm_rawpineapple = {name = "bm_rawpineapple", label = "Pineapple", weight = 1, type = "item", image = "bm_rawpineapple.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "A fresh pineapple ready to be sliced"},
bm_slicedpineapple = {name = "bm_slicedpineapple", label = "Sliced Pineapple", weight = 1, type = "item", image = "bm_slicedpineapple.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "Freshly sliced pineapple for drinks or snacks"},
bm_raworange = {name = "bm_raworange", label = "Orange", weight = 1, type = "item", image = "bm_raworange.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "A juicy orange ready to be sliced"},
bm_slicedorange = {name = "bm_slicedorange", label = "Sliced Orange", weight = 1, type = "item", image = "bm_slicedorange.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "Freshly sliced orange for drinks"},
bm_rawcoconut = {name = "bm_rawcoconut", label = "Coconut", weight = 1, type = "item", image = "bm_rawcoconut.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "A fresh coconut ready to be sliced"},
bm_slicedcoconut = {name = "bm_slicedcoconut", label = "Sliced Coconut", weight = 1, type = "item", image = "bm_slicedcoconut.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "Freshly sliced coconut for drinks"},
bm_rawmango = {name = "bm_rawmango", label = "Mango", weight = 1, type = "item", image = "bm_rawmango.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "A fresh mango ready to be sliced"},
bm_slicedmango = {name = "bm_slicedmango", label = "Sliced Mango", weight = 1, type = "item", image = "bm_slicedmango.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "Freshly sliced mango for drinks or snacks"},
bm_rawkiwi = {name = "bm_rawkiwi", label = "Kiwi", weight = 1, type = "item", image = "bm_rawkiwi.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "A fuzzy kiwi ready to be sliced"},
bm_slicedkiwi = {name = "bm_slicedkiwi", label = "Sliced Kiwi", weight = 1, type = "item", image = "bm_slicedkiwi.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "Freshly sliced kiwi for drinks or snacks"},
bm_ice = {name = "bm_ice", label = "Ice", weight = 1, type = "item", image = "bm_ice.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "A single ice cube for drinks"},
bm_crushedice = {name = "bm_crushedice", label = "Crushed Ice", weight = 1, type = "item", image = "bm_crushedice.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "Crushed ice for tropical drinks"},
Add the following into:
qs-inventory\shared\items.lua
-- Other
['bm_vipbarrier'] = {['name'] = 'bm_vipbarrier', ['label'] = 'V.I.P Barrier', ['weight'] = 1, ['type'] = 'item', ['image'] = 'bm_vipbarrier.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'Bahama Mamas V.I.P Barrier.'},
['bm_ticket'] = {['name'] = 'bm_ticket', ['label'] = 'Ticket - Bahama Mamas', ['weight'] = 1, ['type'] = 'item', ['image'] = 'bm_ticket.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'Bahama mamas ticket.'},
['bm_cleansponge'] = {['name'] = 'bm_cleansponge', ['label'] = 'Clean Sponge', ['weight'] = 1, ['type'] = 'item', ['image'] = 'bm_cleansponge.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'Clean sponge which is ready for some cleaning!'},
['bm_dirtysponge'] = {['name'] = 'bm_dirtysponge', ['label'] = 'Dirty Sponge', ['weight'] = 1, ['type'] = 'item', ['image'] = 'bm_dirtysponge.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'Dirty sponge which needs to be cleaned!'},
['bm_cleancocktailglass'] = {['name'] = 'bm_cleancocktailglass', ['label'] = 'Clean Cocktail Glass', ['weight'] = 1, ['type'] = 'item', ['image'] = 'bm_cleancocktailglass.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'Clean glass for serving cocktails'},
['bm_dirtycocktailglass'] = {['name'] = 'bm_dirtycocktailglass', ['label'] = 'Dirty Cocktail Glass', ['weight'] = 1, ['type'] = 'item', ['image'] = 'bm_dirtycocktailglass.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'Dirty cocktail glass ready to be cleaned.'},
['bm_cleantallglass'] = {['name'] = 'bm_cleantallglass', ['label'] = 'Clean Tall Glass', ['weight'] = 1, ['type'] = 'item', ['image'] = 'bm_cleantallglass.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'Clean tall glass for serving drinks'},
['bm_dirtytallglass'] = {['name'] = 'bm_dirtytallglass', ['label'] = 'Dirty Tall Glass', ['weight'] = 1, ['type'] = 'item', ['image'] = 'bm_dirtytallglass.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'Dirty tall glass ready to be cleaned.'},
['bm_cleanshortglass'] = {['name'] = 'bm_cleanshortglass', ['label'] = 'Clean Short Glass', ['weight'] = 1, ['type'] = 'item', ['image'] = 'bm_cleanshortglass.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'Clean short glass for serving spirits'},
['bm_dirtyshortglass'] = {['name'] = 'bm_dirtyshortglass', ['label'] = 'Dirty Short Glass', ['weight'] = 1, ['type'] = 'item', ['image'] = 'bm_dirtyshortglass.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'Dirty short glass ready to be cleaned.'},
['bm_coconutcream'] = {['name'] = 'bm_coconutcream', ['label'] = 'Coconut Cream', ['weight'] = 1, ['type'] = 'item', ['image'] = 'bm_coconutcream.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'Rich coconut cream for tropical drinks'},
['bm_juice'] = {['name'] = 'bm_juice', ['label'] = 'Juice', ['weight'] = 1, ['type'] = 'item', ['image'] = 'bm_juice.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'Assorted fruit juice for mixing'},
['bm_grenadine'] = {['name'] = 'bm_grenadine', ['label'] = 'Grenadine', ['weight'] = 1, ['type'] = 'item', ['image'] = 'bm_grenadine.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'Sweet grenadine syrup for cocktails'},
['bm_gingerbeer'] = {['name'] = 'bm_gingerbeer', ['label'] = 'Ginger Beer', ['weight'] = 1, ['type'] = 'item', ['image'] = 'bm_gingerbeer.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'Spicy ginger beer for mixing'},
['bm_vanilla'] = {['name'] = 'bm_vanilla', ['label'] = 'Vanilla', ['weight'] = 1, ['type'] = 'item', ['image'] = 'bm_vanilla.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'Vanilla extract for flavoring'},
['bm_teabag'] = {['name'] = 'bm_teabag', ['label'] = 'Tea Bag', ['weight'] = 1, ['type'] = 'item', ['image'] = 'bm_teabag.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'Tea bag for making iced tea'},
['bm_beans'] = {['name'] = 'bm_beans', ['label'] = 'Beans', ['weight'] = 1, ['type'] = 'item', ['image'] = 'bm_beans.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'Beans to put into a clean bowl.'},
['bm_nuts'] = {['name'] = 'bm_nuts', ['label'] = 'Nuts', ['weight'] = 1, ['type'] = 'item', ['image'] = 'bm_nuts.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'Nuts to put into a clean bowl.'},
-- Snacks
['bm_cleanbowl'] = {['name'] = 'bm_cleanbowl', ['label'] = 'Clean Bowl', ['weight'] = 1, ['type'] = 'item', ['image'] = 'bm_cleanbowl.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'Clean bowl to put food into.'},
['bm_dirtybowl'] = {['name'] = 'bm_dirtybowl', ['label'] = 'Dirty Bowl', ['weight'] = 1, ['type'] = 'item', ['image'] = 'bm_dirtybowl.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'Dirty bowl ready to be cleaned.'},
['bm_tropicalfruitbowl'] = {['name'] = 'bm_tropicalfruitbowl', ['label'] = 'Tropical Fruit Bowl', ['weight'] = 1, ['type'] = 'item', ['image'] = 'bm_tropicalfruitbowl.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'Fresh assortment of tropical fruits'},
['bm_beanbowl'] = {['name'] = 'bm_beanbowl', ['label'] = 'Bean Bowl', ['weight'] = 1, ['type'] = 'item', ['image'] = 'bm_beanbowl.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'Bean bowl ready to be eaten.'},
['bm_nutbowl'] = {['name'] = 'bm_nutbowl', ['label'] = 'Nut Bowl', ['weight'] = 1, ['type'] = 'item', ['image'] = 'bm_nutbowl.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'Nut bowl ready to be eaten.'},
-- Drinks
['bm_bahamamama'] = {['name'] = 'bm_bahamamama', ['label'] = 'Bahama Mama', ['weight'] = 1, ['type'] = 'item', ['image'] = 'bm_bahamamama.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'Classic tropical cocktail with rum and fruit juices'},
['bm_tropicalbreeze'] = {['name'] = 'bm_tropicalbreeze', ['label'] = 'Tropical Breeze', ['weight'] = 1, ['type'] = 'item', ['image'] = 'bm_tropicalbreeze.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'Refreshing vodka cocktail with mango and kiwi'},
['bm_caribbeansunset'] = {['name'] = 'bm_caribbeansunset', ['label'] = 'Caribbean Sunset', ['weight'] = 1, ['type'] = 'item', ['image'] = 'bm_caribbeansunset.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'Beautiful layered tequila cocktail'},
['bm_pinacoladadrink'] = {['name'] = 'bm_pinacoladadrink', ['label'] = 'Piña Colada', ['weight'] = 1, ['type'] = 'item', ['image'] = 'bm_pinacoladadrink.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'Piña colada twist on the classic piña colada'},
['bm_mangotango'] = {['name'] = 'bm_mangotango', ['label'] = 'Mango Tango', ['weight'] = 1, ['type'] = 'item', ['image'] = 'bm_mangotango.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'Vodka cocktail with mango and ginger beer'},
['bm_coconutdream'] = {['name'] = 'bm_coconutdream', ['label'] = 'Coconut Dream', ['weight'] = 1, ['type'] = 'item', ['image'] = 'bm_coconutdream.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'Creamy coconut rum cocktail'},
['bm_islandicedtea'] = {['name'] = 'bm_islandicedtea', ['label'] = 'Island Iced Tea', ['weight'] = 1, ['type'] = 'item', ['image'] = 'bm_islandicedtea.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'Tropical version of Long Island Iced Tea'},
['bm_rhumdrink'] = {['name'] = 'bm_rhumdrink', ['label'] = 'Rhum Drink', ['weight'] = 1, ['type'] = 'item', ['image'] = 'bm_rhumdrink.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'A rich and flavorful cocktail crafted with premium rhum.'},
['bm_tequiladrink'] = {['name'] = 'bm_tequiladrink', ['label'] = 'Tequila Shot', ['weight'] = 1, ['type'] = 'item', ['image'] = 'bm_tequiladrink.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'A strong and smooth tequila shot.'},
['bm_vodkadrink'] = {['name'] = 'bm_vodkadrink', ['label'] = 'Vodka Glass', ['weight'] = 1, ['type'] = 'item', ['image'] = 'bm_vodkadrink.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'A crisp and clean glass of vodka, best served chilled.'},
['bm_champagneplatinumglass'] = {['name'] = 'bm_champagneplatinumglass', ['label'] = 'Platinum Champagne Glass', ['weight'] = 1, ['type'] = 'item', ['image'] = 'bm_champagneplatinumglass.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'A shot from platinum champagne bottle.'},
['bm_champagnegoldglass'] = {['name'] = 'bm_champagnegoldglass', ['label'] = 'Gold Champagne Glass', ['weight'] = 1, ['type'] = 'item', ['image'] = 'bm_champagnegoldglass.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'A shot from gold champagne bottle.'},
['bm_champangenormalglass'] = {['name'] = 'bm_champangenormalglass', ['label'] = 'Normal Champagne Glass', ['weight'] = 1, ['type'] = 'item', ['image'] = 'bm_champangenormalglass.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'A shot from normal champagne bottle.'},
['bm_rhumbottle'] = {['name'] = 'bm_rhumbottle', ['label'] = 'Rhum Bottle', ['weight'] = 1, ['type'] = 'item', ['image'] = 'bm_rhumbottle.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'Bottle of premium Caribbean rhum'},
['bm_vodkabottle'] = {['name'] = 'bm_vodkabottle', ['label'] = 'Vodka Bottle', ['weight'] = 1, ['type'] = 'item', ['image'] = 'bm_vodkabottle.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'Bottle of premium vodka'},
['bm_tequilabottle'] = {['name'] = 'bm_tequilabottle', ['label'] = 'Tequila Bottle', ['weight'] = 1, ['type'] = 'item', ['image'] = 'bm_tequilabottle.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'Bottle of premium tequila'},
['bm_champagneplatinum'] = {['name'] = 'bm_champagneplatinum', ['label'] = 'Platinum Champagne', ['weight'] = 1, ['type'] = 'item', ['image'] = 'bm_champagneplatinum.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'Bottle of platinum champagne'},
['bm_champagnegold'] = {['name'] = 'bm_champagnegold', ['label'] = 'Gold Champagne', ['weight'] = 1, ['type'] = 'item', ['image'] = 'bm_champagnegold.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'Bottle of gold champagne'},
['bm_champangenormal'] = {['name'] = 'bm_champangenormal', ['label'] = 'Normal Champagne', ['weight'] = 1, ['type'] = 'item', ['image'] = 'bm_champangenormal.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'Bottle of normal champagne'},
-- Cutting Table
['bm_rawlemon'] = {['name'] = 'bm_rawlemon', ['label'] = 'Raw Lemon', ['weight'] = 1, ['type'] = 'item', ['image'] = 'bm_rawlemon.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'A fresh lemon ready to be sliced.'},
['bm_slicedlemon'] = {['name'] = 'bm_slicedlemon', ['label'] = 'Sliced Lemon', ['weight'] = 1, ['type'] = 'item', ['image'] = 'bm_slicedlemon.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'Freshly sliced Lemon'},
['bm_rawpineapple'] = {['name'] = 'bm_rawpineapple', ['label'] = 'Pineapple', ['weight'] = 1, ['type'] = 'item', ['image'] = 'bm_rawpineapple.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'A fresh pineapple ready to be sliced'},
['bm_slicedpineapple'] = {['name'] = 'bm_slicedpineapple', ['label'] = 'Sliced Pineapple', ['weight'] = 1, ['type'] = 'item', ['image'] = 'bm_slicedpineapple.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'Freshly sliced pineapple for drinks or snacks'},
['bm_raworange'] = {['name'] = 'bm_raworange', ['label'] = 'Orange', ['weight'] = 1, ['type'] = 'item', ['image'] = 'bm_raworange.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'A juicy orange ready to be sliced'},
['bm_slicedorange'] = {['name'] = 'bm_slicedorange', ['label'] = 'Sliced Orange', ['weight'] = 1, ['type'] = 'item', ['image'] = 'bm_slicedorange.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'Freshly sliced orange for drinks'},
['bm_rawcoconut'] = {['name'] = 'bm_rawcoconut', ['label'] = 'Coconut', ['weight'] = 1, ['type'] = 'item', ['image'] = 'bm_rawcoconut.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'A fresh coconut ready to be sliced'},
['bm_slicedcoconut'] = {['name'] = 'bm_slicedcoconut', ['label'] = 'Sliced Coconut', ['weight'] = 1, ['type'] = 'item', ['image'] = 'bm_slicedcoconut.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'Freshly sliced coconut for drinks'},
['bm_rawmango'] = {['name'] = 'bm_rawmango', ['label'] = 'Mango', ['weight'] = 1, ['type'] = 'item', ['image'] = 'bm_rawmango.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'A fresh mango ready to be sliced'},
['bm_slicedmango'] = {['name'] = 'bm_slicedmango', ['label'] = 'Sliced Mango', ['weight'] = 1, ['type'] = 'item', ['image'] = 'bm_slicedmango.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'Freshly sliced mango for drinks or snacks'},
['bm_rawkiwi'] = {['name'] = 'bm_rawkiwi', ['label'] = 'Kiwi', ['weight'] = 1, ['type'] = 'item', ['image'] = 'bm_rawkiwi.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'A fuzzy kiwi ready to be sliced'},
['bm_slicedkiwi'] = {['name'] = 'bm_slicedkiwi', ['label'] = 'Sliced Kiwi', ['weight'] = 1, ['type'] = 'item', ['image'] = 'bm_slicedkiwi.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'Freshly sliced kiwi for drinks or snacks'},
['bm_ice'] = {['name'] = 'bm_ice', ['label'] = 'Ice', ['weight'] = 1, ['type'] = 'item', ['image'] = 'bm_ice.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'A single ice cube for drinks'},
['bm_crushedice'] = {['name'] = 'bm_crushedice', ['label'] = 'Crushed Ice', ['weight'] = 1, ['type'] = 'item', ['image'] = 'bm_crushedice.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'Crushed ice for tropical drinks'},
Add the following into:
qb-core\shared\items.lua
-- Other
bm_vipbarrier = {name = "bm_vipbarrier", label = "V.I.P Barrier", weight = 1, type = "item", image = "bm_vipbarrier.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "Bahama Mamas V.I.P Barrier."},
bm_ticket = {name = "bm_ticket", label = "Ticket - Bahama Mamas", weight = 1, type = "item", image = "bm_ticket.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "Bahama mamas ticket."},
bm_cleansponge = {name = "bm_cleansponge", label = "Clean Sponge", weight = 1, type = "item", image = "bm_cleansponge.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "Clean sponge which is ready for some cleaning!"},
bm_dirtysponge = {name = "bm_dirtysponge", label = "Dirty Sponge", weight = 1, type = "item", image = "bm_dirtysponge.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "Dirty sponge which needs to be cleaned!"},
bm_cleancocktailglass = {name = "bm_cleancocktailglass", label = "Clean Cocktail Glass", weight = 1, type = "item", image = "bm_cleancocktailglass.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "Clean glass for serving cocktails"},
bm_dirtycocktailglass = {name = "bm_dirtycocktailglass", label = "Dirty Cocktail Glass", weight = 1, type = "item", image = "bm_dirtycocktailglass.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "Dirty cocktail glass ready to be cleaned."},
bm_cleantallglass = {name = "bm_cleantallglass", label = "Clean Tall Glass", weight = 1, type = "item", image = "bm_cleantallglass.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "Clean tall glass for serving drinks"},
bm_dirtytallglass = {name = "bm_dirtytallglass", label = "Dirty Tall Glass", weight = 1, type = "item", image = "bm_dirtytallglass.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "Dirty tall glass ready to be cleaned."},
bm_cleanshortglass = {name = "bm_cleanshortglass", label = "Clean Short Glass", weight = 1, type = "item", image = "bm_cleanshortglass.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "Clean short glass for serving spirits"},
bm_dirtyshortglass = {name = "bm_dirtyshortglass", label = "Dirty Short Glass", weight = 1, type = "item", image = "bm_dirtyshortglass.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "Dirty short glass ready to be cleaned."},
bm_coconutcream = {name = "bm_coconutcream", label = "Coconut Cream", weight = 1, type = "item", image = "bm_coconutcream.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "Rich coconut cream for tropical drinks"},
bm_juice = {name = "bm_juice", label = "Juice", weight = 1, type = "item", image = "bm_juice.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "Assorted fruit juice for mixing"},
bm_grenadine = {name = "bm_grenadine", label = "Grenadine", weight = 1, type = "item", image = "bm_grenadine.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "Sweet grenadine syrup for cocktails"},
bm_gingerbeer = {name = "bm_gingerbeer", label = "Ginger Beer", weight = 1, type = "item", image = "bm_gingerbeer.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "Spicy ginger beer for mixing"},
bm_vanilla = {name = "bm_vanilla", label = "Vanilla", weight = 1, type = "item", image = "bm_vanilla.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "Vanilla extract for flavoring"},
bm_teabag = {name = "bm_teabag", label = "Tea Bag", weight = 1, type = "item", image = "bm_teabag.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "Tea bag for making iced tea"},
bm_beans = {name = "bm_beans", label = "Beans", weight = 1, type = "item", image = "bm_beans.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "Beans to put into a clean bowl."},
bm_nuts = {name = "bm_nuts", label = "Nuts", weight = 1, type = "item", image = "bm_nuts.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "Nuts to put into a clean bowl."},
-- Snacks
bm_cleanbowl = {name = "bm_cleanbowl", label = "Clean Bowl", weight = 1, type = "item", image = "bm_cleanbowl.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "Clean bowl to put food into."},
bm_dirtybowl = {name = "bm_dirtybowl", label = "Dirty Bowl", weight = 1, type = "item", image = "bm_dirtybowl.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "Dirty bowl ready to be cleaned."},
bm_tropicalfruitbowl = {name = "bm_tropicalfruitbowl", label = "Tropical Fruit Bowl", weight = 1, type = "item", image = "bm_tropicalfruitbowl.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "Fresh assortment of tropical fruits"},
bm_beanbowl = {name = "bm_beanbowl", label = "Bean Bowl", weight = 1, type = "item", image = "bm_beanbowl.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "Bean bowl ready to be eaten."},
bm_nutbowl = {name = "bm_nutbowl", label = "Nut Bowl", weight = 1, type = "item", image = "bm_nutbowl.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "Nut bowl ready to be eaten."},
-- Drinks
bm_bahamamama = {name = "bm_bahamamama", label = "Bahama Mama", weight = 1, type = "item", image = "bm_bahamamama.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "Classic tropical cocktail with rum and fruit juices"},
bm_tropicalbreeze = {name = "bm_tropicalbreeze", label = "Tropical Breeze", weight = 1, type = "item", image = "bm_tropicalbreeze.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "Refreshing vodka cocktail with mango and kiwi"},
bm_caribbeansunset = {name = "bm_caribbeansunset", label = "Caribbean Sunset", weight = 1, type = "item", image = "bm_caribbeansunset.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "Beautiful layered tequila cocktail"},
bm_pinacoladadrink = {name = "bm_pinacoladadrink", label = "Piña Colada", weight = 1, type = "item", image = "bm_pinacoladadrink.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "Piña colada twist on the classic piña colada"},
bm_mangotango = {name = "bm_mangotango", label = "Mango Tango", weight = 1, type = "item", image = "bm_mangotango.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "Vodka cocktail with mango and ginger beer"},
bm_coconutdream = {name = "bm_coconutdream", label = "Coconut Dream", weight = 1, type = "item", image = "bm_coconutdream.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "Creamy coconut rum cocktail"},
bm_islandicedtea = {name = "bm_islandicedtea", label = "Island Iced Tea", weight = 1, type = "item", image = "bm_islandicedtea.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "Tropical version of Long Island Iced Tea"},
bm_rhumdrink = {name = "bm_rhumdrink", label = "Rhum Drink", weight = 1, type = "item", image = "bm_rhumdrink.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "A rich and flavorful cocktail crafted with premium rhum."},
bm_tequiladrink = {name = "bm_tequiladrink", label = "Tequila Shot", weight = 1, type = "item", image = "bm_tequiladrink.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "A strong and smooth tequila shot."},
bm_vodkadrink = {name = "bm_vodkadrink", label = "Vodka Glass", weight = 1, type = "item", image = "bm_vodkadrink.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "A crisp and clean glass of vodka, best served chilled."},
bm_champagneplatinumglass = {name = "bm_champagneplatinumglass", label = "Platinum Champagne Glass", weight = 1, type = "item", image = "bm_champagneplatinumglass.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "A shot from platinum champagne bottle."},
bm_champagnegoldglass = {name = "bm_champagnegoldglass", label = "Gold Champagne Glass", weight = 1, type = "item", image = "bm_champagnegoldglass.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "A shot from gold champagne bottle."},
bm_champangenormalglass = {name = "bm_champangenormalglass", label = "Normal Champagne Glass", weight = 1, type = "item", image = "bm_champangenormalglass.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "A shot from normal champagne bottle."},
bm_rhumbottle = {name = "bm_rhumbottle", label = "Rhum Bottle", weight = 1, type = "item", image = "bm_rhumbottle.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "Bottle of premium Caribbean rhum"},
bm_vodkabottle = {name = "bm_vodkabottle", label = "Vodka Bottle", weight = 1, type = "item", image = "bm_vodkabottle.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "Bottle of premium vodka"},
bm_tequilabottle = {name = "bm_tequilabottle", label = "Tequila Bottle", weight = 1, type = "item", image = "bm_tequilabottle.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "Bottle of premium tequila"},
bm_champagneplatinum = {name = "bm_champagneplatinum", label = "Platinum Champagne", weight = 1, type = "item", image = "bm_champagneplatinum.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "Bottle of platinum champagne"},
bm_champagnegold = {name = "bm_champagnegold", label = "Gold Champagne", weight = 1, type = "item", image = "bm_champagnegold.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "Bottle of gold champagne"},
bm_champangenormal = {name = "bm_champangenormal", label = "Normal Champagne", weight = 1, type = "item", image = "bm_champangenormal.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "Bottle of normal champagne"},
-- Cutting Table
bm_rawlemon = {name = "bm_rawlemon", label = "Raw Lemon", weight = 1, type = "item", image = "bm_rawlemon.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "A fresh lemon ready to be sliced."},
bm_slicedlemon = {name = "bm_slicedlemon", label = "Sliced Lemon", weight = 1, type = "item", image = "bm_slicedlemon.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "Freshly sliced Lemon"},
bm_rawpineapple = {name = "bm_rawpineapple", label = "Pineapple", weight = 1, type = "item", image = "bm_rawpineapple.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "A fresh pineapple ready to be sliced"},
bm_slicedpineapple = {name = "bm_slicedpineapple", label = "Sliced Pineapple", weight = 1, type = "item", image = "bm_slicedpineapple.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "Freshly sliced pineapple for drinks or snacks"},
bm_raworange = {name = "bm_raworange", label = "Orange", weight = 1, type = "item", image = "bm_raworange.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "A juicy orange ready to be sliced"},
bm_slicedorange = {name = "bm_slicedorange", label = "Sliced Orange", weight = 1, type = "item", image = "bm_slicedorange.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "Freshly sliced orange for drinks"},
bm_rawcoconut = {name = "bm_rawcoconut", label = "Coconut", weight = 1, type = "item", image = "bm_rawcoconut.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "A fresh coconut ready to be sliced"},
bm_slicedcoconut = {name = "bm_slicedcoconut", label = "Sliced Coconut", weight = 1, type = "item", image = "bm_slicedcoconut.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "Freshly sliced coconut for drinks"},
bm_rawmango = {name = "bm_rawmango", label = "Mango", weight = 1, type = "item", image = "bm_rawmango.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "A fresh mango ready to be sliced"},
bm_slicedmango = {name = "bm_slicedmango", label = "Sliced Mango", weight = 1, type = "item", image = "bm_slicedmango.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "Freshly sliced mango for drinks or snacks"},
bm_rawkiwi = {name = "bm_rawkiwi", label = "Kiwi", weight = 1, type = "item", image = "bm_rawkiwi.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "A fuzzy kiwi ready to be sliced"},
bm_slicedkiwi = {name = "bm_slicedkiwi", label = "Sliced Kiwi", weight = 1, type = "item", image = "bm_slicedkiwi.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "Freshly sliced kiwi for drinks or snacks"},
bm_ice = {name = "bm_ice", label = "Ice", weight = 1, type = "item", image = "bm_ice.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "A single ice cube for drinks"},
bm_crushedice = {name = "bm_crushedice", label = "Crushed Ice", weight = 1, type = "item", image = "bm_crushedice.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "Crushed ice for tropical drinks"},
Add the following into:
codem-inventory\config\itemlist.lua
-- Other
bm_vipbarrier = {name = "bm_vipbarrier", label = "V.I.P Barrier", weight = 1, type = "item", image = "bm_vipbarrier.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "Bahama Mamas V.I.P Barrier."},
bm_ticket = {name = "bm_ticket", label = "Ticket - Bahama Mamas", weight = 1, type = "item", image = "bm_ticket.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "Bahama mamas ticket."},
bm_cleansponge = {name = "bm_cleansponge", label = "Clean Sponge", weight = 1, type = "item", image = "bm_cleansponge.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "Clean sponge which is ready for some cleaning!"},
bm_dirtysponge = {name = "bm_dirtysponge", label = "Dirty Sponge", weight = 1, type = "item", image = "bm_dirtysponge.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "Dirty sponge which needs to be cleaned!"},
bm_cleancocktailglass = {name = "bm_cleancocktailglass", label = "Clean Cocktail Glass", weight = 1, type = "item", image = "bm_cleancocktailglass.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "Clean glass for serving cocktails"},
bm_dirtycocktailglass = {name = "bm_dirtycocktailglass", label = "Dirty Cocktail Glass", weight = 1, type = "item", image = "bm_dirtycocktailglass.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "Dirty cocktail glass ready to be cleaned."},
bm_cleantallglass = {name = "bm_cleantallglass", label = "Clean Tall Glass", weight = 1, type = "item", image = "bm_cleantallglass.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "Clean tall glass for serving drinks"},
bm_dirtytallglass = {name = "bm_dirtytallglass", label = "Dirty Tall Glass", weight = 1, type = "item", image = "bm_dirtytallglass.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "Dirty tall glass ready to be cleaned."},
bm_cleanshortglass = {name = "bm_cleanshortglass", label = "Clean Short Glass", weight = 1, type = "item", image = "bm_cleanshortglass.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "Clean short glass for serving spirits"},
bm_dirtyshortglass = {name = "bm_dirtyshortglass", label = "Dirty Short Glass", weight = 1, type = "item", image = "bm_dirtyshortglass.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "Dirty short glass ready to be cleaned."},
bm_coconutcream = {name = "bm_coconutcream", label = "Coconut Cream", weight = 1, type = "item", image = "bm_coconutcream.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "Rich coconut cream for tropical drinks"},
bm_juice = {name = "bm_juice", label = "Juice", weight = 1, type = "item", image = "bm_juice.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "Assorted fruit juice for mixing"},
bm_grenadine = {name = "bm_grenadine", label = "Grenadine", weight = 1, type = "item", image = "bm_grenadine.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "Sweet grenadine syrup for cocktails"},
bm_gingerbeer = {name = "bm_gingerbeer", label = "Ginger Beer", weight = 1, type = "item", image = "bm_gingerbeer.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "Spicy ginger beer for mixing"},
bm_vanilla = {name = "bm_vanilla", label = "Vanilla", weight = 1, type = "item", image = "bm_vanilla.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "Vanilla extract for flavoring"},
bm_teabag = {name = "bm_teabag", label = "Tea Bag", weight = 1, type = "item", image = "bm_teabag.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "Tea bag for making iced tea"},
bm_beans = {name = "bm_beans", label = "Beans", weight = 1, type = "item", image = "bm_beans.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "Beans to put into a clean bowl."},
bm_nuts = {name = "bm_nuts", label = "Nuts", weight = 1, type = "item", image = "bm_nuts.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "Nuts to put into a clean bowl."},
-- Snacks
bm_cleanbowl = {name = "bm_cleanbowl", label = "Clean Bowl", weight = 1, type = "item", image = "bm_cleanbowl.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "Clean bowl to put food into."},
bm_dirtybowl = {name = "bm_dirtybowl", label = "Dirty Bowl", weight = 1, type = "item", image = "bm_dirtybowl.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "Dirty bowl ready to be cleaned."},
bm_tropicalfruitbowl = {name = "bm_tropicalfruitbowl", label = "Tropical Fruit Bowl", weight = 1, type = "item", image = "bm_tropicalfruitbowl.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "Fresh assortment of tropical fruits"},
bm_beanbowl = {name = "bm_beanbowl", label = "Bean Bowl", weight = 1, type = "item", image = "bm_beanbowl.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "Bean bowl ready to be eaten."},
bm_nutbowl = {name = "bm_nutbowl", label = "Nut Bowl", weight = 1, type = "item", image = "bm_nutbowl.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "Nut bowl ready to be eaten."},
-- Drinks
bm_bahamamama = {name = "bm_bahamamama", label = "Bahama Mama", weight = 1, type = "item", image = "bm_bahamamama.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "Classic tropical cocktail with rum and fruit juices"},
bm_tropicalbreeze = {name = "bm_tropicalbreeze", label = "Tropical Breeze", weight = 1, type = "item", image = "bm_tropicalbreeze.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "Refreshing vodka cocktail with mango and kiwi"},
bm_caribbeansunset = {name = "bm_caribbeansunset", label = "Caribbean Sunset", weight = 1, type = "item", image = "bm_caribbeansunset.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "Beautiful layered tequila cocktail"},
bm_pinacoladadrink = {name = "bm_pinacoladadrink", label = "Piña Colada", weight = 1, type = "item", image = "bm_pinacoladadrink.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "Piña colada twist on the classic piña colada"},
bm_mangotango = {name = "bm_mangotango", label = "Mango Tango", weight = 1, type = "item", image = "bm_mangotango.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "Vodka cocktail with mango and ginger beer"},
bm_coconutdream = {name = "bm_coconutdream", label = "Coconut Dream", weight = 1, type = "item", image = "bm_coconutdream.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "Creamy coconut rum cocktail"},
bm_islandicedtea = {name = "bm_islandicedtea", label = "Island Iced Tea", weight = 1, type = "item", image = "bm_islandicedtea.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "Tropical version of Long Island Iced Tea"},
bm_rhumdrink = {name = "bm_rhumdrink", label = "Rhum Drink", weight = 1, type = "item", image = "bm_rhumdrink.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "A rich and flavorful cocktail crafted with premium rhum."},
bm_tequiladrink = {name = "bm_tequiladrink", label = "Tequila Shot", weight = 1, type = "item", image = "bm_tequiladrink.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "A strong and smooth tequila shot."},
bm_vodkadrink = {name = "bm_vodkadrink", label = "Vodka Glass", weight = 1, type = "item", image = "bm_vodkadrink.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "A crisp and clean glass of vodka, best served chilled."},
bm_champagneplatinumglass = {name = "bm_champagneplatinumglass", label = "Platinum Champagne Glass", weight = 1, type = "item", image = "bm_champagneplatinumglass.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "A shot from platinum champagne bottle."},
bm_champagnegoldglass = {name = "bm_champagnegoldglass", label = "Gold Champagne Glass", weight = 1, type = "item", image = "bm_champagnegoldglass.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "A shot from gold champagne bottle."},
bm_champangenormalglass = {name = "bm_champangenormalglass", label = "Normal Champagne Glass", weight = 1, type = "item", image = "bm_champangenormalglass.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "A shot from normal champagne bottle."},
bm_rhumbottle = {name = "bm_rhumbottle", label = "Rhum Bottle", weight = 1, type = "item", image = "bm_rhumbottle.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "Bottle of premium Caribbean rhum"},
bm_vodkabottle = {name = "bm_vodkabottle", label = "Vodka Bottle", weight = 1, type = "item", image = "bm_vodkabottle.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "Bottle of premium vodka"},
bm_tequilabottle = {name = "bm_tequilabottle", label = "Tequila Bottle", weight = 1, type = "item", image = "bm_tequilabottle.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "Bottle of premium tequila"},
bm_champagneplatinum = {name = "bm_champagneplatinum", label = "Platinum Champagne", weight = 1, type = "item", image = "bm_champagneplatinum.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "Bottle of platinum champagne"},
bm_champagnegold = {name = "bm_champagnegold", label = "Gold Champagne", weight = 1, type = "item", image = "bm_champagnegold.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "Bottle of gold champagne"},
bm_champangenormal = {name = "bm_champangenormal", label = "Normal Champagne", weight = 1, type = "item", image = "bm_champangenormal.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "Bottle of normal champagne"},
-- Cutting Table
bm_rawlemon = {name = "bm_rawlemon", label = "Raw Lemon", weight = 1, type = "item", image = "bm_rawlemon.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "A fresh lemon ready to be sliced."},
bm_slicedlemon = {name = "bm_slicedlemon", label = "Sliced Lemon", weight = 1, type = "item", image = "bm_slicedlemon.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "Freshly sliced Lemon"},
bm_rawpineapple = {name = "bm_rawpineapple", label = "Pineapple", weight = 1, type = "item", image = "bm_rawpineapple.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "A fresh pineapple ready to be sliced"},
bm_slicedpineapple = {name = "bm_slicedpineapple", label = "Sliced Pineapple", weight = 1, type = "item", image = "bm_slicedpineapple.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "Freshly sliced pineapple for drinks or snacks"},
bm_raworange = {name = "bm_raworange", label = "Orange", weight = 1, type = "item", image = "bm_raworange.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "A juicy orange ready to be sliced"},
bm_slicedorange = {name = "bm_slicedorange", label = "Sliced Orange", weight = 1, type = "item", image = "bm_slicedorange.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "Freshly sliced orange for drinks"},
bm_rawcoconut = {name = "bm_rawcoconut", label = "Coconut", weight = 1, type = "item", image = "bm_rawcoconut.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "A fresh coconut ready to be sliced"},
bm_slicedcoconut = {name = "bm_slicedcoconut", label = "Sliced Coconut", weight = 1, type = "item", image = "bm_slicedcoconut.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "Freshly sliced coconut for drinks"},
bm_rawmango = {name = "bm_rawmango", label = "Mango", weight = 1, type = "item", image = "bm_rawmango.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "A fresh mango ready to be sliced"},
bm_slicedmango = {name = "bm_slicedmango", label = "Sliced Mango", weight = 1, type = "item", image = "bm_slicedmango.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "Freshly sliced mango for drinks or snacks"},
bm_rawkiwi = {name = "bm_rawkiwi", label = "Kiwi", weight = 1, type = "item", image = "bm_rawkiwi.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "A fuzzy kiwi ready to be sliced"},
bm_slicedkiwi = {name = "bm_slicedkiwi", label = "Sliced Kiwi", weight = 1, type = "item", image = "bm_slicedkiwi.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "Freshly sliced kiwi for drinks or snacks"},
bm_ice = {name = "bm_ice", label = "Ice", weight = 1, type = "item", image = "bm_ice.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "A single ice cube for drinks"},
bm_crushedice = {name = "bm_crushedice", label = "Crushed Ice", weight = 1, type = "item", image = "bm_crushedice.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "Crushed ice for tropical drinks"},
Add the following into your database:
INSERT INTO items (name, label, weight, rare, can_remove, desc) VALUES
-- Other
('bm_vipbarrier', 'V.I.P Barrier', 50, 0, 1, 'Bahama Mamas V.I.P Barrier.'),
('bm_ticket', 'Ticket - Bahama Mamas', 50, 0, 1, 'Bahama mamas ticket.'),
('bm_cleansponge', 'Clean Sponge', 50, 0, 1, 'Clean sponge which is ready for some cleaning!'),
('bm_dirtysponge', 'Dirty Sponge', 50, 0, 1, 'Dirty sponge which needs to be cleaned!'),
('bm_cleancocktailglass', 'Clean Cocktail Glass', 50, 0, 1, 'Clean glass for serving cocktails'),
('bm_dirtycocktailglass', 'Dirty Cocktail Glass', 50, 0, 1, 'Dirty cocktail glass ready to be cleaned.'),
('bm_cleantallglass', 'Clean Tall Glass', 50, 0, 1, 'Clean tall glass for serving drinks'),
('bm_dirtytallglass', 'Dirty Tall Glass', 50, 0, 1, 'Dirty tall glass ready to be cleaned.'),
('bm_cleanshortglass', 'Clean Short Glass', 50, 0, 1, 'Clean short glass for serving spirits'),
('bm_dirtyshortglass', 'Dirty Short Glass', 50, 0, 1, 'Dirty short glass ready to be cleaned.'),
('bm_coconutcream', 'Coconut Cream', 50, 0, 1, 'Rich coconut cream for tropical drinks'),
('bm_juice', 'Juice', 50, 0, 1, 'Assorted fruit juice for mixing'),
('bm_grenadine', 'Grenadine', 50, 0, 1, 'Sweet grenadine syrup for cocktails'),
('bm_gingerbeer', 'Ginger Beer', 50, 0, 1, 'Spicy ginger beer for mixing'),
('bm_vanilla', 'Vanilla', 50, 0, 1, 'Vanilla extract for flavoring'),
('bm_teabag', 'Tea Bag', 50, 0, 1, 'Tea bag for making iced tea'),
('bm_beans', 'Beans', 50, 0, 1, 'Beans to put into a clean bowl.'),
('bm_nuts', 'Nuts', 50, 0, 1, 'Nuts to put into a clean bowl.'),
-- Snacks
('bm_cleanbowl', 'Clean Bowl', 50, 0, 1, 'Clean bowl to put food into.'),
('bm_dirtybowl', 'Dirty Bowl', 50, 0, 1, 'Dirty bowl ready to be cleaned.'),
('bm_tropicalfruitbowl', 'Tropical Fruit Bowl', 50, 0, 1, 'Fresh assortment of tropical fruits'),
('bm_beanbowl', 'Bean Bowl', 50, 0, 1, 'Bean bowl ready to be eaten.'),
('bm_nutbowl', 'Nut Bowl', 50, 0, 1, 'Nut bowl ready to be eaten.'),
-- Drinks
('bm_bahamamama', 'Bahama Mama', 50, 0, 1, 'Classic tropical cocktail with rum and fruit juices'),
('bm_tropicalbreeze', 'Tropical Breeze', 50, 0, 1, 'Refreshing vodka cocktail with mango and kiwi'),
('bm_caribbeansunset', 'Caribbean Sunset', 50, 0, 1, 'Beautiful layered tequila cocktail'),
('bm_pinacoladadrink', 'Piña Colada', 50, 0, 1, 'Piña colada twist on the classic piña colada'),
('bm_mangotango', 'Mango Tango', 50, 0, 1, 'Vodka cocktail with mango and ginger beer'),
('bm_coconutdream', 'Coconut Dream', 50, 0, 1, 'Creamy coconut rum cocktail'),
('bm_islandicedtea', 'Island Iced Tea', 50, 0, 1, 'Tropical version of Long Island Iced Tea'),
('bm_rhumdrink', 'Rhum Drink', 50, 0, 1, 'A rich and flavorful cocktail crafted with premium rhum.'),
('bm_tequiladrink', 'Tequila Shot', 50, 0, 1, 'A strong and smooth tequila shot.'),
('bm_vodkadrink', 'Vodka Glass', 50, 0, 1, 'A crisp and clean glass of vodka, best served chilled.'),
('bm_champagneplatinumglass', 'Platinum Champagne Glass', 50, 0, 1, 'A shot from platinum champagne bottle.'),
('bm_champagnegoldglass', 'Gold Champagne Glass', 50, 0, 1, 'A shot from gold champagne bottle.'),
('bm_champangenormalglass', 'Normal Champagne Glass', 50, 0, 1, 'A shot from normal champagne bottle.'),
('bm_rhumbottle', 'Rhum Bottle', 50, 0, 1, 'Bottle of premium Caribbean rhum'),
('bm_vodkabottle', 'Vodka Bottle', 50, 0, 1, 'Bottle of premium vodka'),
('bm_tequilabottle', 'Tequila Bottle', 50, 0, 1, 'Bottle of premium tequila'),
('bm_champagneplatinum', 'Platinum Champagne', 50, 0, 1, 'Bottle of platinum champagne'),
('bm_champagnegold', 'Gold Champagne', 50, 0, 1, 'Bottle of gold champagne'),
('bm_champangenormal', 'Normal Champagne', 50, 0, 1, 'Bottle of normal champagne'),
-- Cutting Table
('bm_rawlemon', 'Raw Lemon', 50, 0, 1, 'A fresh lemon ready to be sliced.'),
('bm_slicedlemon', 'Sliced Lemon', 50, 0, 1, 'Freshly sliced Lemon'),
('bm_rawpineapple', 'Pineapple', 50, 0, 1, 'A fresh pineapple ready to be sliced'),
('bm_slicedpineapple', 'Sliced Pineapple', 50, 0, 1, 'Freshly sliced pineapple for drinks or snacks'),
('bm_raworange', 'Orange', 50, 0, 1, 'A juicy orange ready to be sliced'),
('bm_slicedorange', 'Sliced Orange', 50, 0, 1, 'Freshly sliced orange for drinks'),
('bm_rawcoconut', 'Coconut', 50, 0, 1, 'A fresh coconut ready to be sliced'),
('bm_slicedcoconut', 'Sliced Coconut', 50, 0, 1, 'Freshly sliced coconut for drinks'),
('bm_rawmango', 'Mango', 50, 0, 1, 'A fresh mango ready to be sliced'),
('bm_slicedmango', 'Sliced Mango', 50, 0, 1, 'Freshly sliced mango for drinks or snacks'),
('bm_rawkiwi', 'Kiwi', 50, 0, 1, 'A fuzzy kiwi ready to be sliced'),
('bm_slicedkiwi', 'Sliced Kiwi', 50, 0, 1, 'Freshly sliced kiwi for drinks or snacks'),
('bm_ice', 'Ice', 50, 0, 1, 'A single ice cube for drinks'),
('bm_crushedice', 'Crushed Ice', 50, 0, 1, 'Crushed ice for tropical drinks');
Add the following into:
origen_inventory\config\items.lua
-- Other
['bm_vipbarrier'] = {['name'] = 'bm_vipbarrier', ['label'] = 'V.I.P Barrier', ['weight'] = 1, ['type'] = 'item', ['image'] = 'bm_vipbarrier.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'Bahama Mamas V.I.P Barrier.'},
['bm_ticket'] = {['name'] = 'bm_ticket', ['label'] = 'Ticket - Bahama Mamas', ['weight'] = 1, ['type'] = 'item', ['image'] = 'bm_ticket.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'Bahama mamas ticket.'},
['bm_cleansponge'] = {['name'] = 'bm_cleansponge', ['label'] = 'Clean Sponge', ['weight'] = 1, ['type'] = 'item', ['image'] = 'bm_cleansponge.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'Clean sponge which is ready for some cleaning!'},
['bm_dirtysponge'] = {['name'] = 'bm_dirtysponge', ['label'] = 'Dirty Sponge', ['weight'] = 1, ['type'] = 'item', ['image'] = 'bm_dirtysponge.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'Dirty sponge which needs to be cleaned!'},
['bm_cleancocktailglass'] = {['name'] = 'bm_cleancocktailglass', ['label'] = 'Clean Cocktail Glass', ['weight'] = 1, ['type'] = 'item', ['image'] = 'bm_cleancocktailglass.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'Clean glass for serving cocktails'},
['bm_dirtycocktailglass'] = {['name'] = 'bm_dirtycocktailglass', ['label'] = 'Dirty Cocktail Glass', ['weight'] = 1, ['type'] = 'item', ['image'] = 'bm_dirtycocktailglass.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'Dirty cocktail glass ready to be cleaned.'},
['bm_cleantallglass'] = {['name'] = 'bm_cleantallglass', ['label'] = 'Clean Tall Glass', ['weight'] = 1, ['type'] = 'item', ['image'] = 'bm_cleantallglass.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'Clean tall glass for serving drinks'},
['bm_dirtytallglass'] = {['name'] = 'bm_dirtytallglass', ['label'] = 'Dirty Tall Glass', ['weight'] = 1, ['type'] = 'item', ['image'] = 'bm_dirtytallglass.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'Dirty tall glass ready to be cleaned.'},
['bm_cleanshortglass'] = {['name'] = 'bm_cleanshortglass', ['label'] = 'Clean Short Glass', ['weight'] = 1, ['type'] = 'item', ['image'] = 'bm_cleanshortglass.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'Clean short glass for serving spirits'},
['bm_dirtyshortglass'] = {['name'] = 'bm_dirtyshortglass', ['label'] = 'Dirty Short Glass', ['weight'] = 1, ['type'] = 'item', ['image'] = 'bm_dirtyshortglass.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'Dirty short glass ready to be cleaned.'},
['bm_coconutcream'] = {['name'] = 'bm_coconutcream', ['label'] = 'Coconut Cream', ['weight'] = 1, ['type'] = 'item', ['image'] = 'bm_coconutcream.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'Rich coconut cream for tropical drinks'},
['bm_juice'] = {['name'] = 'bm_juice', ['label'] = 'Juice', ['weight'] = 1, ['type'] = 'item', ['image'] = 'bm_juice.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'Assorted fruit juice for mixing'},
['bm_grenadine'] = {['name'] = 'bm_grenadine', ['label'] = 'Grenadine', ['weight'] = 1, ['type'] = 'item', ['image'] = 'bm_grenadine.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'Sweet grenadine syrup for cocktails'},
['bm_gingerbeer'] = {['name'] = 'bm_gingerbeer', ['label'] = 'Ginger Beer', ['weight'] = 1, ['type'] = 'item', ['image'] = 'bm_gingerbeer.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'Spicy ginger beer for mixing'},
['bm_vanilla'] = {['name'] = 'bm_vanilla', ['label'] = 'Vanilla', ['weight'] = 1, ['type'] = 'item', ['image'] = 'bm_vanilla.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'Vanilla extract for flavoring'},
['bm_teabag'] = {['name'] = 'bm_teabag', ['label'] = 'Tea Bag', ['weight'] = 1, ['type'] = 'item', ['image'] = 'bm_teabag.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'Tea bag for making iced tea'},
['bm_beans'] = {['name'] = 'bm_beans', ['label'] = 'Beans', ['weight'] = 1, ['type'] = 'item', ['image'] = 'bm_beans.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'Beans to put into a clean bowl.'},
['bm_nuts'] = {['name'] = 'bm_nuts', ['label'] = 'Nuts', ['weight'] = 1, ['type'] = 'item', ['image'] = 'bm_nuts.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'Nuts to put into a clean bowl.'},
-- Snacks
['bm_cleanbowl'] = {['name'] = 'bm_cleanbowl', ['label'] = 'Clean Bowl', ['weight'] = 1, ['type'] = 'item', ['image'] = 'bm_cleanbowl.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'Clean bowl to put food into.'},
['bm_dirtybowl'] = {['name'] = 'bm_dirtybowl', ['label'] = 'Dirty Bowl', ['weight'] = 1, ['type'] = 'item', ['image'] = 'bm_dirtybowl.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'Dirty bowl ready to be cleaned.'},
['bm_tropicalfruitbowl'] = {['name'] = 'bm_tropicalfruitbowl', ['label'] = 'Tropical Fruit Bowl', ['weight'] = 1, ['type'] = 'item', ['image'] = 'bm_tropicalfruitbowl.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'Fresh assortment of tropical fruits'},
['bm_beanbowl'] = {['name'] = 'bm_beanbowl', ['label'] = 'Bean Bowl', ['weight'] = 1, ['type'] = 'item', ['image'] = 'bm_beanbowl.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'Bean bowl ready to be eaten.'},
['bm_nutbowl'] = {['name'] = 'bm_nutbowl', ['label'] = 'Nut Bowl', ['weight'] = 1, ['type'] = 'item', ['image'] = 'bm_nutbowl.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'Nut bowl ready to be eaten.'},
-- Drinks
['bm_bahamamama'] = {['name'] = 'bm_bahamamama', ['label'] = 'Bahama Mama', ['weight'] = 1, ['type'] = 'item', ['image'] = 'bm_bahamamama.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'Classic tropical cocktail with rum and fruit juices'},
['bm_tropicalbreeze'] = {['name'] = 'bm_tropicalbreeze', ['label'] = 'Tropical Breeze', ['weight'] = 1, ['type'] = 'item', ['image'] = 'bm_tropicalbreeze.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'Refreshing vodka cocktail with mango and kiwi'},
['bm_caribbeansunset'] = {['name'] = 'bm_caribbeansunset', ['label'] = 'Caribbean Sunset', ['weight'] = 1, ['type'] = 'item', ['image'] = 'bm_caribbeansunset.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'Beautiful layered tequila cocktail'},
['bm_pinacoladadrink'] = {['name'] = 'bm_pinacoladadrink', ['label'] = 'Piña Colada', ['weight'] = 1, ['type'] = 'item', ['image'] = 'bm_pinacoladadrink.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'Piña colada twist on the classic piña colada'},
['bm_mangotango'] = {['name'] = 'bm_mangotango', ['label'] = 'Mango Tango', ['weight'] = 1, ['type'] = 'item', ['image'] = 'bm_mangotango.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'Vodka cocktail with mango and ginger beer'},
['bm_coconutdream'] = {['name'] = 'bm_coconutdream', ['label'] = 'Coconut Dream', ['weight'] = 1, ['type'] = 'item', ['image'] = 'bm_coconutdream.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'Creamy coconut rum cocktail'},
['bm_islandicedtea'] = {['name'] = 'bm_islandicedtea', ['label'] = 'Island Iced Tea', ['weight'] = 1, ['type'] = 'item', ['image'] = 'bm_islandicedtea.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'Tropical version of Long Island Iced Tea'},
['bm_rhumdrink'] = {['name'] = 'bm_rhumdrink', ['label'] = 'Rhum Drink', ['weight'] = 1, ['type'] = 'item', ['image'] = 'bm_rhumdrink.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'A rich and flavorful cocktail crafted with premium rhum.'},
['bm_tequiladrink'] = {['name'] = 'bm_tequiladrink', ['label'] = 'Tequila Shot', ['weight'] = 1, ['type'] = 'item', ['image'] = 'bm_tequiladrink.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'A strong and smooth tequila shot.'},
['bm_vodkadrink'] = {['name'] = 'bm_vodkadrink', ['label'] = 'Vodka Glass', ['weight'] = 1, ['type'] = 'item', ['image'] = 'bm_vodkadrink.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'A crisp and clean glass of vodka, best served chilled.'},
['bm_champagneplatinumglass'] = {['name'] = 'bm_champagneplatinumglass', ['label'] = 'Platinum Champagne Glass', ['weight'] = 1, ['type'] = 'item', ['image'] = 'bm_champagneplatinumglass.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'A shot from platinum champagne bottle.'},
['bm_champagnegoldglass'] = {['name'] = 'bm_champagnegoldglass', ['label'] = 'Gold Champagne Glass', ['weight'] = 1, ['type'] = 'item', ['image'] = 'bm_champagnegoldglass.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'A shot from gold champagne bottle.'},
['bm_champangenormalglass'] = {['name'] = 'bm_champangenormalglass', ['label'] = 'Normal Champagne Glass', ['weight'] = 1, ['type'] = 'item', ['image'] = 'bm_champangenormalglass.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'A shot from normal champagne bottle.'},
['bm_rhumbottle'] = {['name'] = 'bm_rhumbottle', ['label'] = 'Rhum Bottle', ['weight'] = 1, ['type'] = 'item', ['image'] = 'bm_rhumbottle.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'Bottle of premium Caribbean rhum'},
['bm_vodkabottle'] = {['name'] = 'bm_vodkabottle', ['label'] = 'Vodka Bottle', ['weight'] = 1, ['type'] = 'item', ['image'] = 'bm_vodkabottle.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'Bottle of premium vodka'},
['bm_tequilabottle'] = {['name'] = 'bm_tequilabottle', ['label'] = 'Tequila Bottle', ['weight'] = 1, ['type'] = 'item', ['image'] = 'bm_tequilabottle.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'Bottle of premium tequila'},
['bm_champagneplatinum'] = {['name'] = 'bm_champagneplatinum', ['label'] = 'Platinum Champagne', ['weight'] = 1, ['type'] = 'item', ['image'] = 'bm_champagneplatinum.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'Bottle of platinum champagne'},
['bm_champagnegold'] = {['name'] = 'bm_champagnegold', ['label'] = 'Gold Champagne', ['weight'] = 1, ['type'] = 'item', ['image'] = 'bm_champagnegold.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'Bottle of gold champagne'},
['bm_champangenormal'] = {['name'] = 'bm_champangenormal', ['label'] = 'Normal Champagne', ['weight'] = 1, ['type'] = 'item', ['image'] = 'bm_champangenormal.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'Bottle of normal champagne'},
-- Cutting Table
['bm_rawlemon'] = {['name'] = 'bm_rawlemon', ['label'] = 'Raw Lemon', ['weight'] = 1, ['type'] = 'item', ['image'] = 'bm_rawlemon.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'A fresh lemon ready to be sliced.'},
['bm_slicedlemon'] = {['name'] = 'bm_slicedlemon', ['label'] = 'Sliced Lemon', ['weight'] = 1, ['type'] = 'item', ['image'] = 'bm_slicedlemon.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'Freshly sliced Lemon'},
['bm_rawpineapple'] = {['name'] = 'bm_rawpineapple', ['label'] = 'Pineapple', ['weight'] = 1, ['type'] = 'item', ['image'] = 'bm_rawpineapple.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'A fresh pineapple ready to be sliced'},
['bm_slicedpineapple'] = {['name'] = 'bm_slicedpineapple', ['label'] = 'Sliced Pineapple', ['weight'] = 1, ['type'] = 'item', ['image'] = 'bm_slicedpineapple.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'Freshly sliced pineapple for drinks or snacks'},
['bm_raworange'] = {['name'] = 'bm_raworange', ['label'] = 'Orange', ['weight'] = 1, ['type'] = 'item', ['image'] = 'bm_raworange.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'A juicy orange ready to be sliced'},
['bm_slicedorange'] = {['name'] = 'bm_slicedorange', ['label'] = 'Sliced Orange', ['weight'] = 1, ['type'] = 'item', ['image'] = 'bm_slicedorange.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'Freshly sliced orange for drinks'},
['bm_rawcoconut'] = {['name'] = 'bm_rawcoconut', ['label'] = 'Coconut', ['weight'] = 1, ['type'] = 'item', ['image'] = 'bm_rawcoconut.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'A fresh coconut ready to be sliced'},
['bm_slicedcoconut'] = {['name'] = 'bm_slicedcoconut', ['label'] = 'Sliced Coconut', ['weight'] = 1, ['type'] = 'item', ['image'] = 'bm_slicedcoconut.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'Freshly sliced coconut for drinks'},
['bm_rawmango'] = {['name'] = 'bm_rawmango', ['label'] = 'Mango', ['weight'] = 1, ['type'] = 'item', ['image'] = 'bm_rawmango.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'A fresh mango ready to be sliced'},
['bm_slicedmango'] = {['name'] = 'bm_slicedmango', ['label'] = 'Sliced Mango', ['weight'] = 1, ['type'] = 'item', ['image'] = 'bm_slicedmango.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'Freshly sliced mango for drinks or snacks'},
['bm_rawkiwi'] = {['name'] = 'bm_rawkiwi', ['label'] = 'Kiwi', ['weight'] = 1, ['type'] = 'item', ['image'] = 'bm_rawkiwi.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'A fuzzy kiwi ready to be sliced'},
['bm_slicedkiwi'] = {['name'] = 'bm_slicedkiwi', ['label'] = 'Sliced Kiwi', ['weight'] = 1, ['type'] = 'item', ['image'] = 'bm_slicedkiwi.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'Freshly sliced kiwi for drinks or snacks'},
['bm_ice'] = {['name'] = 'bm_ice', ['label'] = 'Ice', ['weight'] = 1, ['type'] = 'item', ['image'] = 'bm_ice.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'A single ice cube for drinks'},
['bm_crushedice'] = {['name'] = 'bm_crushedice', ['label'] = 'Crushed Ice', ['weight'] = 1, ['type'] = 'item', ['image'] = 'bm_crushedice.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'Crushed ice for tropical drinks'},
Add the following into:
items.lua in your framework script
-- Other
bm_vipbarrier = {name = "bm_vipbarrier", label = "V.I.P Barrier", weight = 1, type = "item", image = "bm_vipbarrier.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "Bahama Mamas V.I.P Barrier."},
bm_ticket = {name = "bm_ticket", label = "Ticket - Bahama Mamas", weight = 1, type = "item", image = "bm_ticket.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "Bahama mamas ticket."},
bm_cleansponge = {name = "bm_cleansponge", label = "Clean Sponge", weight = 1, type = "item", image = "bm_cleansponge.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "Clean sponge which is ready for some cleaning!"},
bm_dirtysponge = {name = "bm_dirtysponge", label = "Dirty Sponge", weight = 1, type = "item", image = "bm_dirtysponge.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "Dirty sponge which needs to be cleaned!"},
bm_cleancocktailglass = {name = "bm_cleancocktailglass", label = "Clean Cocktail Glass", weight = 1, type = "item", image = "bm_cleancocktailglass.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "Clean glass for serving cocktails"},
bm_dirtycocktailglass = {name = "bm_dirtycocktailglass", label = "Dirty Cocktail Glass", weight = 1, type = "item", image = "bm_dirtycocktailglass.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "Dirty cocktail glass ready to be cleaned."},
bm_cleantallglass = {name = "bm_cleantallglass", label = "Clean Tall Glass", weight = 1, type = "item", image = "bm_cleantallglass.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "Clean tall glass for serving drinks"},
bm_dirtytallglass = {name = "bm_dirtytallglass", label = "Dirty Tall Glass", weight = 1, type = "item", image = "bm_dirtytallglass.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "Dirty tall glass ready to be cleaned."},
bm_cleanshortglass = {name = "bm_cleanshortglass", label = "Clean Short Glass", weight = 1, type = "item", image = "bm_cleanshortglass.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "Clean short glass for serving spirits"},
bm_dirtyshortglass = {name = "bm_dirtyshortglass", label = "Dirty Short Glass", weight = 1, type = "item", image = "bm_dirtyshortglass.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "Dirty short glass ready to be cleaned."},
bm_coconutcream = {name = "bm_coconutcream", label = "Coconut Cream", weight = 1, type = "item", image = "bm_coconutcream.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "Rich coconut cream for tropical drinks"},
bm_juice = {name = "bm_juice", label = "Juice", weight = 1, type = "item", image = "bm_juice.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "Assorted fruit juice for mixing"},
bm_grenadine = {name = "bm_grenadine", label = "Grenadine", weight = 1, type = "item", image = "bm_grenadine.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "Sweet grenadine syrup for cocktails"},
bm_gingerbeer = {name = "bm_gingerbeer", label = "Ginger Beer", weight = 1, type = "item", image = "bm_gingerbeer.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "Spicy ginger beer for mixing"},
bm_vanilla = {name = "bm_vanilla", label = "Vanilla", weight = 1, type = "item", image = "bm_vanilla.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "Vanilla extract for flavoring"},
bm_teabag = {name = "bm_teabag", label = "Tea Bag", weight = 1, type = "item", image = "bm_teabag.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "Tea bag for making iced tea"},
bm_beans = {name = "bm_beans", label = "Beans", weight = 1, type = "item", image = "bm_beans.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "Beans to put into a clean bowl."},
bm_nuts = {name = "bm_nuts", label = "Nuts", weight = 1, type = "item", image = "bm_nuts.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "Nuts to put into a clean bowl."},
-- Snacks
bm_cleanbowl = {name = "bm_cleanbowl", label = "Clean Bowl", weight = 1, type = "item", image = "bm_cleanbowl.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "Clean bowl to put food into."},
bm_dirtybowl = {name = "bm_dirtybowl", label = "Dirty Bowl", weight = 1, type = "item", image = "bm_dirtybowl.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "Dirty bowl ready to be cleaned."},
bm_tropicalfruitbowl = {name = "bm_tropicalfruitbowl", label = "Tropical Fruit Bowl", weight = 1, type = "item", image = "bm_tropicalfruitbowl.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "Fresh assortment of tropical fruits"},
bm_beanbowl = {name = "bm_beanbowl", label = "Bean Bowl", weight = 1, type = "item", image = "bm_beanbowl.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "Bean bowl ready to be eaten."},
bm_nutbowl = {name = "bm_nutbowl", label = "Nut Bowl", weight = 1, type = "item", image = "bm_nutbowl.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "Nut bowl ready to be eaten."},
-- Drinks
bm_bahamamama = {name = "bm_bahamamama", label = "Bahama Mama", weight = 1, type = "item", image = "bm_bahamamama.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "Classic tropical cocktail with rum and fruit juices"},
bm_tropicalbreeze = {name = "bm_tropicalbreeze", label = "Tropical Breeze", weight = 1, type = "item", image = "bm_tropicalbreeze.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "Refreshing vodka cocktail with mango and kiwi"},
bm_caribbeansunset = {name = "bm_caribbeansunset", label = "Caribbean Sunset", weight = 1, type = "item", image = "bm_caribbeansunset.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "Beautiful layered tequila cocktail"},
bm_pinacoladadrink = {name = "bm_pinacoladadrink", label = "Piña Colada", weight = 1, type = "item", image = "bm_pinacoladadrink.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "Piña colada twist on the classic piña colada"},
bm_mangotango = {name = "bm_mangotango", label = "Mango Tango", weight = 1, type = "item", image = "bm_mangotango.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "Vodka cocktail with mango and ginger beer"},
bm_coconutdream = {name = "bm_coconutdream", label = "Coconut Dream", weight = 1, type = "item", image = "bm_coconutdream.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "Creamy coconut rum cocktail"},
bm_islandicedtea = {name = "bm_islandicedtea", label = "Island Iced Tea", weight = 1, type = "item", image = "bm_islandicedtea.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "Tropical version of Long Island Iced Tea"},
bm_rhumdrink = {name = "bm_rhumdrink", label = "Rhum Drink", weight = 1, type = "item", image = "bm_rhumdrink.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "A rich and flavorful cocktail crafted with premium rhum."},
bm_tequiladrink = {name = "bm_tequiladrink", label = "Tequila Shot", weight = 1, type = "item", image = "bm_tequiladrink.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "A strong and smooth tequila shot."},
bm_vodkadrink = {name = "bm_vodkadrink", label = "Vodka Glass", weight = 1, type = "item", image = "bm_vodkadrink.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "A crisp and clean glass of vodka, best served chilled."},
bm_champagneplatinumglass = {name = "bm_champagneplatinumglass", label = "Platinum Champagne Glass", weight = 1, type = "item", image = "bm_champagneplatinumglass.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "A shot from platinum champagne bottle."},
bm_champagnegoldglass = {name = "bm_champagnegoldglass", label = "Gold Champagne Glass", weight = 1, type = "item", image = "bm_champagnegoldglass.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "A shot from gold champagne bottle."},
bm_champangenormalglass = {name = "bm_champangenormalglass", label = "Normal Champagne Glass", weight = 1, type = "item", image = "bm_champangenormalglass.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "A shot from normal champagne bottle."},
bm_rhumbottle = {name = "bm_rhumbottle", label = "Rhum Bottle", weight = 1, type = "item", image = "bm_rhumbottle.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "Bottle of premium Caribbean rhum"},
bm_vodkabottle = {name = "bm_vodkabottle", label = "Vodka Bottle", weight = 1, type = "item", image = "bm_vodkabottle.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "Bottle of premium vodka"},
bm_tequilabottle = {name = "bm_tequilabottle", label = "Tequila Bottle", weight = 1, type = "item", image = "bm_tequilabottle.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "Bottle of premium tequila"},
bm_champagneplatinum = {name = "bm_champagneplatinum", label = "Platinum Champagne", weight = 1, type = "item", image = "bm_champagneplatinum.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "Bottle of platinum champagne"},
bm_champagnegold = {name = "bm_champagnegold", label = "Gold Champagne", weight = 1, type = "item", image = "bm_champagnegold.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "Bottle of gold champagne"},
bm_champangenormal = {name = "bm_champangenormal", label = "Normal Champagne", weight = 1, type = "item", image = "bm_champangenormal.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "Bottle of normal champagne"},
-- Cutting Table
bm_rawlemon = {name = "bm_rawlemon", label = "Raw Lemon", weight = 1, type = "item", image = "bm_rawlemon.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "A fresh lemon ready to be sliced."},
bm_slicedlemon = {name = "bm_slicedlemon", label = "Sliced Lemon", weight = 1, type = "item", image = "bm_slicedlemon.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "Freshly sliced Lemon"},
bm_rawpineapple = {name = "bm_rawpineapple", label = "Pineapple", weight = 1, type = "item", image = "bm_rawpineapple.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "A fresh pineapple ready to be sliced"},
bm_slicedpineapple = {name = "bm_slicedpineapple", label = "Sliced Pineapple", weight = 1, type = "item", image = "bm_slicedpineapple.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "Freshly sliced pineapple for drinks or snacks"},
bm_raworange = {name = "bm_raworange", label = "Orange", weight = 1, type = "item", image = "bm_raworange.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "A juicy orange ready to be sliced"},
bm_slicedorange = {name = "bm_slicedorange", label = "Sliced Orange", weight = 1, type = "item", image = "bm_slicedorange.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "Freshly sliced orange for drinks"},
bm_rawcoconut = {name = "bm_rawcoconut", label = "Coconut", weight = 1, type = "item", image = "bm_rawcoconut.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "A fresh coconut ready to be sliced"},
bm_slicedcoconut = {name = "bm_slicedcoconut", label = "Sliced Coconut", weight = 1, type = "item", image = "bm_slicedcoconut.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "Freshly sliced coconut for drinks"},
bm_rawmango = {name = "bm_rawmango", label = "Mango", weight = 1, type = "item", image = "bm_rawmango.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "A fresh mango ready to be sliced"},
bm_slicedmango = {name = "bm_slicedmango", label = "Sliced Mango", weight = 1, type = "item", image = "bm_slicedmango.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "Freshly sliced mango for drinks or snacks"},
bm_rawkiwi = {name = "bm_rawkiwi", label = "Kiwi", weight = 1, type = "item", image = "bm_rawkiwi.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "A fuzzy kiwi ready to be sliced"},
bm_slicedkiwi = {name = "bm_slicedkiwi", label = "Sliced Kiwi", weight = 1, type = "item", image = "bm_slicedkiwi.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "Freshly sliced kiwi for drinks or snacks"},
bm_ice = {name = "bm_ice", label = "Ice", weight = 1, type = "item", image = "bm_ice.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "A single ice cube for drinks"},
bm_crushedice = {name = "bm_crushedice", label = "Crushed Ice", weight = 1, type = "item", image = "bm_crushedice.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "Crushed ice for tropical drinks"},
Add the following into your database:
INSERT INTO items (name, label, weight, rare, can_remove) VALUES
-- Other
('bm_vipbarrier', 'V.I.P Barrier', 50, 0, 1),
('bm_ticket', 'Ticket - Bahama Mamas', 50, 0, 1),
('bm_cleansponge', 'Clean Sponge', 50, 0, 1),
('bm_dirtysponge', 'Dirty Sponge', 50, 0, 1),
('bm_cleancocktailglass', 'Clean Cocktail Glass', 50, 0, 1),
('bm_dirtycocktailglass', 'Dirty Cocktail Glass', 50, 0, 1),
('bm_cleantallglass', 'Clean Tall Glass', 50, 0, 1),
('bm_dirtytallglass', 'Dirty Tall Glass', 50, 0, 1),
('bm_cleanshortglass', 'Clean Short Glass', 50, 0, 1),
('bm_dirtyshortglass', 'Dirty Short Glass', 50, 0, 1),
('bm_coconutcream', 'Coconut Cream', 50, 0, 1),
('bm_juice', 'Juice', 50, 0, 1),
('bm_grenadine', 'Grenadine', 50, 0, 1),
('bm_gingerbeer', 'Ginger Beer', 50, 0, 1),
('bm_vanilla', 'Vanilla', 50, 0, 1),
('bm_teabag', 'Tea Bag', 50, 0, 1),
('bm_beans', 'Beans', 50, 0, 1),
('bm_nuts', 'Nuts', 50, 0, 1),
-- Snacks
('bm_cleanbowl', 'Clean Bowl', 50, 0, 1),
('bm_dirtybowl', 'Dirty Bowl', 50, 0, 1),
('bm_tropicalfruitbowl', 'Tropical Fruit Bowl', 50, 0, 1),
('bm_beanbowl', 'Bean Bowl', 50, 0, 1),
('bm_nutbowl', 'Nut Bowl', 50, 0, 1),
-- Drinks
('bm_bahamamama', 'Bahama Mama', 50, 0, 1),
('bm_tropicalbreeze', 'Tropical Breeze', 50, 0, 1),
('bm_caribbeansunset', 'Caribbean Sunset', 50, 0, 1),
('bm_pinacoladadrink', 'Piña Colada', 50, 0, 1),
('bm_mangotango', 'Mango Tango', 50, 0, 1),
('bm_coconutdream', 'Coconut Dream', 50, 0, 1),
('bm_islandicedtea', 'Island Iced Tea', 50, 0, 1),
('bm_rhumdrink', 'Rhum Drink', 50, 0, 1),
('bm_tequiladrink', 'Tequila Shot', 50, 0, 1),
('bm_vodkadrink', 'Vodka Glass', 50, 0, 1),
('bm_champagneplatinumglass', 'Platinum Champagne Glass', 50, 0, 1),
('bm_champagnegoldglass', 'Gold Champagne Glass', 50, 0, 1),
('bm_champangenormalglass', 'Normal Champagne Glass', 50, 0, 1),
('bm_rhumbottle', 'Rhum Bottle', 50, 0, 1),
('bm_vodkabottle', 'Vodka Bottle', 50, 0, 1),
('bm_tequilabottle', 'Tequila Bottle', 50, 0, 1),
('bm_champagneplatinum', 'Platinum Champagne', 50, 0, 1),
('bm_champagnegold', 'Gold Champagne', 50, 0, 1),
('bm_champangenormal', 'Normal Champagne', 50, 0, 1),
-- Cutting Table
('bm_rawlemon', 'Raw Lemon', 50, 0, 1),
('bm_slicedlemon', 'Sliced Lemon', 50, 0, 1),
('bm_rawpineapple', 'Pineapple', 50, 0, 1),
('bm_slicedpineapple', 'Sliced Pineapple', 50, 0, 1),
('bm_raworange', 'Orange', 50, 0, 1),
('bm_slicedorange', 'Sliced Orange', 50, 0, 1),
('bm_rawcoconut', 'Coconut', 50, 0, 1),
('bm_slicedcoconut', 'Sliced Coconut', 50, 0, 1),
('bm_rawmango', 'Mango', 50, 0, 1),
('bm_slicedmango', 'Sliced Mango', 50, 0, 1),
('bm_rawkiwi', 'Kiwi', 50, 0, 1),
('bm_slicedkiwi', 'Sliced Kiwi', 50, 0, 1),
('bm_ice', 'Ice', 50, 0, 1),
('bm_crushedice', 'Crushed Ice', 50, 0, 1);
Create vanillaunicorn society/job:
Add the following into your database:
INSERT INTO jobs (name, label) VALUES
('bahamamamas', 'Bahama Mamas');
INSERT INTO job_grades (job_name, grade, name, label, salary, skin_male, skin_female) VALUES
('bahamamamas', 0, 'recruit', 'Recruit', 200, '{}', '{}'),
('bahamamamas', 1, 'trainee', 'Trainee', 200, '{}', '{}'),
('bahamamamas', 2, 'dancer', 'Dancer', 200, '{}', '{}'),
('bahamamamas', 3, 'barman', 'Barman', 200, '{}', '{}'),
('bahamamamas', 4, 'employee', 'Employee', 200, '{}', '{}'),
('bahamamamas', 5, 'underboss', 'Manager', 200, '{}', '{}'),
('bahamamamas', 6, 'boss', 'CEO', 200, '{}', '{}');
INSERT INTO addon_account (name, label, shared) VALUES
('society_bahamamamas', 'Bahama Mamas', 1);
INSERT INTO addon_inventory (name, label, shared) VALUES
('society_bahamamamas', 'Bahama Mamas', 1);
Add the following into:
qb-core\shared\jobs.lua
['bahamamamas'] = {
label = 'Bahama Mamas 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
['bahamamamas'] = {
label = 'Bahama Mamas 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 bahamamamas_stock (
item VARCHAR(255) NOT NULL,
amount int(11) NOT NULL DEFAULT 0
)
Restart your inventory script and start fivecode_bahamamamasjob, or restart your server.
Enjoy the script!
[Optional] If you want to have item image in your inventory, place the images below here:
fivecode_bahamamamasjob\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 .