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
('hornys', 'Hornys')
;
INSERT INTO `job_grades` (job_name, grade, name, label, salary, skin_male, skin_female) VALUES
('hornys',0,'recruit','Recruit',12,'{}','{}'),
('hornys',1,'novice','Novice',24,'{}','{}'),
('hornys',2,'experienced','Experienced',36,'{}','{}'),
('hornys',3,'advanced',"Advanced",48,'{}','{}'),
('hornys',4,'boss','Manager',0,'{}','{}')
;Add the lines from qb_jobs.txt to your qb-core > shared > jobs.lua
['hornys'] = {
label = "Horny's",
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
['hornys'] = {
label = "Horny's",
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
( 'hornys', 'Hornys', NULL, 1 );
INSERT IGNORE INTO `ox_group_grades` (`group`, `grade`, `label`, `accountRole`) VALUES
('hornys', 0, 'Recruit', NULL),
('hornys', 1, 'Novice', 'novice'),
('hornys', 2, 'Experienced', 'experienced'),
('hornys', 3, 'Advanced', 'advanced'),
('hornys', 4, 'Manager', 'manager'),
('hornys', 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-HORNYS --
milk = { name = "milk", label = "Milk", weight = 100, type = "item", image = "burger-milk.png", unique = false, useable = false, shouldClose = true, description = "Bottle of milk"},
cream = { name = "cream", label = "Cream", weight = 100, type = "item", image = "cream.png", unique = false, useable = false, shouldClose = true, description = "Dairy cream"},
chillimince = { name = "chillimince", label = "Chillimince", weight = 100, type = "item", image = "chillimince.png", unique = false, useable = false, shouldClose = true, description = "Spiced chili mince"},
butter = { name = "butter", label = "Butter", weight = 100, type = "item", image = "farming_butter.png", unique = false, useable = false, shouldClose = true, description = "Creamy farm butter"},
chickenbreast = { name = "chickenbreast", label = "Raw Chicken Breast", weight = 100, type = "item", image = "farming_chickenbreast.png", unique = false, useable = true, shouldClose = true, description = "Fresh chicken breast"},
chickenfillet = { name = "chickenfillet", label = "Chicken Fillets", weight = 100, type = "item", image = "chickenbreasts.png", unique = false, useable = true, shouldClose = true, description = "Fried chicken breast strips"},
chickenhorn = { name = "chickenhorn", label = "Chicken Hornstars", weight = 100, type = "item", image = "chickhornstars.png", unique = false, useable = true, shouldClose = true, description = "Nuggets shaped like stars"},
grilledchicken = { name = "grilledchicken", label = "Chicken Sandwich", weight = 100, type = "item", image = "chickensandwich.png", unique = false, useable = true, shouldClose = true, description = "Grilled chicken sandwich"},
chickensalad = { name = "chickensalad", label = "Chicken Salad", weight = 100, type = "item", image = "chickensalad.png", unique = false, useable = true, shouldClose = true, description = "Fresh salad with chicken slices"},
hunksohen = { name = "hunksohen", label = "Hunk o' Hen", weight = 100, type = "item", image = "chickenthighs.png", unique = false, useable = true, shouldClose = true, description = "Juicy chicken thigh pieces"},
chickentaco = { name = "chickentaco", label = "Chicken Taco", weight = 100, type = "item", image = "chickentaco.png", unique = false, useable = true, shouldClose = true, description = "Taco with seasoned chicken"},
gazpacho = { name = "gazpacho", label = "Guzpacho", weight = 100, type = "item", image = "gazpacho.png", unique = false, useable = true, shouldClose = true, description = "Chilled tomato-based soup"},
hornbreakfast = { name = "hornbreakfast", label = "Horny's Breakfast", weight = 100, type = "item", image = "bangers.png", unique = false, useable = true, shouldClose = true, description = "Hearty breakfast plate"},
eggsbenedict = { name = "eggsbenedict", label = "Eggs Benedict", weight = 100, type = "item", image = "eggbene.png", unique = false, useable = true, shouldClose = true, description = "Poached eggs with hollandaise"},
hashbrowns = { name = "hashbrowns", label = "Hash Browns", weight = 100, type = "item", image = "hashbrown.png", unique = false, useable = true, shouldClose = true, description = "Golden crispy hash browns"},
sausages = { name = "sausages", label = "Sausages", weight = 100, type = "item", image = "sausage.png", unique = false, useable = true, shouldClose = true, description = "Cooked pork sausages"},
baconroll = { name = "baconroll", label = "Bacon Roll", weight = 100, type = "item", image = "baconroll.png", unique = false, useable = true, shouldClose = true, description = "Bacon wrapped in a roll"},
baconeggtoast = { name = "baconeggtoast", label = "Bacon & Egg on Toast", weight = 100, type = "item", image = "baconegg.png", unique = false, useable = true, shouldClose = true, description = "Classic breakfast toast"},
frenchtoast = { name = "frenchtoast", label = "French Toast", weight = 100, type = "item", image = "frenchtoast.png", unique = false, useable = true, shouldClose = true, description = "Sweet egg-battered toast"},
frenchtoastbacon = { name = "frenchtoastbacon", label = "French Toast Bacon", weight = 100, type = "item", image = "frenchbacon.png", unique = false, useable = true, shouldClose = true, description = "French toast with crispy bacon"},
hornburger = { name = "hornburger", label = "HornBurger", weight = 100, type = "item", image = "hornburger.png", unique = false, useable = true, shouldClose = true, description = "Signature Horny burger"},
dblhornburger = { name = "dblhornburger", label = "DBL HornBurger", weight = 100, type = "item", image = "dblhornburger.png", unique = false, useable = true, shouldClose = true, description = "Double patty Horny burger"},
baconhornburger = { name = "baconhornburger", label = "HornBurger Bacon", weight = 100, type = "item", image = "baconburger.png", unique = false, useable = true, shouldClose = true, description = "Bacon-topped HornBurger"},
picklehornburger = { name = "picklehornburger", label = "HornBurger Pickle", weight = 100, type = "item", image = "pickleburger.png", unique = false, useable = true, shouldClose = true, description = "HornBurger with extra pickles"},
chickenhornburger = { name = "chickenhornburger", label = "Chicken HornBurger", weight = 100, type = "item", image = "chickenburger.png", unique = false, useable = true, shouldClose = true, description = "Chicken version of HornBurger"},
dblchickenhornburger = { name = "dblchickenhornburger", label = "DBL Chicken HornBurger", weight = 100, type = "item", image = "dblchickenburger.png", unique = false, useable = true, shouldClose = true, description = "Double chicken HornBurger"},
icecone = { name = "icecone", label = "Ice Cone", weight = 100, type = "item", image = "cone.png", unique = false, useable = true, shouldClose = true, description = "Sweet frozen treat"},
icenugget = { name = "icenugget", label = "Ice Nugget", weight = 100, type = "item", image = "icenugget.png", unique = false, useable = true, shouldClose = true, description = "Bite-sized ice dessert"},
icecake = { name = "icecake", label = "Ice Cream Cake", weight = 100, type = "item", image = "icecake.png", unique = false, useable = true, shouldClose = true, description = "Frozen dessert cake"},
orangotang = { name = "orangotang", label = "Orangotang", weight = 100, type = "item", image = "orangotang.png", unique = false, useable = true, shouldClose = true, description = "Orangotang"},
raine = { name = "raine", label = "Raine", weight = 100, type = "item", image = "raine.png", unique = false, useable = true, shouldClose = true, description = "Refreshing Raine beverage"},
junkdrink = { name = "junkdrink", label = "Junk", weight = 100, type = "item", image = "junkdrink.png", unique = false, useable = true, shouldClose = true, description = "Questionable junk drink"},
burgerpatty = { name = "burgerpatty", label = "Patty", weight = 100, type = "item", image = "burgerpatty.png", unique = false, useable = false, shouldClose = true, description = "Uncooked burger patty"},
breadslice = { name = "breadslice", label = "Slice of Bread", weight = 100, type = "item", image = "breadslice.png", unique = false, useable = true, shouldClose = true, description = "A plain slice of bread"},
cheddar = { name = "cheddar", label = "Cheese", weight = 100, type = "item", image = "cheddar.png", unique = false, useable = false, shouldClose = true, description = "Cheddar cheese slice"},
lettuce = { name = "lettuce", label = "Lettuce", weight = 100, type = "item", image = "lettuce.png", unique = false, useable = false, shouldClose = true, description = "Fresh leafy lettuce"},
tomato = { name = "tomato", label = "Tomato", weight = 100, type = "item", image = "tomato.png", unique = false, useable = false, shouldClose = true, description = "Ripe tomato"},
burgerbun = { name = "burgerbun", label = "Burger Bun", weight = 100, type = "item", image = "burgerbun.png", unique = false, useable = false, shouldClose = true, description = "Bun for burgers"},
burgermeat = { name = "burgermeat", label = "Burger Meat", weight = 100, type = "item", image = "burgermeat.png", unique = false, useable = false, shouldClose = true, description = "Minced meat for burgers"},
slicedtomato = { name = "slicedtomato", label = "Sliced Tomato", weight = 100, type = "item", image = "slicedtomato.png", unique = false, useable = false, shouldClose = true, description = "Fresh tomato slices"},
slicedpotato = { name = "slicedpotato", label = "Sliced Potato", weight = 100, type = "item", image = "burger-slicedpotato.png", unique = false, useable = false, shouldClose = true, description = "Raw potato slices"},
potato = { name = "potato", label = "Potato", weight = 100, type = "item", image = "potato.png", unique = false, useable = false, shouldClose = true, description = "Unpeeled potato"},
egg = { name = "egg", label = "Egg", weight = 100, type = "item", image = "farming_egg.png", unique = false, useable = false, shouldClose = true, description = "Fresh farm egg"},
bacon = { name = "bacon", label = "Bacon", weight = 100, type = "item", image = "bacon.png", unique = false, useable = false, shouldClose = true, description = "Cured bacon strip"},
rawbacon = { name = "rawbacon", label = "Raw Bacon", weight = 100, type = "item", image = "rawbacon.png", unique = false, useable = false, shouldClose = true, description = "Uncooked bacon"},
rawsausage = { name = "rawsausage", label = "Raw Sausages", weight = 100, type = "item", image = "rawsausage.png", unique = false, useable = false, shouldClose = true, description = "Uncooked sausages"},
pickle = { name = "pickle", label = "Pickle", weight = 200, type = "item", image = "pickle.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "A jar of pickles"},
sprunk = { name = "sprunk", label = "Sprunk", weight = 100, type = "item", image = "sprunk.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "Lemon-lime soda"},
sprunklight = { name = "sprunklight", label = "Sprunk Light", weight = 100, type = "item", image = "sprunklight.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "Low-calorie soda"},
ecola = { name = "ecola", label = "eCola", weight = 100, type = "item", image = "ecola.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "Cola drink"},
ecolalight = { name = "ecolalight", label = "eCola Light", weight = 100, type = "item", image = "ecolalight.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "Diet cola drink"},
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-HORNYS --
hornburger = { label = "HornBurger", weight = 100, stack = true, close = true, description = "Signature Horny burger",
client = { image = "hornburger.png", event = "jim-hornys:client:Consume", }
},
dblhornburger = { label = "DBL HornBurger", weight = 100, stack = true, close = true, description = "Double patty Horny burger",
client = { image = "dblhornburger.png", event = "jim-hornys:client:Consume", }
},
baconhornburger = { label = "HornBurger Bacon", weight = 100, stack = true, close = true, description = "Bacon-topped HornBurger",
client = { image = "baconburger.png", event = "jim-hornys:client:Consume", }
},
picklehornburger = { label = "HornBurger Pickle", weight = 100, stack = true, close = true, description = "HornBurger with extra pickles",
client = { image = "pickleburger.png", event = "jim-hornys:client:Consume", }
},
chickenhornburger = { label = "Chicken HornBurger", weight = 100, stack = true, close = true, description = "Chicken version of HornBurger",
client = { image = "chickenburger.png", event = "jim-hornys:client:Consume", }
},
dblchickenhornburger = { label = "DBL Chicken HornBurger", weight = 100, stack = true, close = true, description = "Double chicken HornBurger",
client = { image = "dblchickenburger.png", event = "jim-hornys:client:Consume", }
},
gazpacho = { label = "Guzpacho", weight = 100, stack = true, close = true, description = "Chilled tomato-based soup",
client = { image = "gazpacho.png", event = "jim-hornys:client:Consume", }
},
-- Chicken Items
chickenbreast = { label = "Raw Chicken Breast", weight = 100, stack = true, close = true, description = "Fresh chicken breast",
client = { image = "farming_chickenbreast.png", }
},
chickenfillet = { label = "Chicken Fillets", weight = 100, stack = true, close = true, description = "Fried chicken breast strips",
client = { image = "chickenbreasts.png", event = "jim-hornys:client:Consume", }
},
chickenhorn = { label = "Chicken Hornstars", weight = 100, stack = true, close = true, description = "Nuggets shaped like stars",
client = { image = "chickhornstars.png", event = "jim-hornys:client:Consume", }
},
grilledchicken = { label = "Chicken Sandwich", weight = 100, stack = true, close = true, description = "Grilled chicken sandwich",
client = { image = "chickensandwich.png", event = "jim-hornys:client:Consume", }
},
chickensalad = { label = "Chicken Salad", weight = 100, stack = true, close = true, description = "Fresh salad with chicken slices",
client = { image = "chickensalad.png", event = "jim-hornys:client:Consume", }
},
hunksohen = { label = "Hunk o' Hen", weight = 100, stack = true, close = true, description = "Juicy chicken thigh pieces",
client = { image = "chickenthighs.png", event = "jim-hornys:client:Consume", }
},
chickentaco = { label = "Chicken Taco", weight = 100, stack = true, close = true, description = "Taco with seasoned chicken",
client = { image = "chickentaco.png", event = "jim-hornys:client:Consume", }
},
-- Breakfast & Meals
hornbreakfast = { label = "Horny's Breakfast", weight = 100, stack = true, close = true, description = "Hearty breakfast plate",
client = { image = "bangers.png", event = "jim-hornys:client:Consume", }
},
eggsbenedict = { label = "Eggs Benedict", weight = 100, stack = true, close = true, description = "Poached eggs with hollandaise",
client = { image = "eggbene.png", event = "jim-hornys:client:Consume", }
},
baconroll = { label = "Bacon Roll", weight = 100, stack = true, close = true, description = "Bacon wrapped in a roll",
client = { image = "baconroll.png", event = "jim-hornys:client:Consume", }
},
baconeggtoast = { label = "Bacon & Egg on Toast", weight = 100, stack = true, close = true, description = "Classic breakfast toast",
client = { image = "baconegg.png", event = "jim-hornys:client:Consume", }
},
frenchtoast = { label = "French Toast", weight = 100, stack = true, close = true, description = "Sweet egg-battered toast",
client = { image = "frenchtoast.png", event = "jim-hornys:client:Consume", }
},
frenchtoastbacon = { label = "French Toast Bacon", weight = 100, stack = true, close = true, description = "French toast with crispy bacon",
client = { image = "frenchbacon.png", event = "jim-hornys:client:Consume", }
},
hashbrowns = { label = "Hash Browns", weight = 100, stack = true, close = true, description = "Golden crispy hash browns",
client = { image = "hashbrown.png", event = "jim-hornys:client:Consume", }
},
-- Sides & Fries
-- Desserts
icecone = { label = "Ice Cone", weight = 100, stack = true, close = true, description = "Sweet frozen treat",
client = { image = "cone.png", event = "jim-hornys:client:Consume", }
},
icenugget = { label = "Ice Nugget", weight = 100, stack = true, close = true, description = "Bite-sized ice dessert",
client = { image = "icenugget.png", event = "jim-hornys:client:Consume", }
},
icecake = { label = "Ice Cream Cake", weight = 100, stack = true, close = true, description = "Frozen dessert cake",
client = { image = "icecake.png", event = "jim-hornys:client:Consume", }
},
-- Drinks
raine = { label = "Raine", weight = 100, stack = true, close = true, description = "Refreshing Raine beverage",
client = { image = "raine.png", event = "jim-hornys:client:Consume", }
},
junkdrink = { label = "Junk", weight = 100, stack = true, close = true, description = "Questionable junk drink",
client = { image = "junkdrink.png", event = "jim-hornys:client:Consume", }
},
sprunk = { label = "Sprunk", weight = 100, stack = true, close = true, description = "Lemon-lime soda",
client = { image = "sprunk.png", event = "jim-hornys:client:Consume", }
},
sprunklight = { label = "Sprunk Light", weight = 100, stack = true, close = true, description = "Low-calorie soda",
client = { image = "sprunklight.png", event = "jim-hornys:client:Consume", }
},
ecola = { label = "eCola", weight = 100, stack = true, close = true, description = "Cola drink",
client = { image = "ecola.png", event = "jim-hornys:client:Consume", }
},
ecolalight = { label = "eCola Light", weight = 100, stack = true, close = true, description = "Diet cola drink",
client = { image = "ecolalight.png", event = "jim-hornys:client:Consume", }
},
orangotang = { label = "Orangotang", weight = 100, stack = true, close = true, description = "Orangotang",
client = { image = "orangotang.png", event = "jim-hornys:client:Consume", }
},
-- Ingredients
cheddar = { label = "Cheese", weight = 100, stack = true, close = true, description = "Cheddar cheese slice",
client = { image = "cheddar.png", event = "jim-hornys:client:Consume", }
},
lettuce = { label = "Lettuce", weight = 100, stack = true, close = true, description = "Fresh leafy lettuce",
client = { image = "lettuce.png", event = "jim-hornys:client:Consume", }
},
tomato = { label = "Tomato", weight = 100, stack = true, close = true, description = "Ripe tomato",
client = { image = "tomato.png", event = "jim-hornys:client:Consume", }
},
slicedtomato = { label = "Sliced Tomato", weight = 100, stack = true, close = true, description = "Fresh tomato slices",
client = { image = "slicedtomato.png", event = "jim-hornys:client:Consume", }
},
milk = { label = "Milk", weight = 100, stack = true, close = true, description = "Bottle of milk",
client = { image = "burger-milk.png", event = "jim-hornys:client:Consume", }
},
cream = { label = "Cream", weight = 100, stack = true, close = true, description = "Dairy cream",
client = { image = "cream.png", event = "jim-hornys:client:Consume", }
},
coffee = { label = "Coffee", weight = 200, stack = true, close = true, description = "Pump 4 Caffeine",
client = { image = "coffee.png", event = "jim-hornys:client:Consume", }
},
water_bottle = { label = "Water Bottle", weight = 300, stack = true, close = true, description = "For all the thirsty out there",
client = { image = "water.png", event = "jim-hornys:client:Consume", }
},
-- Raw Ingredients
burgerpatty = { label = "Patty", weight = 100, stack = true, close = true, description = "Uncooked burger patty",
client = { image = "burgerpatty.png", event = "jim-hornys:client:Consume", }
},
burgermeat = { label = "Burger Meat", weight = 100, stack = true, close = true, description = "Minced meat for burgers",
client = { image = "burgermeat.png", event = "jim-hornys:client:Consume", }
},
burgerbun = { label = "Burger Bun", weight = 100, stack = true, close = true, description = "Bun for burgers",
client = { image = "burgerbun.png", event = "jim-hornys:client:Consume", }
},
breadslice = { label = "Slice of Bread", weight = 100, stack = true, close = true, description = "A plain slice of bread",
client = { image = "breadslice.png", event = "jim-hornys:client:Consume", }
},
egg = { label = "Egg", weight = 100, stack = true, close = true, description = "Fresh farm egg",
client = { image = "farming_egg.png", event = "jim-hornys:client:Consume", }
},
bacon = { label = "Bacon", weight = 100, stack = true, close = true, description = "Cured bacon strip",
client = { image = "bacon.png", event = "jim-hornys:client:Consume", }
},
rawbacon = { label = "Raw Bacon", weight = 100, stack = true, close = true, description = "Uncooked bacon",
client = { image = "rawbacon.png", event = "jim-hornys:client:Consume", }
},
rawsausage = { label = "Raw Sausages", weight = 100, stack = true, close = true, description = "Uncooked sausages",
client = { image = "rawsausage.png", event = "jim-hornys:client:Consume", }
},
pickle = { label = "Pickle", weight = 200, stack = true, close = true, description = "A jar of pickles",
client = { image = "pickle.png", event = "jim-hornys:client:Consume", }
},
slicedpotato = { label = "Sliced Potato", weight = 100, stack = true, close = true, description = "Raw potato slices",
client = { image = "burger-slicedpotato.png", event = "jim-hornys:client:Consume", }
},
potato = { label = "Potato", weight = 100, stack = true, close = true, description = "Unpeeled potato",
client = { image = "potato.png", event = "jim-hornys:client:Consume", }
},
sausages = { label = "Sausages", weight = 100, stack = true, close = true, description = "Cooked pork sausages",
client = { image = "sausage.png", event = "jim-hornys:client:Consume", }
},
chillimince = { label = "Chillimince", weight = 100, stack = true, close = true, description = "Spiced chili mince",
client = { image = "chillimince.png", event = "jim-hornys:client:Consume", }
},
butter = { label = "Butter", weight = 100, stack = true, close = true, description = "Creamy farm butter",
client = { image = "farming_butter.png", event = "jim-hornys:client:Consume", }
},Last updated