📄Installation Guide
Do not skim the instructions. You need to follow every step of the Install Guide to make sure you're installing the script correctly
Dependencies
1. Add the script to your server resources
We highly recommend putting jim-bakery in a new folder called [jim]
NOTE: IF YOU ALREADY HAVE A [jim] FOLDER PUT IT IN THAT FOLDER YOU DO NOT NEED TO CREATE A NEW ONE.
Then add ensure [jim] after your other scripts have started in your server.cfg
2. Items
Add the images from the images folder in to your
INVENTORY > HTML > IMAGES
The following code block goes into your
QB-CORE > SHARED > ITEMS.LUA
--Jim-Bakery
["chocolatesyrup"] = {["name"] = "chocolatesyrup", ["label"] = "Chocolate Syrup", ["weight"] = 200, ["type"] = "item", ["image"] = "chocolatesyrup.png", ["unique"] = false, ["useable"] = true, ["shouldClose"] = true, ["combinable"] = nil, ["description"] = "", ['hunger'] = math.random(40, 50) },
["jimeggs"] = {["name"] = "jimeggs", ["label"] = "Eggs", ["weight"] = 100, ["type"] = "item", ["image"] = "jimeggs.png", ["unique"] = false, ["useable"] = true, ["shouldClose"] = true, ["combinable"] = nil, ["description"] = "", ['hunger'] = math.random(20, 30) },
["chocolate"] = {["name"] = "chocolate", ["label"] = "Chocolate", ["weight"] = 200, ["type"] = "item", ["image"] = "chocolate.png", ["unique"] = false, ["useable"] = true, ["shouldClose"] = true, ["combinable"] = nil, ["description"] = "", ['hunger'] = math.random(20, 30) },
["sugar"] = {["name"] = "sugar", ["label"] = "Sugar", ["weight"] = 100, ["type"] = "item", ["image"] = "sugar.png", ["unique"] = false, ["useable"] = true, ["shouldClose"] = true, ["combinable"] = nil, ["description"] = "", ['hunger'] = math.random(40, 50) },
["flour"] = {["name"] = "flour", ["label"] = "Flour", ["weight"] = 100, ["type"] = "item", ["image"] = "flour.png", ["unique"] = false, ["useable"] = true, ["shouldClose"] = true, ["combinable"] = nil, ["description"] = "", ['hunger'] = math.random(40, 50) },
["dough"] = {["name"] = "dough", ["label"] = "Dough", ["weight"] = 200, ["type"] = "item", ["image"] = "pizzadough.png", ["unique"] = false, ["useable"] = true, ["shouldClose"] = true, ["combinable"] = nil, ["description"] = "", ['hunger'] = math.random(40, 50) },
["heavycream"] = {["name"] = "heavycream", ["label"] = "Heavy Cream", ["weight"] = 200, ["type"] = "item", ["image"] = "heavycream.png", ["unique"] = false, ["useable"] = true, ["shouldClose"] = true, ["combinable"] = nil, ["description"] = "", ['thirst'] = math.random(40, 50) },
["icecream"] = {["name"] = "icecream", ["label"] = "Ice Cream", ["weight"] = 500, ["type"] = "item", ["image"] = "burger-icecream.png", ["unique"] = false, ["useable"] = true, ["shouldClose"] = true, ["combinable"] = nil, ["description"] = ""},
["milk"] = {["name"] = "milk", ["label"] = "Milk", ["weight"] = 500, ["type"] = "item", ["image"] = "burger-milk.png", ["unique"] = false, ["useable"] = true, ["shouldClose"] = true, ["combinable"] = nil, ["description"] = "", },
["lettuce"] = {["name"] = "lettuce", ["label"] = "Lettuce", ["weight"] = 100, ["type"] = "item", ["image"] = "lettuce.png", ["unique"] = false, ["useable"] = true, ["shouldClose"] = true, ["combinable"] = nil, ["description"] = "Some big taco brother"},
["cheddar"] = {["name"] = "cheddar", ["label"] = "Cheddar Slice", ["weight"] = 100, ["type"] = "item", ["image"] = "cheddar.png", ["unique"] = false, ["useable"] = true, ["shouldClose"] = true, ["combinable"] = nil, ["description"] = "Slice of Cheese"},
["ham"] = {["name"] = "ham", ["label"] = "Ham", ["weight"] = 100, ["type"] = "item", ["image"] = "ham.png", ["unique"] = false, ["useable"] = true, ["shouldClose"] = true, ["combinable"] = nil, ["description"] = "", },
["strawberry"] = {["name"] = "strawberry", ["label"] = "Strawberry", ["weight"] = 100, ["type"] = "item", ["image"] = "strawberry.png", ["unique"] = false, ["useable"] = true, ["shouldClose"] = true, ["combinable"] = nil, ["description"] = "", },
["vanillaextract"] = {["name"] = "vanillaextract", ["label"] = "Vanilla Extract", ["weight"] = 500, ["type"] = "item", ["image"] = "vanillaextract.png", ["unique"] = false, ["useable"] = true, ["shouldClose"] = true, ["combinable"] = nil, ["description"] = "", ['thirst'] = math.random(35, 54) },
["cocoapowder"] = {["name"] = "cocoapowder", ["label"] = "Cocoa Powder", ["weight"] = 500, ["type"] = "item", ["image"] = "cocoapowder.png", ["unique"] = false, ["useable"] = true, ["shouldClose"] = true, ["combinable"] = nil, ["description"] = "", ['hunger'] = math.random(5, 10) },
["icing"] = {["name"] = "icing", ["label"] = "Icing", ["weight"] = 500, ["type"] = "item", ["image"] = "icing.png", ["unique"] = false, ["useable"] = true, ["shouldClose"] = true, ["combinable"] = nil, ["description"] = "", ['thirst'] = math.random(35, 54) },
["tbbread"] = {["name"] = "tbbread", ["label"] = "Loaf of Bread", ["weight"] = 500, ["type"] = "item", ["image"] = "tbbread.png", ["unique"] = true, ["useable"] = true, ["shouldClose"] = true, ["combinable"] = nil, ["description"] = "", ['hunger'] = math.random(35, 54) },
["tbwhitebread"] = {["name"] = "tbwhitebread", ["label"] = "White Bread Roll", ["weight"] = 500, ["type"] = "item", ["image"] = "tbwhitebread.png", ["unique"] = true, ["useable"] = true, ["shouldClose"] = true, ["combinable"] = nil, ["description"] = "", ['hunger'] = math.random(10, 20) },
["tbbrownbread"] = {["name"] = "tbbrownbread", ["label"] = "Brown Bread Roll", ["weight"] = 500, ["type"] = "item", ["image"] = "tbbrownbread.png", ["unique"] = true, ["useable"] = true, ["shouldClose"] = true, ["combinable"] = nil, ["description"] = "", ['hunger'] = math.random(10, 20) },
["breadslice"] = {["name"] = "breadslice", ["label"] = "Slice of Bread", ["weight"] = 50, ["type"] = "item", ["image"] = "breadslice.png", ["unique"] = false, ["useable"] = true, ["shouldClose"] = true, ["combinable"] = nil, ["description"] = "", ['hunger'] = math.random(10, 20) },
["milkshake"] = {["name"] = "milkshake", ["label"] = "Milkshake", ["weight"] = 200, ["type"] = "item", ["image"] = "burger-milkshake.png", ["unique"] = false, ["useable"] = true, ["shouldClose"] = true, ["combinable"] = nil, ["description"] = "", ['thirst'] = math.random(35, 54) },
["strawberrymilkshake"] = {["name"] = "strawberrymilkshake", ["label"] = "Strawberry Milkshake", ["weight"] = 200, ["type"] = "item", ["image"] = "strawberrymilkshake.png", ["unique"] = false, ["useable"] = true, ["shouldClose"] = true, ["combinable"] = nil, ["description"] = "", ['thirst'] = math.random(35, 54) },
["chocolatemilkshake"] = {["name"] = "chocolatemilkshake", ["label"] = "Chocolate Milkshake", ["weight"] = 200, ["type"] = "item", ["image"] = "chocolatemilkshake.png", ["unique"] = false, ["useable"] = true, ["shouldClose"] = true, ["combinable"] = nil, ["description"] = "", ['thirst'] = math.random(35, 54) },
--SODA
["sprunk"] = {["name"] = "sprunk", ["label"] = "Sprunk", ["weight"] = 100, ["type"] = "item", ["image"] = "sprunk.png", ["unique"] = false, ["useable"] = true, ["shouldClose"] = true, ["combinable"] = nil, ["description"] = "", ['thirst'] = math.random(20, 30) },
["sprunklight"] = {["name"] = "sprunklight", ["label"] = "Sprunk Light", ["weight"] = 100, ["type"] = "item", ["image"] = "sprunklight.png", ["unique"] = false, ["useable"] = true, ["shouldClose"] = true, ["combinable"] = nil, ["description"] = "", ['thirst'] = math.random(20, 30) },
["ecola"] = {["name"] = "ecola", ["label"] = "eCola", ["weight"] = 100, ["type"] = "item", ["image"] = "ecola.png", ["unique"] = false, ["useable"] = true, ["shouldClose"] = true, ["combinable"] = nil, ["description"] = "", ['thirst'] = math.random(20, 30) },
["ecolalight"] = {["name"] = "ecolalight", ["label"] = "eCola Light", ["weight"] = 100, ["type"] = "item", ["image"] = "ecolalight.png", ["unique"] = false, ["useable"] = true, ["shouldClose"] = true, ["combinable"] = nil, ["description"] = "", ['thirst'] = math.random(20, 30) },
["tbbirthdaycake"] = {["name"] = "tbbirthdaycake", ["label"] = "Birthday Cake", ["weight"] = 200, ["type"] = "item", ["image"] = "tbbirthdaycake.png", ["unique"] = true, ["useable"] = true, ["shouldClose"] = true, ["combinable"] = nil, ["description"] = "", ['hunger'] = math.random(40, 60) },
["tbcake"] = {["name"] = "tbcake", ["label"] = "Cake", ["weight"] = 200, ["type"] = "item", ["image"] = "tbcake.png", ["unique"] = true, ["useable"] = true, ["shouldClose"] = true, ["combinable"] = nil, ["description"] = "", ['hunger'] = math.random(40, 60) },
["tbchoccake"] = {["name"] = "tbchoccake", ["label"] = "Chocolate Cake", ["weight"] = 200, ["type"] = "item", ["image"] = "tbchoccake.png", ["unique"] = true, ["useable"] = true, ["shouldClose"] = true, ["combinable"] = nil, ["description"] = "", ['hunger'] = math.random(40,60) },
["tbcookie"] = {["name"] = "tbcookie", ["label"] = "Cookie", ["weight"] = 50, ["type"] = "item", ["image"] = "tbcookie.png", ["unique"] = false, ["useable"] = true, ["shouldClose"] = true, ["combinable"] = nil, ["description"] = "", ['hunger'] = math.random(10, 20) },
["tbbrownie"] = {["name"] = "tbbrownie", ["label"] = "Brownie", ["weight"] = 200, ["type"] = "item", ["image"] = "tbbrownie.png", ["unique"] = false, ["useable"] = true, ["shouldClose"] = true, ["combinable"] = nil, ["description"] = "", ['hunger'] = math.random(20, 30) },
["tbcroissant"] = {["name"] = "tbcroissant", ["label"] = "Croissant", ["weight"] = 200, ["type"] = "item", ["image"] = "tbcroissant.png", ["unique"] = false, ["useable"] = true, ["shouldClose"] = true, ["combinable"] = nil, ["description"] = "", ['hunger'] = math.random(20, 30) },
["tbchoccroiss"] = {["name"] = "tbchoccroiss", ["label"] = "Bloody Cross", ["weight"] = 200, ["type"] = "item", ["image"] = "tbblcroiss.png", ["unique"] = false, ["useable"] = true, ["shouldClose"] = true, ["combinable"] = nil, ["description"] = "", ['hunger'] = math.random(20, 30) },
["tbcupcake"] = {["name"] = "tbcupcake", ["label"] = "CupCake", ["weight"] = 200, ["type"] = "item", ["image"] = "tbcupcake.png", ["unique"] = false, ["useable"] = true, ["shouldClose"] = true, ["combinable"] = nil, ["description"] = "", ['hunger'] = math.random(20, 30) },
["tbsweetroll"] = {["name"] = "tbsweetroll", ["label"] = "Sweet Roll", ["weight"] = 200, ["type"] = "item", ["image"] = "tbsweetroll.png", ["unique"] = false, ["useable"] = true, ["shouldClose"] = true, ["combinable"] = nil, ["description"] = "", ['hunger'] = math.random(20, 30) },
["tbdonut"] = {["name"] = "tbdonut", ["label"] = "Donut", ["weight"] = 500, ["type"] = "item", ["image"] = "tbdonut.png", ["unique"] = false, ["useable"] = true, ["shouldClose"] = true, ["combinable"] = nil, ["description"] = "", ['hunger'] = math.random(20,30) },
["tblongjohn"] = {["name"] = "tblongjohn", ["label"] = "Long John", ["weight"] = 500, ["type"] = "item", ["image"] = "tblongjohn.png", ["unique"] = false, ["useable"] = true, ["shouldClose"] = true, ["combinable"] = nil, ["description"] = "", ['hunger'] = math.random(35, 54) },
["tbcakebase"] = {["name"] = "tbcakebase", ["label"] = "Cake Base", ["weight"] = 500, ["type"] = "item", ["image"] = "tbcakebase.png", ["unique"] = true, ["useable"] = true, ["shouldClose"] = true, ["combinable"] = nil, ["description"] = "", ['hunger'] = math.random(35, 54) },
2. Job
The following code block goes into your
QB-CORE > SHARED > JOBS.LUA
['bakery'] = {
label = 'Baker',
defaultDuty = true,
offDutyPay = false,
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 },
},
},
If using QB-Management:
Update to the latest GitHub version
Make sure the job "treybakery" has been added to your database
The menu's targets should be accessible to bosses from the clock-in spot
3. Emotes
The following code block goes into your
If using DP-Emotes by DullPear
DPEMOTES > CLIENT > ANIMATIONLIST.LUA in DP.PropEmotes
If using RP-Emotes by TayMcKenzie
RPEMOTES > CLIENT > AnimationListCustom.lua
If using Jim-Consumables - By Jim
JIM-CONSUMABLES > CONFIG.lua under Emotes
--Jim-Bakery
["bread"] = {"amb@world_human_drinking@coffee@male@idle_a", "idle_c", "Bread", AnimationOptions =
{ Prop = 'v_ret_247_bread1', PropBone = 28422, PropPlacement = {0.02, -0.05, -0.06, 270.0, 0.0, 90.0},
EmoteLoop = true, EmoteMoving = true, }},
["breadslice"] = {"mp_player_inteat@burger", "mp_player_int_eat_burger", "Bread Slice", AnimationOptions =
{ Prop = 'v_res_fa_bread03', PropBone = 18905, PropPlacement = {0.16, 0.08, -0.01, -225.0, -10.0, 0.0},
EmoteLoop = true, EmoteMoving = true, }},
["cupcake1"] = {"mp_player_inteat@burger", "mp_player_int_eat_burger", "Cup Cake", AnimationOptions =
{ Prop = 'hb_cupcake1', PropBone = 18905, PropPlacement = {0.13, 0.06, 0.02, -120.0, 0.0, 0.0},
EmoteLoop = true, EmoteMoving = true, }},
["cupcake2"] = {"mp_player_inteat@burger", "mp_player_int_eat_burger", "Cup Cake 2", AnimationOptions =
{ Prop = 'hb_cupcake2', PropBone = 18905, PropPlacement = {0.13, 0.06, 0.02, -120.0, 0.0, 0.0},
EmoteLoop = true, EmoteMoving = true, }},
--Cake Eating
["cake1"] = {"mp_player_inteat@burger", "mp_player_int_eat_burger", "Cake 1", AnimationOptions =
{ Prop = 'hb_cake1', PropBone = 18905, PropPlacement = {0.13, 0.1, -0.06, -80.0, 0.0, -20.0},
EmoteLoop = true, EmoteMoving = true, }},
["cake2"] = {"mp_player_inteat@burger", "mp_player_int_eat_burger", "Cake 2", AnimationOptions =
{ Prop = 'hb_cake2', PropBone = 18905, PropPlacement = {0.13, 0.1, -0.06, -80.0, 50.0, -20.0},
EmoteLoop = true, EmoteMoving = true, }},
["cake3"] = {"mp_player_inteat@burger", "mp_player_int_eat_burger", "Cake 3", AnimationOptions =
{ Prop = 'hb_cake3', PropBone = 18905, PropPlacement = {0.10, 0.03, 0.05, -30.0, -30.0, 0.0},
EmoteLoop = true, EmoteMoving = true, }},
--Cake holding
["cakehold1"] = {"impexp_int-0", "mp_m_waremech_01_dual-0", "Cake Hold 2", AnimationOptions =
{ Prop = 'hb_cake1', PropBone = 24817, PropPlacement = {-0.04, 0.46, -0.016, -160.0, -90.0, 0.0},
EmoteMoving = true, EmoteLoop = true }},
["cakehold2"] = {"impexp_int-0", "mp_m_waremech_01_dual-0", "Cake Hold 2", AnimationOptions =
{ Prop = 'hb_cake2', PropBone = 24817, PropPlacement = {-0.04, 0.46, -0.016, -160.0, -90.0, 0.0},
EmoteMoving = true, EmoteLoop = true }},
["cakehold3"] = {"impexp_int-0", "mp_m_waremech_01_dual-0", "Cake Hold 3", AnimationOptions =
{ Prop = 'hb_cake3', PropBone = 24817, PropPlacement = {-0.11, 0.46, -0.016, -210.0, -90.0, 0.0},
EmoteMoving = true, EmoteLoop = true }},
--Bread Holding
["breadhold1"] = {"impexp_int-0", "mp_m_waremech_01_dual-0", "Bread Hold 2", AnimationOptions =
{ Prop = 'hbe_bread_1', PropBone = 24817, PropPlacement = {-0.10, 0.46, -0.016, -210.0, -90.0, 0.0},
EmoteMoving = true, EmoteLoop = true }},
["breadhold2"] = {"impexp_int-0", "mp_m_waremech_01_dual-0", "Bread Hold 2", AnimationOptions =
{ Prop = 'hb_bread_2', PropBone = 24817, PropPlacement = {-0.10, 0.46, -0.016, -210.0, -90.0, 0.0},
EmoteMoving = true, EmoteLoop = true }},
["breadhold3"] = {"impexp_int-0", "mp_m_waremech_01_dual-0", "Bread Hold 2", AnimationOptions =
{ Prop = 'hb_bread_3', PropBone = 24817, PropPlacement = {-0.10, 0.46, -0.016, -210.0, -90.0, 0.0},
EmoteMoving = true, EmoteLoop = true }},
["breadhold4"] = {"impexp_int-0", "mp_m_waremech_01_dual-0", "Bread Hold 2", AnimationOptions =
{ Prop = 'hb_bread_4', PropBone = 24817, PropPlacement = {-0.10, 0.46, -0.016, -210.0, -90.0, 0.0},
EmoteMoving = true, EmoteLoop = true }},
--Bread Roll
["breadroll1"] = {"mp_player_inteat@burger", "mp_player_int_eat_burger", "Bread Roll 1", AnimationOptions =
{ Prop = 'hb_bread_roll_1', PropBone = 18905, PropPlacement = {0.13, 0.06, 0.02, 20.0, 120.0, 0.0},
EmoteLoop = true, EmoteMoving = true, }},
["breadroll2"] = {"mp_player_inteat@burger", "mp_player_int_eat_burger", "Bread Roll 2", AnimationOptions =
{ Prop = 'hb_bread_roll_2', PropBone = 18905, PropPlacement = {0.13, 0.06, 0.02, 20.0, 120.0, 0.0},
EmoteLoop = true, EmoteMoving = true, }},
["breadroll3"] = {"mp_player_inteat@burger", "mp_player_int_eat_burger", "Bread Roll 3", AnimationOptions =
{ Prop = 'hb_bread_roll_3', PropBone = 18905, PropPlacement = {0.13, 0.06, 0.02, 20.0, 120.0, 0.0},
EmoteLoop = true, EmoteMoving = true, }},
["breadroll4"] = {"mp_player_inteat@burger", "mp_player_int_eat_burger", "Bread Roll 4", AnimationOptions =
{ Prop = 'hb_bread_roll_4', PropBone = 18905, PropPlacement = {0.13, 0.06, 0.02, 20.0, 120.0, 0.0},
EmoteLoop = true, EmoteMoving = true, }},
--Pastries
["croissant"] = {"mp_player_inteat@burger", "mp_player_int_eat_burger", "Croissant", AnimationOptions =
{ Prop = 'hb_pastry_1', PropBone = 18905, PropPlacement = {0.13, 0.06, 0.02, 20.0, 120.0, 0.0},
EmoteLoop = true, EmoteMoving = true, }},
["choccroiss"] = {"mp_player_inteat@burger", "mp_player_int_eat_burger", "Croissant Sauce", AnimationOptions =
{ Prop = 'hb_pastry_2', PropBone = 18905, PropPlacement = {0.13, 0.06, 0.02, 20.0, 120.0, 0.0},
EmoteLoop = true, EmoteMoving = true, }},
["sweetroll"] = {"mp_player_inteat@burger", "mp_player_int_eat_burger", "Sweet Roll", AnimationOptions =
{ Prop = 'hb_pastry_3', PropBone = 18905, PropPlacement = {0.13, 0.06, 0.02, 20.0, 120.0, 0.0},
EmoteLoop = true, EmoteMoving = true, }},
["cookie"] = {"mp_player_inteat@burger", "mp_player_int_eat_burger", "Cookie", AnimationOptions =
{ Prop = 'hb_pastry_4', PropBone = 18905, PropPlacement = {0.15, 0.08, 0.02, 20.0, 140.0, 0.0},
EmoteLoop = true, EmoteMoving = true, }},
-- Sodas
["ecola"] = {"mp_player_intdrink", "loop_bottle", "e-cola", AnimationOptions =
{ Prop = "prop_ecola_can", PropBone = 18905, PropPlacement = {0.12, 0.008, 0.03, 240.0, -60.0},
EmoteMoving = true, EmoteLoop = true, }},
["sprunk"] = {"mp_player_intdrink", "loop_bottle", "sprunk", AnimationOptions =
{ Prop = "v_res_tt_can03", PropBone = 18905, PropPlacement = {0.12, 0.008, 0.03, 240.0, -60.0},
EmoteMoving = true, EmoteLoop = true, }},
4. Jim-Consumables
This is Optional - Jim-Consumables is a lightweight resource designed to create your consumables on the fly when you're adjusting buffs and or how much hunger or thirst the item fills.
The following code block goes into your Config under Consumables. Some of these items are already in there by default
--Jim-Bakery-Drinks
["strawberrymilkshake"] = { emote = "flute", canRun = false, time = math.random(5000, 6000), stress = math.random(2, 4), heal = 0, armor = 0, type = "drink", stats = { thirst = math.random(35, 54), }},
["chocolatemilkshake"] = { emote = "flute", canRun = false, time = math.random(5000, 6000), stress = math.random(2, 4), heal = 0, armor = 0, type = "drink", stats = { thirst = math.random(35, 54), }},
["milkshake"] = { emote = "flute", canRun = false, time = math.random(5000, 6000), stress = math.random(2, 4), heal = 0, armor = 0, type = "drink", stats = { thirst = math.random(35, 54), }},
--Jim-Bakery-Food
["tbbread"] = { emote = "bread", canRun = false, time = math.random(5000, 6000), stress = math.random(2, 4), heal = 0, armor = 0, type = "food", stats = { hunger = math.random(35,54), }},
["tbwhitebread"] = { emote = "breadroll4", canRun = false, time = math.random(5000, 6000), stress = math.random(2, 4), heal = 0, armor = 0, type = "food", stats = { hunger = math.random(10,20), }},
["tbbrownbread"] = { emote = "breadroll1", canRun = false, time = math.random(5000, 6000), stress = math.random(2, 4), heal = 0, armor = 0, type = "food", stats = { hunger = math.random(10,20), }},
["breadslice"] = { emote = "breadslice", canRun = false, time = math.random(5000, 6000), stress = math.random(2, 4), heal = 0, armor = 0, type = "food", stats = { hunger = math.random(10,20), }},
["tbbirthdaycake"] = { emote = "cake1", canRun = false, time = math.random(5000, 6000), stress = math.random(2, 4), heal = 0, armor = 0, type = "food", stats = { hunger = math.random(40,60), }},
["tbcake"] = { emote = "cake2", canRun = false, time = math.random(5000, 6000), stress = math.random(2, 4), heal = 0, armor = 0, type = "food", stats = { hunger = math.random(40,60), }},
["tbcakebase"] = { emote = "cake2", canRun = false, time = math.random(5000, 6000), stress = math.random(2, 4), heal = 0, armor = 0, type = "food", stats = { hunger = math.random(35,54), }},
["tbcupcake"] = { emote = "cupcake1", canRun = false, time = math.random(5000, 6000), stress = math.random(2, 4), heal = 0, armor = 0, type = "food", stats = { hunger = math.random(20,30), }},
["tbchoccake"] = { emote = "cake3", canRun = false, time = math.random(5000, 6000), stress = math.random(2, 4), heal = 0, armor = 0, type = "food", stats = { hunger = math.random(40,60), }},
["tbcookie"] = { emote = "cookie", canRun = false, time = math.random(5000, 6000), stress = math.random(2, 4), heal = 0, armor = 0, type = "food", stats = { hunger = math.random(10,20), }},
["tbbrownie"] = { emote = "donut", canRun = false, time = math.random(5000, 6000), stress = math.random(2, 4), heal = 0, armor = 0, type = "food", stats = { hunger = math.random(20,30), }},
["tbdonut"] = { emote = "donut", canRun = false, time = math.random(5000, 6000), stress = math.random(2, 4), heal = 0, armor = 0, type = "food", stats = { hunger = math.random(20,30), }},
["tblongjohn"] = { emote = "donut", canRun = false, time = math.random(5000, 6000), stress = math.random(2, 4), heal = 0, armor = 0, type = "food", stats = { hunger = math.random(35,54), }},
["tbcroissant"] = { emote = "croissant", canRun = false, time = math.random(5000, 6000), stress = math.random(2, 4), heal = 0, armor = 0, type = "food", stats = { hunger = math.random(35,54), }},
["tbchoccroiss"] = { emote = "choccroiss", canRun = false, time = math.random(5000, 6000), stress = math.random(2, 4), heal = 0, armor = 0, type = "food", stats = { hunger = math.random(35,54), }},
["tbsweetroll"] = { emote = "sweetroll", canRun = false, time = math.random(5000, 6000), stress = math.random(2, 4), heal = 0, armor = 0, type = "food", stats = { hunger = math.random(20,30), }},
["chocolate"] = { emote = "egobar", canRun = false, time = math.random(5000, 6000), stress = math.random(2, 4), heal = 0, armor = 0, type = "food", stats = { hunger = math.random(10,20), }},
Last updated