Installation
Do not skim the instructions. You need to follow every step of the Install Guide to make sure you're installing the script correctly
Dependency Installation
Jim_Bridge
Download
Get it free from github - https://github.com/jimathy/jim_bridge
Framework Installation
Add the script to the server resources
It is highly recommend to put this script folder in a new folder called
[jim]Then add
ensure [jim]AFTER your other scripts in your server.cfg
Ensure List
GO TO YOUR server.cfg
The ORDER of the load order is important, check information here
Resources (EXAMPLE)
# Default & Standalone Resources
# ------------------------------
ensure chat
ensure hardcap
ensure oxmysql
start ox_lib
# ESX Legacy Core
# ----------
ensure [core]
ensure [esx_addons]
start ox_inventory
start ox_target
ensure [standalone] # Place `jim_bridge` here
# ESX Addons
# ----------
# Other
ensure [jimextras] # Place `jim-payments` / `jim-consumables` / `jim-jobgarage` / `jim-djbooth` here
ensure [jim] # Place all other jim scripts hereIF YOU ALREADY HAVE A [jim] FOLDER, PUT IT IN THAT FOLDER YOU DO NOT NEED TO CREATE A NEW ONE.
Jim-Payments (Required/Optional)
This is the default system for payments in the script but can easily be changed in
client.luaWhen triggered gets a list of the nearest players and lets you choose which one to charge
I class it as
optionalbecause you don't specifically need it if you have another you want to use.
Jim-Consumables (Optional)
If
jim-consumablesis installed, the script will attempt to reroute consumablesThe server side will automatically add the items to
jim-consumables(edit any values you wish there)When used the item will trigger the
jim-script:client:consumeevent which detects wether to use built in event's orjim-consuambles(if found)
Add the script to the server resources
It is highly recommend to put this script folder in a new folder called
[jim]Then add
ensure [jim]AFTER your other scripts in your server.cfg
Ensure List
GO TO YOUR server.cfg
The ORDER of the load order is important, check information here
Resources (EXAMPLE)
# QBCore & Extra stuff
ensure qb-core
ensure [qb]
ensure [standalone] # Place `jim_bridge` here
ensure [voice]
ensure [defaultmaps]
# Extra Jim Stuff
ensure [jimextras] # Place `jim-payments` / `jim-consumables` / `jim-jobgarage` / `jim-djbooth` here
ensure [jim] # Place all other jim scripts hereIF YOU ALREADY HAVE A [jim] FOLDER, PUT IT IN THAT FOLDER YOU DO NOT NEED TO CREATE A NEW ONE.
Jim-Payments (Required/Optional)
This is the default system for payments in the script but can easily be changed in
client.luaWhen triggered gets a list of the nearest players and lets you choose which one to charge
I class it as
optionalbecause you don't specifically need it if you have another you want to use.
Jim-Consumables (Optional)
If
jim-consumablesis installed, the script will attempt to reroute consumablesThe server side will automatically add the items to
jim-consumables(edit any values you wish there)When used the item will trigger the
jim-script:client:consumeevent which detects wether to use built in event's orjim-consuambles(if found)
Add the script to the server resources
It is highly recommend to put this script folder in a new folder called
[jim]Then add
ensure [jim]AFTER your other scripts in your server.cfg
Ensure List
GO TO YOUR server.cfg
The ORDER of the load order is important, check information here
Resources (EXAMPLE)
# Qbox & Extra stuff
ensure ox_lib
ensure qbx_core
ensure ox_target
ensure [ox]
ensure [qbx]
ensure [standalone] # Place `jim_bridge` here
ensure [voice]
ensure [npwd-apps]
ensure qbx_npwd
ensure npwd
# Extra Jim Stuff
ensure [jimextras] # Place `jim-payments` / `jim-consumables` / `jim-jobgarage` / `jim-djbooth` here
ensure [jim] # Place all other jim scripts hereIF YOU ALREADY HAVE A [jim] FOLDER, PUT IT IN THAT FOLDER YOU DO NOT NEED TO CREATE A NEW ONE.
Jim-Payments (Required/Optional)
This is the default system for payments in the script but can easily be changed in
client.luaWhen triggered gets a list of the nearest players and lets you choose which one to charge
I class it as
optionalbecause you don't specifically need it if you have another you want to use.
Jim-Consumables (Optional)
If
jim-consumablesis installed, the script will attempt to reroute consumablesThe server side will automatically add the items to
jim-consumables(edit any values you wish there)When used the item will trigger the
jim-script:client:consumeevent which detects wether to use built in event's orjim-consuambles(if found)
Add the script to the server resources
It is highly recommend to put this script folder in a new folder called
[jim]Then add
ensure [jim]AFTER your other scripts in your server.cfg
Ensure List
GO TO YOUR server.cfg
The ORDER of the load order is important, check information here
Resources (EXAMPLE)
start chat
start sessionmanager
start pe-basicloading
start bob74_ipl
start pma-voice
start oxmysql
start ox_lib
start ox_core
start ox_target
start illenium-appearance
start ox_inventory
ensure [standalone] # Place `jim_bridge` here
# Extra Jim Stuff
ensure [jimextras] # Place `jim-payments` / `jim-consumables` / `jim-jobgarage` / `jim-djbooth` here
ensure [jim] # Place all other jim scripts here
# Extra Other Scripts HereIF YOU ALREADY HAVE A [jim] FOLDER, PUT IT IN THAT FOLDER YOU DO NOT NEED TO CREATE A NEW ONE.
Jim-Payments (Required/Optional)
This is the default system for payments in the script but can easily be changed in
client.luaWhen triggered gets a list of the nearest players and lets you choose which one to charge
I class it as
optionalbecause you don't specifically need it if you have another you want to use.
Jim-Consumables (Optional)
If
jim-consumablesis installed, the script will attempt to reroute consumablesThe server side will automatically add the items to
jim-consumables(edit any values you wish there)When used the item will trigger the
jim-script:client:consumeevent which detects wether to use built in event's orjim-consuambles(if found)
Job Installation
Import the esx_jobs.sql into your database to add the jobs and their grades
INSERT INTO `jobs` (name, label) VALUES
('pizzathis', 'Pizza This')
;
INSERT INTO `job_grades` (job_name, grade, name, label, salary, skin_male, skin_female) VALUES
('pizzathis',0,'recruit','Recruit',12,'{}','{}'),
('pizzathis',1,'novice','Novice',24,'{}','{}'),
('pizzathis',2,'experienced','Experienced',36,'{}','{}'),
('pizzathis',3,'advanced',"Advanced",48,'{}','{}'),
('pizzathis',4,'boss','Manager',0,'{}','{}')
;Add the lines from qb_jobs.txt to your qb-core > shared > jobs.lua
['pizzathis'] = {
label = 'Pizza This',
defaultDuty = true,
grades = {
['0'] = { name = 'Recruit', payment = 50 },
['1'] = { name = 'Novice', payment = 75 },
['2'] = { name = 'Experienced', payment = 100 },
['3'] = { name = 'Advanced', payment = 125 },
['4'] = { name = 'Manager', isboss = true, payment = 150 },
},
},Add the lines from qb_jobs.txt to your qbx_core > shared > jobs.lua
['pizzathis'] = {
label = 'Pizza This',
defaultDuty = true,
grades = {
[0] = { name = 'Recruit', payment = 50 },
[1] = { name = 'Novice', payment = 75 },
[2] = { name = 'Experienced', payment = 100 },
[3] = { name = 'Advanced', payment = 125 },
[4] = { name = 'Manager', isboss = true, payment = 150 },
},
},Import the ox_jobs.sql into your database to add the jobs and their grades
INSERT IGNORE INTO `account_roles` (`name`) VALUES
('novice'),
('experienced'),
('advanced'),
('manager'),
('owner');
INSERT IGNORE INTO `ox_groups` ( `name`, `label`, `colour`, `hasAccount`) VALUES
( 'pizzathis', 'Pizza This', NULL, 1 );
INSERT IGNORE INTO `ox_group_grades` (`group`, `grade`, `label`, `accountRole`) VALUES
('pizzathis', 0, 'Recruit', NULL),
('pizzathis', 1, 'Novice', 'novice'),
('pizzathis', 2, 'Experienced', 'experienced'),
('pizzathis', 3, 'Advanced', 'advanced'),
('pizzathis', 4, 'Manager', 'manager'),
('pizzathis', 5, 'Owner', 'owner');Item Installation
These items work for both old and new qb-inventory
Item Images
Add the images from _install > images to your inventory folder
eg.
qb-inventory > html > images
Item Data
If using qb-inventory or similar, add the lines from qb_items.txt to your qb-core > shared > items.lua
-- JIM-PIZZATHIS --
--BEERS
ambeer = { name = "ambeer", label = "AM Beer", weight = 100, type = "item", image = "ambeer.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "A classic American lager.", },
dusche = { name = "dusche", label = "Dusche Gold", weight = 100, type = "item", image = "dusche.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "Smooth golden German beer.", },
logger = { name = "logger", label = "Logger Beer", weight = 100, type = "item", image = "logger.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "Full-bodied local brew.", },
pisswasser = { name = "pisswasser", label = "Pißwasser", weight = 100, type = "item", image = "pisswaser1.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "Cheap and cheerful lager.", },
pisswasser2 = { name = "pisswasser2", label = "Pißwasser Stout", weight = 100, type = "item", image = "pisswaser2.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "Dark and rich stout.", },
pisswasser3 = { name = "pisswasser3", label = "Pißwasser Pale Ale", weight = 100, type = "item", image = "pisswaser3.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "Crisp and hoppy pale ale.", },
--SODA
sprunk = { name = "sprunk", label = "Sprunk", weight = 100, type = "item", image = "sprunk.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "Fizzy and radioactive green.", },
sprunklight = { name = "sprunklight", label = "Sprunk Light", weight = 100, type = "item", image = "sprunklight.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "Zero sugar. Same kick.", },
ecola = { name = "ecola", label = "eCola", weight = 100, type = "item", image = "ecola.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "That classic cola taste.", },
ecolalight = { name = "ecolalight", label = "eCola Light", weight = 100, type = "item", image = "ecolalight.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "Less sugar. More fizz.", },
--WINES
amarone = { name = "amarone", label = "Amarone", weight = 100, type = "item", image = "amarone.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "Bold Italian red wine.", },
barbera = { name = "barbera", label = "Barbera D'Asti", weight = 100, type = "item", image = "barbera.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "Smooth and fruity red.", },
dolceto = { name = "dolceto", label = "Dolcetto D'Alba", weight = 100, type = "item", image = "dolceto.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "Dry wine with character.", },
housered = { name = "housered", label = "House Red Wine", weight = 100, type = "item", image = "housered.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "Generic but gets the job done.", },
housewhite = { name = "housewhite", label = "House White Wine", weight = 100, type = "item", image = "housewhite.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "Basic dry white wine.", },
rosso = { name = "rosso", label = "Rosso Del Montalcino", weight = 100, type = "item", image = "rosso.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "Premium aged red.", },
--DESSERTS
tiramisu = { name = "tiramisu", label = "Tiramisu", weight = 100, type = "item", image = "tiramisu.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "Coffee-flavored Italian dessert.", },
gelato = { name = "gelato", label = "Choc and Vanilla Gelato", weight = 100, type = "item", image = "gelato.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "Creamy Italian-style ice cream.", },
medfruits = { name = "medfruits", label = "Fresh Fruit Medly", weight = 100, type = "item", image = "medfruits.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "A mix of fresh Mediterranean fruits.", },
--PASTA
bolognese = { name = "bolognese", label = "Bolognese", weight = 100, type = "item", image = "bolognese.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "Pasta with rich meat sauce.", },
calamari = { name = "calamari", label = "Calamari Marinara", weight = 100, type = "item", image = "calamari.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "Pasta topped with squid in red sauce.", },
meatball = { name = "meatball", label = "Homemade Meatballs", weight = 100, type = "item", image = "meatball.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "Nonna's favorite meatball recipe.", },
alla = { name = "alla", label = "Alla Vodka", weight = 100, type = "item", image = "alla.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "Creamy vodka-tomato pasta sauce.", },
pescatore = { name = "pescatore", label = "Pescatore", weight = 100, type = "item", image = "pescatore.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "Seafood pasta in tomato sauce.", },
--PIZZA SLICES
capricciosa = { name = "capricciosa", label = "Capriccosa", weight = 100, type = "item", image = "capricciosa.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "Mushroom, ham, and artichoke pizza.", },
diavola = { name = "diavola", label = "Diavola", weight = 100, type = "item", image = "diavola.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "Spicy salami-topped pizza.", },
marinara = { name = "marinara", label = "Marinara", weight = 100, type = "item", image = "marinara.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "Tomato, garlic, and oregano pizza.", },
margherita = { name = "margherita", label = "Margherita", weight = 100, type = "item", image = "margherita.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "Classic tomato and mozzarella pizza.", },
prosciuttio = { name = "prosciuttio", label = "Prosciuttio E Funghi", weight = 100, type = "item", image = "proscuttio.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "Ham and mushroom pizza.", },
vegetariana = { name = "vegetariana", label = "Vegetariana", weight = 100, type = "item", image = "vegetariana.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "Loaded with grilled vegetables.", },
--PIZZA BOXES
capricciosabox = { name = "capricciosabox", label = "Boxed Capriccosa", weight = 100, type = "item", image = "pizzabox.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "Takeaway box of Capriccosa pizza.", },
diavolabox = { name = "diavolabox", label = "Boxed Diavola", weight = 100, type = "item", image = "pizzabox.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "Takeaway box of Diavola pizza.", },
marinarabox = { name = "marinarabox", label = "Boxed Marinara", weight = 100, type = "item", image = "pizzabox.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "Takeaway box of Marinara pizza.", },
margheritabox = { name = "margheritabox", label = "Boxed Margherita", weight = 100, type = "item", image = "pizzabox.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "Takeaway box of Margherita pizza.", },
prosciuttiobox = { name = "prosciuttiobox", label = "Boxed Prosciuttio E Funghi",weight = 100, type = "item", image = "pizzabox.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "Takeaway box of ham & mushroom pizza.", },
vegetarianabox = { name = "vegetarianabox", label = "Boxed Vegetariana", weight = 100, type = "item", image = "pizzabox.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "Takeaway box of veggie pizza.", },
--INGREDIENTS
pizzabase = { name = "pizzabase", label = "Pizza Base", weight = 100, type = "item", image = "base2.png", unique = false, useable = false, shouldClose = false, combinable = nil, description = "A pre-baked pizza base, ready to top.", },
pizzadough = { name = "pizzadough", label = "Pizza Dough", weight = 100, type = "item", image = "pizzadough.png", unique = false, useable = false, shouldClose = false, combinable = nil, description = "Unbaked pizza dough ball.", },
mozz = { name = "mozz", label = "Mozzeralla", weight = 100, type = "item", image = "mozz.png", unique = false, useable = false, shouldClose = false, combinable = nil, description = "Fresh mozzarella cheese.", },
sauce = { name = "sauce", label = "Tomato Sauce", weight = 100, type = "item", image = "sauce.png", unique = false, useable = false, shouldClose = false, combinable = nil, description = "Zesty tomato base for pizzas.", },
salami = { name = "salami", label = "Salami", weight = 100, type = "item", image = "salami.png", unique = false, useable = false, shouldClose = false, combinable = nil, description = "Slices of spicy salami.", },
ham = { name = "ham", label = "Ham", weight = 100, type = "item", image = "ham.png", unique = false, useable = false, shouldClose = false, combinable = nil, description = "Thin slices of cured ham.", },
squid = { name = "squid", label = "Calamari", weight = 100, type = "item", image = "squid.png", unique = false, useable = false, shouldClose = false, combinable = nil, description = "Fresh squid rings, cleaned.", },
pizzmushrooms = { name = "pizzmushrooms", label = "Mushrooms", weight = 100, type = "item", image = "mushrooms.png", unique = false, useable = false, shouldClose = false, combinable = nil, description = "Sliced mushrooms for pizza.", },
olives = { name = "olives", label = "Olives", weight = 100, type = "item", image = "olives.png", unique = false, useable = false, shouldClose = false, combinable = nil, description = "Black olives, pitted.", },
basil = { name = "basil", label = "Basil", weight = 100, type = "item", image = "basil.png", unique = false, useable = false, shouldClose = false, combinable = nil, description = "Aromatic fresh basil leaves.", },
meat = { name = "meat", label = "Meat", weight = 200, type = "item", image = "meat.png", unique = false, useable = false, shouldClose = false, combinable = nil, description = "A slab of raw meat.", },
pasta = { name = "pasta", label = "Bag of Pasta", weight = 200, type = "item", image = "pasta.png", unique = false, useable = false, shouldClose = false, combinable = nil, description = "Uncooked dried pasta.", },
lettuce = { name = "lettuce", label = "Lettuce", weight = 100, type = "item", image = "lettuce.png", unique = false, useable = false, shouldClose = false, combinable = nil, description = "Crisp and leafy lettuce."},
This applies to any framework using ox_inventory
Currently while using ESX my scripts only support ox_inventory
Item Images
Copy and paste the images from _install > images to your inventory folder
eg.
ox_inventory > web > images
Item Data
Add the ox_items.txt to your ox_inventory > data > items.lua
-- JIM-PIZZATHIS --
-- BEERS
ambeer = { label = "AM Beer", weight = 100, stack = true, close = true, description = "A classic American lager.",
client = { image = "ambeer.png", event = "jim-pizzathis:client:Consume", },
},
dusche = { label = "Dusche Gold", weight = 100, stack = true, close = true, description = "Smooth golden German beer.",
client = { image = "dusche.png", event = "jim-pizzathis:client:Consume", },
},
logger = { label = "Logger Beer", weight = 100, stack = true, close = true, description = "Full-bodied local brew.",
client = { image = "logger.png", event = "jim-pizzathis:client:Consume", },
},
pisswasser = { label = "Pißwasser", weight = 100, stack = true, close = true, description = "Cheap and cheerful lager.",
client = { image = "pisswaser1.png", event = "jim-pizzathis:client:Consume", },
},
pisswasser2 = { label = "Pißwasser Stout", weight = 100, stack = true, close = true, description = "Dark and rich stout.",
client = { image = "pisswaser2.png", event = "jim-pizzathis:client:Consume", },
},
pisswasser3 = { label = "Pißwasser Pale Ale", weight = 100, stack = true, close = true, description = "Crisp and hoppy pale ale.",
client = { image = "pisswaser3.png", event = "jim-pizzathis:client:Consume", },
},
-- SODA
sprunk = { label = "Sprunk", weight = 100, stack = true, close = true, description = "Fizzy and radioactive green.",
client = { image = "sprunk.png", event = "jim-pizzathis:client:Consume", },
},
sprunklight = { label = "Sprunk Light", weight = 100, stack = true, close = true, description = "Zero sugar. Same kick.",
client = { image = "sprunklight.png", event = "jim-pizzathis:client:Consume", },
},
ecola = { label = "eCola", weight = 100, stack = true, close = true, description = "That classic cola taste.",
client = { image = "ecola.png", event = "jim-pizzathis:client:Consume", },
},
ecolalight = { label = "eCola Light", weight = 100, stack = true, close = true, description = "Less sugar. More fizz.",
client = { image = "ecolalight.png", event = "jim-pizzathis:client:Consume", },
},
-- WINES
amarone = { label = "Amarone", weight = 100, stack = true, close = true, description = "Bold Italian red wine.",
client = { image = "amarone.png", event = "jim-pizzathis:client:Consume", },
},
barbera = { label = "Barbera D'Asti", weight = 100, stack = true, close = true, description = "Smooth and fruity red.",
client = { image = "barbera.png", event = "jim-pizzathis:client:Consume", },
},
dolceto = { label = "Dolcetto D'Alba", weight = 100, stack = true, close = true, description = "Dry wine with character.",
client = { image = "dolceto.png", event = "jim-pizzathis:client:Consume", },
},
housered = { label = "House Red Wine", weight = 100, stack = true, close = true, description = "Generic but gets the job done.",
client = { image = "housered.png", event = "jim-pizzathis:client:Consume", },
},
housewhite = { label = "House White Wine", weight = 100, stack = true, close = true, description = "Basic dry white wine.",
client = { image = "housewhite.png", event = "jim-pizzathis:client:Consume", },
},
rosso = { label = "Rosso Del Montalcino", weight = 100, stack = true, close = true, description = "Premium aged red.",
client = { image = "rosso.png", event = "jim-pizzathis:client:Consume", },
},
vodka = { label = "Vodka", eight = 500, stack = true, close = true, description = "For all the thirsty out there",
client = { image = "vodka.png", event = "jim-pizzathis:client:Consume", },
},
-- DESSERTS
tiramisu = { label = "Tiramisu", weight = 100, stack = true, close = true, description = "Coffee-flavored Italian dessert.",
client = { image = "tiramisu.png", event = "jim-pizzathis:client:Consume", },
},
gelato = { label = "Choc and Vanilla Gelato", weight = 100, stack = true, close = true, description = "Creamy Italian-style ice cream.",
client = { image = "gelato.png", event = "jim-pizzathis:client:Consume", },
},
medfruits = { label = "Fresh Fruit Medly", weight = 100, stack = true, close = true, description = "A mix of fresh Mediterranean fruits.",
client = { image = "medfruits.png", event = "jim-pizzathis:client:Consume", },
},
-- PASTA
bolognese = { label = "Bolognese", weight = 100, stack = true, close = true, description = "Pasta with rich meat sauce.",
client = { image = "bolognese.png", event = "jim-pizzathis:client:Consume", },
},
calamari = { label = "Calamari Marinara", weight = 100, stack = true, close = true, description = "Pasta topped with squid in red sauce.",
client = { image = "calamari.png", event = "jim-pizzathis:client:Consume", },
},
meatball = { label = "Homemade Meatballs", weight = 100, stack = true, close = true, description = "Nonna's favorite meatball recipe.",
client = { image = "meatball.png", event = "jim-pizzathis:client:Consume", },
},
alla = { label = "Alla Vodka", weight = 100, stack = true, close = true, description = "Creamy vodka-tomato pasta sauce.",
client = { image = "alla.png", event = "jim-pizzathis:client:Consume", },
},
pescatore = { label = "Pescatore", weight = 100, stack = true, close = true, description = "Seafood pasta in tomato sauce.",
client = { image = "pescatore.png", event = "jim-pizzathis:client:Consume", },
},
-- PIZZA SLICES
capricciosa = { label = "Capriccosa", weight = 100, stack = true, close = true, description = "Mushroom, ham, and artichoke pizza.",
client = { image = "capricciosa.png", event = "jim-pizzathis:client:Consume", },
},
diavola = { label = "Diavola", weight = 100, stack = true, close = true, description = "Spicy salami-topped pizza.",
client = { image = "diavola.png", event = "jim-pizzathis:client:Consume", },
},
marinara = { label = "Marinara", weight = 100, stack = true, close = true, description = "Tomato, garlic, and oregano pizza.",
client = { image = "marinara.png", event = "jim-pizzathis:client:Consume", },
},
margherita = { label = "Margherita", weight = 100, stack = true, close = true, description = "Classic tomato and mozzarella pizza.",
client = { image = "margherita.png", event = "jim-pizzathis:client:Consume", },
},
prosciuttio = { label = "Prosciuttio E Funghi", weight = 100, stack = true, close = true, description = "Ham and mushroom pizza.",
client = { image = "proscuttio.png", event = "jim-pizzathis:client:Consume", },
},
vegetariana = { label = "Vegetariana", weight = 100, stack = true, close = true, description = "Loaded with grilled vegetables.",
client = { image = "vegetariana.png", event = "jim-pizzathis:client:Consume", },
},
-- PIZZA BOXES
capricciosabox = { label = "Boxed Capriccosa", weight = 100, stack = true, close = true, description = "Takeaway box of Capriccosa pizza.",
client = { image = "pizzabox.png", event = "jim-pizzathis:client:Consume", },
},
diavolabox = { label = "Boxed Diavola", weight = 100, stack = true, close = true, description = "Takeaway box of Diavola pizza.",
client = { image = "pizzabox.png", event = "jim-pizzathis:client:Consume", },
},
marinarabox = { label = "Boxed Marinara", weight = 100, stack = true, close = true, description = "Takeaway box of Marinara pizza.",
client = { image = "pizzabox.png", event = "jim-pizzathis:client:Consume", },
},
margheritabox = { label = "Boxed Margherita", weight = 100, stack = true, close = true, description = "Takeaway box of Margherita pizza.",
client = { image = "pizzabox.png", event = "jim-pizzathis:client:Consume", },
},
prosciuttiobox = { label = "Boxed Prosciuttio E Funghi", weight = 100, stack = true, close = true, description = "Takeaway box of ham & mushroom pizza.",
client = { image = "pizzabox.png", event = "jim-pizzathis:client:Consume", },
},
vegetarianabox = { label = "Boxed Vegetariana", weight = 100, stack = true, close = true, description = "Takeaway box of veggie pizza.",
client = { image = "pizzabox.png", event = "jim-pizzathis:client:Consume", },
},
-- INGREDIENTS
pizzabase = { label = "Pizza Base", weight = 100, stack = true, close = false, description = "A pre-baked pizza base, ready to top.",
client = { image = "base2.png", event = "jim-pizzathis:client:Consume", },
},
pizzadough = { label = "Pizza Dough", weight = 100, stack = true, close = false, description = "Unbaked pizza dough ball.",
client = { image = "pizzadough.png", event = "jim-pizzathis:client:Consume", },
},
mozz = { label = "Mozzeralla", weight = 100, stack = true, close = false, description = "Fresh mozzarella cheese.",
client = { image = "mozz.png", event = "jim-pizzathis:client:Consume", },
},
sauce = { label = "Tomato Sauce", weight = 100, stack = true, close = false, description = "Zesty tomato base for pizzas.",
client = { image = "sauce.png", event = "jim-pizzathis:client:Consume", },
},
salami = { label = "Salami", weight = 100, stack = true, close = false, description = "Slices of spicy salami.",
client = { image = "salami.png", event = "jim-pizzathis:client:Consume", },
},
ham = { label = "Ham", weight = 100, stack = true, close = false, description = "Thin slices of cured ham.",
client = { image = "ham.png", event = "jim-pizzathis:client:Consume", },
},
squid = { label = "Calamari", weight = 100, stack = true, close = false, description = "Fresh squid rings, cleaned.",
client = { image = "squid.png", event = "jim-pizzathis:client:Consume", },
},
pizzmushrooms = { label = "Mushrooms", weight = 100, stack = true, close = false, description = "Sliced mushrooms for pizza.",
client = { image = "mushrooms.png", event = "jim-pizzathis:client:Consume", },
},
olives = { label = "Olives", weight = 100, stack = true, close = false, description = "Black olives, pitted.",
client = { image = "olives.png", event = "jim-pizzathis:client:Consume", },
},
basil = { label = "Basil", weight = 100, stack = true, close = false, description = "Aromatic fresh basil leaves.",
client = { image = "basil.png", event = "jim-pizzathis:client:Consume", },
},
meat = { label = "Meat", weight = 200, stack = true, close = false, description = "A slab of raw meat.",
client = { image = "meat.png", event = "jim-pizzathis:client:Consume", },
},
pasta = { label = "Bag of Pasta", weight = 200, stack = true, close = false, description = "Uncooked dried pasta.",
client = { image = "pasta.png", event = "jim-pizzathis:client:Consume", },
},
lettuce = { label = "Lettuce", weight = 100, stack = true, close = false, description = "Crisp and leafy lettuce.",
client = { image = "lettuce.png", event = "jim-pizzathis:client:Consume", },
},
Last updated