ngd-cherrypopper
NGD | Cherry Popper - The best Cherry Popper ice cream script for your FiveM Server!
Click to purchase ngd-cherrypopperInstallation Steps
-
Install ngd-Bridge
Follow the guide to install ngd-Bridge HERE. -
Install ngd-vu
Placengd-cherrypopperinto your [ngd] folder. This script must be started afterngd-Bridge. -
Add Items to Your Inventory
Copy the items listed below into your inventory. -
Copy Images
Move the images from theimgfolder into your inventory's images folder. -
Add the jobs into your framework.
Job Configuration (QB/QBX) (Click to Expand)
QB (old jobs.lua)
['cherrypopper'] = {
label = 'Cherry Popper',
defaultDuty = true,
grades = {
['0'] = { name = 'Employee', payment = 25 },
['1'] = { name = 'Owner', payment = 75, isboss = true },
},
},
QB (new jobs.lua)
cherrypopper = {
label = 'Cherry Popper',
type = 'cherrypopper',
defaultDuty = false,
offDutyPay = false,
grades = {
['0'] = { name = 'Employee', payment = 25 },
['1'] = { name = 'Owner', payment = 75, isboss = true },
},
},
QBX
cherrypopper = {
label = 'Cherry Popper',
type = 'cherrypopper',
defaultDuty = false,
offDutyPay = false,
grades = {
[0] = { name = 'Employee', payment = 25 },
[1] = { name = 'Owner', payment = 75, isboss = true },
},
},
Job Configuration (ESX) (Click to Expand)
(If this doesn't work for you, you will need to build them manually into your modified database)
SELECT id FROM job_grades ORDER BY id DESC LIMIT 1 INTO @last_id;
SET @new_id = IFNULL(@last_id, 0) + 1;
INSERT INTO jobs (name, label, whitelisted) VALUES ('cherrypopper', 'Cherry Popper', 0);
INSERT INTO job_grades (id, job_name, name, grade, label, salary, skin_male, skin_female)
VALUES (@new_id, 'cherrypopper', 'employee', 0, 'Employee', 100, '{}', '{}');
INSERT INTO job_grades (id, job_name, name, grade, label, salary, skin_male, skin_female)
VALUES (@new_id + 1, 'cherrypopper', 'boss', 1, 'Boss', 200, '{}', '{}');
- Add the items into your framework/inventory.
Items List (OX) (Click to Expand)
["ngd_icecreamcup1"] = {
label = "Vanilla Ice Cream",
weight = 0,
stack = true,
close = true,
description = "",
client = {
image = "ngd_icecreamcup1.png",
}
},
["ngd_icecreamcup2"] = {
label = "Neapolitan Ice Cream",
weight = 0,
stack = true,
close = true,
description = "",
client = {
image = "ngd_icecreamcup2.png",
}
},
["ngd_icecreamcup3"] = {
label = "Chocolate Ice Cream",
weight = 0,
stack = true,
close = true,
description = "",
client = {
image = "ngd_icecreamcup3.png",
}
},
["ngd_icecreamcup4"] = {
label = "Strawberry Ice Cream",
weight = 0,
stack = true,
close = true,
description = "",
client = {
image = "ngd_icecreamcup4.png",
}
},
["ngd_icecreamcup5"] = {
label = "Green Tea Ice Cream",
weight = 0,
stack = true,
close = true,
description = "",
client = {
image = "ngd_icecreamcup5.png",
}
},
["ngd_icecreamcup6"] = {
label = "Cherry Ice Cream",
weight = 0,
stack = true,
close = true,
description = "",
client = {
image = "ngd_icecreamcup6.png",
}
},
["ngd_icecreamcup7"] = {
label = "Taro Ice Cream",
weight = 0,
stack = true,
close = true,
description = "",
client = {
image = "ngd_icecreamcup7.png",
}
},
["ngd_icecreamcup8"] = {
label = "Rocky Road Ice Cream",
weight = 0,
stack = true,
close = true,
description = "",
client = {
image = "ngd_icecreamcup8.png",
}
},
["ngd_icecreamcup9"] = {
label = "Mint Ice Cream",
weight = 0,
stack = true,
close = true,
description = "",
client = {
image = "ngd_icecreamcup9.png",
}
},
["ngd_icecreamcup10"] = {
label = "Coffee Ice Cream",
weight = 0,
stack = true,
close = true,
description = "",
client = {
image = "ngd_icecreamcup10.png",
}
},
["ngd_icecreamcup11"] = {
label = "Cottoncandy Ice Cream",
weight = 0,
stack = true,
close = true,
description = "",
client = {
image = "ngd_icecreamcup11.png",
}
},
["ngd_icecreamcup12"] = {
label = "Red Velvet Ice Cream",
weight = 0,
stack = true,
close = true,
description = "",
client = {
image = "ngd_icecreamcup12.png",
}
},
--
["ngd_milkshake1"] = {
label = "Vanilla Milkshake",
weight = 0,
stack = true,
close = true,
description = "",
client = {
image = "ngd_milkshake1.png",
}
},
["ngd_milkshake2"] = {
label = "Neapolitan Milkshake",
weight = 0,
stack = true,
close = true,
description = "",
client = {
image = "ngd_milkshake2.png",
}
},
["ngd_milkshake3"] = {
label = "Chocolate Milkshake",
weight = 0,
stack = true,
close = true,
description = "",
client = {
image = "ngd_milkshake3.png",
}
},
["ngd_milkshake4"] = {
label = "Strawberry Milkshake",
weight = 0,
stack = true,
close = true,
description = "",
client = {
image = "ngd_milkshake4.png",
}
},
["ngd_milkshake5"] = {
label = "Green Tea Milkshake",
weight = 0,
stack = true,
close = true,
description = "",
client = {
image = "ngd_milkshake5.png",
}
},
["ngd_milkshake6"] = {
label = "Cherry Milkshake",
weight = 0,
stack = true,
close = true,
description = "",
client = {
image = "ngd_milkshake6.png",
}
},
["ngd_milkshake7"] = {
label = "Taro Milkshake",
weight = 0,
stack = true,
close = true,
description = "",
client = {
image = "ngd_milkshake7.png",
}
},
["ngd_milkshake8"] = {
label = "Rocky Road Milkshake",
weight = 0,
stack = true,
close = true,
description = "",
client = {
image = "ngd_milkshake8.png",
}
},
["ngd_milkshake9"] = {
label = "Mint Milkshake",
weight = 0,
stack = true,
close = true,
description = "",
client = {
image = "ngd_milkshake9.png",
}
},
["ngd_milkshake10"] = {
label = "Coffee Milkshake",
weight = 0,
stack = true,
close = true,
description = "",
client = {
image = "ngd_milkshake10.png",
}
},
["ngd_milkshake11"] = {
label = "Cottoncandy Milkshake",
weight = 0,
stack = true,
close = true,
description = "",
client = {
image = "ngd_milkshake11.png",
}
},
["ngd_milkshake12"] = {
label = "Red Velvet Milkshake",
weight = 0,
stack = true,
close = true,
description = "",
client = {
image = "ngd_milkshake12.png",
}
},
["ngd_icecreamcone1"] = {
label = "Vanilla Ice Cream Cone",
weight = 0,
stack = true,
close = true,
description = "",
client = {
image = "ngd_icecreamcone1.png",
}
},
["ngd_icecreamcone2"] = {
label = "Neapolitan Ice Cream Cone",
weight = 0,
stack = true,
close = true,
description = "",
client = {
image = "ngd_icecreamcone2.png",
}
},
["ngd_icecreamcone3"] = {
label = "Chocolate Ice Cream Cone",
weight = 0,
stack = true,
close = true,
description = "",
client = {
image = "ngd_icecreamcone3.png",
}
},
["ngd_icecreamcone4"] = {
label = "Strawberry Ice Cream Cone",
weight = 0,
stack = true,
close = true,
description = "",
client = {
image = "ngd_icecreamcone4.png",
}
},
["ngd_icecreamcone5"] = {
label = "Green Tea Ice Cream Cone",
weight = 0,
stack = true,
close = true,
description = "",
client = {
image = "ngd_icecreamcone5.png",
}
},
["ngd_icecreamcone6"] = {
label = "Cherry Ice Cream Cone",
weight = 0,
stack = true,
close = true,
description = "",
client = {
image = "ngd_icecreamcone6.png",
}
},
["ngd_icecreamcone7"] = {
label = "Taro Ice Cream Cone",
weight = 0,
stack = true,
close = true,
description = "",
client = {
image = "ngd_icecreamcone7.png",
}
},
["ngd_icecreamcone8"] = {
label = "Rocky Road Ice Cream Cone",
weight = 0,
stack = true,
close = true,
description = "",
client = {
image = "ngd_icecreamcone8.png",
}
},
["ngd_icecreamcone9"] = {
label = "Mint Ice Cream Cone",
weight = 0,
stack = true,
close = true,
description = "",
client = {
image = "ngd_icecreamcone9.png",
}
},
["ngd_icecreamcone10"] = {
label = "Coffee Ice Cream Cone",
weight = 0,
stack = true,
close = true,
description = "",
client = {
image = "ngd_icecreamcone10.png",
}
},
["ngd_icecreamcone11"] = {
label = "Cottoncandy Ice Cream Cone",
weight = 0,
stack = true,
close = true,
description = "",
client = {
image = "ngd_icecreamcone11.png",
}
},
["ngd_icecreamcone12"] = {
label = "Red Velvet Ice Cream Cone",
weight = 0,
stack = true,
close = true,
description = "",
client = {
image = "ngd_icecreamcone12.png",
}
},
["ngd_icecream1"] = {
label = "Vanilla Ice Cream",
weight = 0,
stack = true,
close = true,
description = "",
client = {
image = "ngd_icecream1.png",
}
},
["ngd_icecream2"] = {
label = "Neapolitan Ice Cream",
weight = 0,
stack = true,
close = true,
description = "",
client = {
image = "ngd_icecream2.png",
}
},
["ngd_icecream3"] = {
label = "Chocolate Ice Cream",
weight = 0,
stack = true,
close = true,
description = "",
client = {
image = "ngd_icecream3.png",
}
},
["ngd_icecream4"] = {
label = "Strawberry Ice Cream",
weight = 0,
stack = true,
close = true,
description = "",
client = {
image = "ngd_icecream4.png",
}
},
["ngd_icecream5"] = {
label = "Green Tea Ice Cream",
weight = 0,
stack = true,
close = true,
description = "",
client = {
image = "ngd_icecream5.png",
}
},
["ngd_icecream6"] = {
label = "Cherry Ice Cream",
weight = 0,
stack = true,
close = true,
description = "",
client = {
image = "ngd_icecream6.png",
}
},
["ngd_icecream7"] = {
label = "Taro Ice Cream",
weight = 0,
stack = true,
close = true,
description = "",
client = {
image = "ngd_icecream7.png",
}
},
["ngd_icecream8"] = {
label = "Rocky Road Ice Cream",
weight = 0,
stack = true,
close = true,
description = "",
client = {
image = "ngd_icecream8.png",
}
},
["ngd_icecream9"] = {
label = "Mint Ice Cream",
weight = 0,
stack = true,
close = true,
description = "",
client = {
image = "ngd_icecream9.png",
}
},
["ngd_icecream10"] = {
label = "Coffee Ice Cream",
weight = 0,
stack = true,
close = true,
description = "",
client = {
image = "ngd_icecream10.png",
}
},
["ngd_icecream11"] = {
label = "Cottoncandy Ice Cream",
weight = 0,
stack = true,
close = true,
description = "",
client = {
image = "ngd_icecream11.png",
}
},
["ngd_icecream12"] = {
label = "Red Velvet Ice Cream",
weight = 0,
stack = true,
close = true,
description = "",
client = {
image = "ngd_icecream12.png",
}
},
["ngd_cpspoon"] = {
label = "Ice Cream Spoon",
weight = 0,
stack = true,
close = true,
description = "",
client = {
image = "ngd_cpspoon.png",
}
},
["ngd_milk"] = {
label = "Milk",
weight = 0,
stack = true,
close = true,
description = "",
client = {
image = "ngd_milk.png",
}
},
["ngd_cpglass"] = {
label = "Cherry Popper Glass",
weight = 0,
stack = true,
close = true,
description = "",
client = {
image = "ngd_cpglass.png",
}
},
["ngd_cpice"] = {
label = "Ice",
weight = 0,
stack = true,
close = true,
description = "",
client = {
image = "ngd_cpice.png",
}
},
["ngd_cprb"] = {
label = "Cherry Popper Root Beer",
weight = 0,
stack = true,
close = true,
description = "",
client = {
image = "ngd_cprb.png",
}
},
["ngd_cpcart"] = {
label = "Cherry Popper Cart",
weight = 0,
stack = true,
close = true,
description = "",
client = {
image = "ngd_cpcart.png",
}
},
Items List (QB Format #1) (Click to Expand)
ngd_icecreamcup1 = { name = 'ngd_icecreamcup1', label = 'Vanilla Ice Cream', weight = 0, type = 'item', image = 'ngd_icecreamcup1.png', unique = false, useable = true, shouldClose = false, combinable = nil, description = '' },
ngd_icecreamcup2 = { name = 'ngd_icecreamcup2', label = 'Neapolitan Ice Cream', weight = 0, type = 'item', image = 'ngd_icecreamcup2.png', unique = false, useable = true, shouldClose = false, combinable = nil, description = '' },
ngd_icecreamcup3 = { name = 'ngd_icecreamcup3', label = 'Chocolate Ice Cream', weight = 0, type = 'item', image = 'ngd_icecreamcup3.png', unique = false, useable = true, shouldClose = false, combinable = nil, description = '' },
ngd_icecreamcup4 = { name = 'ngd_icecreamcup4', label = 'Strawberry Ice Cream', weight = 0, type = 'item', image = 'ngd_icecreamcup4.png', unique = false, useable = true, shouldClose = false, combinable = nil, description = '' },
ngd_icecreamcup5 = { name = 'ngd_icecreamcup5', label = 'Green Tea Ice Cream', weight = 0, type = 'item', image = 'ngd_icecreamcup5.png', unique = false, useable = true, shouldClose = false, combinable = nil, description = '' },
ngd_icecreamcup6 = { name = 'ngd_icecreamcup6', label = 'Cherry Ice Cream', weight = 0, type = 'item', image = 'ngd_icecreamcup6.png', unique = false, useable = true, shouldClose = false, combinable = nil, description = '' },
ngd_icecreamcup7 = { name = 'ngd_icecreamcup7', label = 'Taro Ice Cream', weight = 0, type = 'item', image = 'ngd_icecreamcup7.png', unique = false, useable = true, shouldClose = false, combinable = nil, description = '' },
ngd_icecreamcup8 = { name = 'ngd_icecreamcup8', label = 'Rocky Road Ice Cream', weight = 0, type = 'item', image = 'ngd_icecreamcup8.png', unique = false, useable = true, shouldClose = false, combinable = nil, description = '' },
ngd_icecreamcup9 = { name = 'ngd_icecreamcup9', label = 'Mint Ice Cream', weight = 0, type = 'item', image = 'ngd_icecreamcup9.png', unique = false, useable = true, shouldClose = false, combinable = nil, description = '' },
ngd_icecreamcup10 = { name = 'ngd_icecreamcup10', label = 'Coffee Ice Cream', weight = 0, type = 'item', image = 'ngd_icecreamcup10.png', unique = false, useable = true, shouldClose = false, combinable = nil, description = '' },
ngd_icecreamcup11 = { name = 'ngd_icecreamcup11', label = 'Cottoncandy Ice Cream', weight = 0, type = 'item', image = 'ngd_icecreamcup11.png', unique = false, useable = true, shouldClose = false, combinable = nil, description = '' },
ngd_icecreamcup12 = { name = 'ngd_icecreamcup12', label = 'Red Velvet Ice Cream', weight = 0, type = 'item', image = 'ngd_icecreamcup12.png', unique = false, useable = true, shouldClose = false, combinable = nil, description = '' },
ngd_milkshake1 = { name = 'ngd_milkshake1', label = 'Vanilla Milkshake', weight = 0, type = 'item', image = 'ngd_milkshake1.png', unique = false, useable = true, shouldClose = false, combinable = nil, description = '' },
ngd_milkshake2 = { name = 'ngd_milkshake2', label = 'Neapolitan Milkshake', weight = 0, type = 'item', image = 'ngd_milkshake2.png', unique = false, useable = true, shouldClose = false, combinable = nil, description = '' },
ngd_milkshake3 = { name = 'ngd_milkshake3', label = 'Chocolate Milkshake', weight = 0, type = 'item', image = 'ngd_milkshake3.png', unique = false, useable = true, shouldClose = false, combinable = nil, description = '' },
ngd_milkshake4 = { name = 'ngd_milkshake4', label = 'Strawberry Milkshake', weight = 0, type = 'item', image = 'ngd_milkshake4.png', unique = false, useable = true, shouldClose = false, combinable = nil, description = '' },
ngd_milkshake5 = { name = 'ngd_milkshake5', label = 'Green Tea Milkshake', weight = 0, type = 'item', image = 'ngd_milkshake5.png', unique = false, useable = true, shouldClose = false, combinable = nil, description = '' },
ngd_milkshake6 = { name = 'ngd_milkshake6', label = 'Cherry Milkshake', weight = 0, type = 'item', image = 'ngd_milkshake6.png', unique = false, useable = true, shouldClose = false, combinable = nil, description = '' },
ngd_milkshake7 = { name = 'ngd_milkshake7', label = 'Taro Milkshake', weight = 0, type = 'item', image = 'ngd_milkshake7.png', unique = false, useable = true, shouldClose = false, combinable = nil, description = '' },
ngd_milkshake8 = { name = 'ngd_milkshake8', label = 'Rocky Road Milkshake', weight = 0, type = 'item', image = 'ngd_milkshake8.png', unique = false, useable = true, shouldClose = false, combinable = nil, description = '' },
ngd_milkshake9 = { name = 'ngd_milkshake9', label = 'Mint Milkshake', weight = 0, type = 'item', image = 'ngd_milkshake9.png', unique = false, useable = true, shouldClose = false, combinable = nil, description = '' },
ngd_milkshake10 = { name = 'ngd_milkshake10', label = 'Coffee Milkshake', weight = 0, type = 'item', image = 'ngd_milkshake10.png', unique = false, useable = true, shouldClose = false, combinable = nil, description = '' },
ngd_milkshake11 = { name = 'ngd_milkshake11', label = 'Cottoncandy Milkshake', weight = 0, type = 'item', image = 'ngd_milkshake11.png', unique = false, useable = true, shouldClose = false, combinable = nil, description = '' },
ngd_milkshake12 = { name = 'ngd_milkshake12', label = 'Red Velvet Milkshake', weight = 0, type = 'item', image = 'ngd_milkshake12.png', unique = false, useable = true, shouldClose = false, combinable = nil, description = '' },
ngd_icecreamcone1 = { name = 'ngd_icecreamcone1', label = 'Vanilla Ice Cream Cone', weight = 0, type = 'item', image = 'ngd_icecreamcone1.png', unique = false, useable = true, shouldClose = false, combinable = nil, description = '' },
ngd_icecreamcone2 = { name = 'ngd_icecreamcone2', label = 'Neapolitan Ice Cream Cone', weight = 0, type = 'item', image = 'ngd_icecreamcone2.png', unique = false, useable = true, shouldClose = false, combinable = nil, description = '' },
ngd_icecreamcone3 = { name = 'ngd_icecreamcone3', label = 'Chocolate Ice Cream Cone', weight = 0, type = 'item', image = 'ngd_icecreamcone3.png', unique = false, useable = true, shouldClose = false, combinable = nil, description = '' },
ngd_icecreamcone4 = { name = 'ngd_icecreamcone4', label = 'Strawberry Ice Cream Cone', weight = 0, type = 'item', image = 'ngd_icecreamcone4.png', unique = false, useable = true, shouldClose = false, combinable = nil, description = '' },
ngd_icecreamcone5 = { name = 'ngd_icecreamcone5', label = 'Green Tea Ice Cream Cone', weight = 0, type = 'item', image = 'ngd_icecreamcone5.png', unique = false, useable = true, shouldClose = false, combinable = nil, description = '' },
ngd_icecreamcone6 = { name = 'ngd_icecreamcone6', label = 'Cherry Ice Cream Cone', weight = 0, type = 'item', image = 'ngd_icecreamcone6.png', unique = false, useable = true, shouldClose = false, combinable = nil, description = '' },
ngd_icecreamcone7 = { name = 'ngd_icecreamcone7', label = 'Taro Ice Cream Cone', weight = 0, type = 'item', image = 'ngd_icecreamcone7.png', unique = false, useable = true, shouldClose = false, combinable = nil, description = '' },
ngd_icecreamcone8 = { name = 'ngd_icecreamcone8', label = 'Rocky Road Ice Cream Cone', weight = 0, type = 'item', image = 'ngd_icecreamcone8.png', unique = false, useable = true, shouldClose = false, combinable = nil, description = '' },
ngd_icecreamcone9 = { name = 'ngd_icecreamcone9', label = 'Mint Ice Cream Cone', weight = 0, type = 'item', image = 'ngd_icecreamcone9.png', unique = false, useable = true, shouldClose = false, combinable = nil, description = '' },
ngd_icecreamcone10 = { name = 'ngd_icecreamcone10', label = 'Coffee Ice Cream Cone', weight = 0, type = 'item', image = 'ngd_icecreamcone10.png', unique = false, useable = true, shouldClose = false, combinable = nil, description = '' },
ngd_icecreamcone11 = { name = 'ngd_icecreamcone11', label = 'Cottoncandy Ice Cream Cone', weight = 0, type = 'item', image = 'ngd_icecreamcone11.png', unique = false, useable = true, shouldClose = false, combinable = nil, description = '' },
ngd_icecreamcone12 = { name = 'ngd_icecreamcone12', label = 'Red Velvet Ice Cream Cone', weight = 0, type = 'item', image = 'ngd_icecreamcone12.png', unique = false, useable = true, shouldClose = false, combinable = nil, description = '' },
ngd_icecream1 = { name = 'ngd_icecream1', label = 'Vanilla Ice Cream', weight = 0, type = 'item', image = 'ngd_icecream1.png', unique = false, useable = false, shouldClose = false, combinable = nil, description = '' },
ngd_icecream2 = { name = 'ngd_icecream2', label = 'Neapolitan Ice Cream', weight = 0, type = 'item', image = 'ngd_icecream2.png', unique = false, useable = false, shouldClose = false, combinable = nil, description = '' },
ngd_icecream3 = { name = 'ngd_icecream3', label = 'Chocolate Ice Cream', weight = 0, type = 'item', image = 'ngd_icecream3.png', unique = false, useable = false, shouldClose = false, combinable = nil, description = '' },
ngd_icecream4 = { name = 'ngd_icecream4', label = 'Strawberry Ice Cream', weight = 0, type = 'item', image = 'ngd_icecream4.png', unique = false, useable = false, shouldClose = false, combinable = nil, description = '' },
ngd_icecream5 = { name = 'ngd_icecream5', label = 'Green Tea Ice Cream', weight = 0, type = 'item', image = 'ngd_icecream5.png', unique = false, useable = false, shouldClose = false, combinable = nil, description = '' },
ngd_icecream6 = { name = 'ngd_icecream6', label = 'Cherry Ice Cream', weight = 0, type = 'item', image = 'ngd_icecream6.png', unique = false, useable = false, shouldClose = false, combinable = nil, description = '' },
ngd_icecream7 = { name = 'ngd_icecream7', label = 'Taro Ice Cream', weight = 0, type = 'item', image = 'ngd_icecream7.png', unique = false, useable = false, shouldClose = false, combinable = nil, description = '' },
ngd_icecream8 = { name = 'ngd_icecream8', label = 'Rocky Road Ice Cream', weight = 0, type = 'item', image = 'ngd_icecream8.png', unique = false, useable = false, shouldClose = false, combinable = nil, description = '' },
ngd_icecream9 = { name = 'ngd_icecream9', label = 'Mint Ice Cream', weight = 0, type = 'item', image = 'ngd_icecream9.png', unique = false, useable = false, shouldClose = false, combinable = nil, description = '' },
ngd_icecream10 = { name = 'ngd_icecream10', label = 'Coffee Ice Cream', weight = 0, type = 'item', image = 'ngd_icecream10.png', unique = false, useable = false, shouldClose = false, combinable = nil, description = '' },
ngd_icecream11 = { name = 'ngd_icecream11', label = 'Cottoncandy Ice Cream', weight = 0, type = 'item', image = 'ngd_icecream11.png', unique = false, useable = false, shouldClose = false, combinable = nil, description = '' },
ngd_icecream12 = { name = 'ngd_icecream12', label = 'Red Velvet Ice Cream', weight = 0, type = 'item', image = 'ngd_icecream12.png', unique = false, useable = false, shouldClose = false, combinable = nil, description = '' },
ngd_cpspoon = { name = 'ngd_cpspoon', label = 'Ice Cream Spoon', weight = 0, type = 'item', image = 'ngd_cpspoon.png', unique = false, useable = false, shouldClose = false, combinable = nil, description = '' },
ngd_milk = { name = 'ngd_milk', label = 'Milk', weight = 0, type = 'item', image = 'ngd_milk.png', unique = false, useable = false, shouldClose = false, combinable = nil, description = '' },
ngd_cpglass = { name = 'ngd_cpglass', label = 'Cherry Popper Glass', weight = 0, type = 'item', image = 'ngd_cpglass.png', unique = false, useable = false, shouldClose = false, combinable = nil, description = '' },
ngd_cpice = { name = 'ngd_cpice', label = 'Ice', weight = 0, type = 'item', image = 'ngd_cpice.png', unique = false, useable = false, shouldClose = false, combinable = nil, description = '' },
ngd_cprb = { name = 'ngd_cprb', label = 'Cherry Popper Root Beer', weight = 0, type = 'item', image = 'ngd_cprb.png', unique = false, useable = true, shouldClose = false, combinable = nil, description = '' },
ngd_cpcart = { name = 'ngd_cpcart', label = 'Cherry Popper Cart', weight = 0, type = 'item', image = 'ngd_cpcart.png', unique = false, useable = true, shouldClose = false, combinable = nil, description = '' },
Items List (QB Format #2) (Click to Expand)
['ngd_icecreamcup1'] = {['name'] = 'ngd_icecreamcup1', ['label'] = 'Vanilla Ice Cream', ['weight'] = 0, ['type'] = 'item', ['image'] = 'ngd_icecreamcup1.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = false, ['combinable'] = nil, ['description'] = ''},
['ngd_icecreamcup2'] = {['name'] = 'ngd_icecreamcup2', ['label'] = 'Neapolitan Ice Cream', ['weight'] = 0, ['type'] = 'item', ['image'] = 'ngd_icecreamcup2.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = false, ['combinable'] = nil, ['description'] = ''},
['ngd_icecreamcup3'] = {['name'] = 'ngd_icecreamcup3', ['label'] = 'Chocolate Ice Cream', ['weight'] = 0, ['type'] = 'item', ['image'] = 'ngd_icecreamcup3.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = false, ['combinable'] = nil, ['description'] = ''},
['ngd_icecreamcup4'] = {['name'] = 'ngd_icecreamcup4', ['label'] = 'Strawberry Ice Cream', ['weight'] = 0, ['type'] = 'item', ['image'] = 'ngd_icecreamcup4.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = false, ['combinable'] = nil, ['description'] = ''},
['ngd_icecreamcup5'] = {['name'] = 'ngd_icecreamcup5', ['label'] = 'Green Tea Ice Cream', ['weight'] = 0, ['type'] = 'item', ['image'] = 'ngd_icecreamcup5.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = false, ['combinable'] = nil, ['description'] = ''},
['ngd_icecreamcup6'] = {['name'] = 'ngd_icecreamcup6', ['label'] = 'Cherry Ice Cream', ['weight'] = 0, ['type'] = 'item', ['image'] = 'ngd_icecreamcup6.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = false, ['combinable'] = nil, ['description'] = ''},
['ngd_icecreamcup7'] = {['name'] = 'ngd_icecreamcup7', ['label'] = 'Taro Ice Cream', ['weight'] = 0, ['type'] = 'item', ['image'] = 'ngd_icecreamcup7.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = false, ['combinable'] = nil, ['description'] = ''},
['ngd_icecreamcup8'] = {['name'] = 'ngd_icecreamcup8', ['label'] = 'Rocky Road Ice Cream', ['weight'] = 0, ['type'] = 'item', ['image'] = 'ngd_icecreamcup8.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = false, ['combinable'] = nil, ['description'] = ''},
['ngd_icecreamcup9'] = {['name'] = 'ngd_icecreamcup9', ['label'] = 'Mint Ice Cream', ['weight'] = 0, ['type'] = 'item', ['image'] = 'ngd_icecreamcup9.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = false, ['combinable'] = nil, ['description'] = ''},
['ngd_icecreamcup10'] = {['name'] = 'ngd_icecreamcup10', ['label'] = 'Coffee Ice Cream', ['weight'] = 0, ['type'] = 'item', ['image'] = 'ngd_icecreamcup10.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = false, ['combinable'] = nil, ['description'] = ''},
['ngd_icecreamcup11'] = {['name'] = 'ngd_icecreamcup11', ['label'] = 'Cottoncandy Ice Cream', ['weight'] = 0, ['type'] = 'item', ['image'] = 'ngd_icecreamcup11.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = false, ['combinable'] = nil, ['description'] = ''},
['ngd_icecreamcup12'] = {['name'] = 'ngd_icecreamcup12', ['label'] = 'Red Velvet Ice Cream', ['weight'] = 0, ['type'] = 'item', ['image'] = 'ngd_icecreamcup12.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = false, ['combinable'] = nil, ['description'] = ''},
['ngd_milkshake1'] = {['name'] = 'ngd_milkshake1', ['label'] = 'Vanilla Milkshake', ['weight'] = 0, ['type'] = 'item', ['image'] = 'ngd_milkshake1.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = false, ['combinable'] = nil, ['description'] = ''},
['ngd_milkshake2'] = {['name'] = 'ngd_milkshake2', ['label'] = 'Neapolitan Milkshake', ['weight'] = 0, ['type'] = 'item', ['image'] = 'ngd_milkshake2.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = false, ['combinable'] = nil, ['description'] = ''},
['ngd_milkshake3'] = {['name'] = 'ngd_milkshake3', ['label'] = 'Chocolate Milkshake', ['weight'] = 0, ['type'] = 'item', ['image'] = 'ngd_milkshake3.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = false, ['combinable'] = nil, ['description'] = ''},
['ngd_milkshake4'] = {['name'] = 'ngd_milkshake4', ['label'] = 'Strawberry Milkshake', ['weight'] = 0, ['type'] = 'item', ['image'] = 'ngd_milkshake4.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = false, ['combinable'] = nil, ['description'] = ''},
['ngd_milkshake5'] = {['name'] = 'ngd_milkshake5', ['label'] = 'Green Tea Milkshake', ['weight'] = 0, ['type'] = 'item', ['image'] = 'ngd_milkshake5.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = false, ['combinable'] = nil, ['description'] = ''},
['ngd_milkshake6'] = {['name'] = 'ngd_milkshake6', ['label'] = 'Cherry Milkshake', ['weight'] = 0, ['type'] = 'item', ['image'] = 'ngd_milkshake6.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = false, ['combinable'] = nil, ['description'] = ''},
['ngd_milkshake7'] = {['name'] = 'ngd_milkshake7', ['label'] = 'Taro Milkshake', ['weight'] = 0, ['type'] = 'item', ['image'] = 'ngd_milkshake7.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = false, ['combinable'] = nil, ['description'] = ''},
['ngd_milkshake8'] = {['name'] = 'ngd_milkshake8', ['label'] = 'Rocky Road Milkshake', ['weight'] = 0, ['type'] = 'item', ['image'] = 'ngd_milkshake8.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = false, ['combinable'] = nil, ['description'] = ''},
['ngd_milkshake9'] = {['name'] = 'ngd_milkshake9', ['label'] = 'Mint Milkshake', ['weight'] = 0, ['type'] = 'item', ['image'] = 'ngd_milkshake9.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = false, ['combinable'] = nil, ['description'] = ''},
['ngd_milkshake10'] = {['name'] = 'ngd_milkshake10', ['label'] = 'Coffee Milkshake', ['weight'] = 0, ['type'] = 'item', ['image'] = 'ngd_milkshake10.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = false, ['combinable'] = nil, ['description'] = ''},
['ngd_milkshake11'] = {['name'] = 'ngd_milkshake11', ['label'] = 'Cottoncandy Milkshake', ['weight'] = 0, ['type'] = 'item', ['image'] = 'ngd_milkshake11.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = false, ['combinable'] = nil, ['description'] = ''},
['ngd_milkshake12'] = {['name'] = 'ngd_milkshake12', ['label'] = 'Red Velvet Milkshake', ['weight'] = 0, ['type'] = 'item', ['image'] = 'ngd_milkshake12.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = false, ['combinable'] = nil, ['description'] = ''},
['ngd_icecreamcone1'] = {['name'] = 'ngd_icecreamcone1', ['label'] = 'Vanilla Ice Cream Cone', ['weight'] = 0, ['type'] = 'item', ['image'] = 'ngd_icecreamcone1.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = false, ['combinable'] = nil, ['description'] = ''},
['ngd_icecreamcone2'] = {['name'] = 'ngd_icecreamcone2', ['label'] = 'Neapolitan Ice Cream Cone', ['weight'] = 0, ['type'] = 'item', ['image'] = 'ngd_icecreamcone2.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = false, ['combinable'] = nil, ['description'] = ''},
['ngd_icecreamcone3'] = {['name'] = 'ngd_icecreamcone3', ['label'] = 'Chocolate Ice Cream Cone', ['weight'] = 0, ['type'] = 'item', ['image'] = 'ngd_icecreamcone3.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = false, ['combinable'] = nil, ['description'] = ''},
['ngd_icecreamcone4'] = {['name'] = 'ngd_icecreamcone4', ['label'] = 'Strawberry Ice Cream Cone', ['weight'] = 0, ['type'] = 'item', ['image'] = 'ngd_icecreamcone4.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = false, ['combinable'] = nil, ['description'] = ''},
['ngd_icecreamcone5'] = {['name'] = 'ngd_icecreamcone5', ['label'] = 'Green Tea Ice Cream Cone', ['weight'] = 0, ['type'] = 'item', ['image'] = 'ngd_icecreamcone5.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = false, ['combinable'] = nil, ['description'] = ''},
['ngd_icecreamcone6'] = {['name'] = 'ngd_icecreamcone6', ['label'] = 'Cherry Ice Cream Cone', ['weight'] = 0, ['type'] = 'item', ['image'] = 'ngd_icecreamcone6.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = false, ['combinable'] = nil, ['description'] = ''},
['ngd_icecreamcone7'] = {['name'] = 'ngd_icecreamcone7', ['label'] = 'Taro Ice Cream Cone', ['weight'] = 0, ['type'] = 'item', ['image'] = 'ngd_icecreamcone7.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = false, ['combinable'] = nil, ['description'] = ''},
['ngd_icecreamcone8'] = {['name'] = 'ngd_icecreamcone8', ['label'] = 'Rocky Road Ice Cream Cone', ['weight'] = 0, ['type'] = 'item', ['image'] = 'ngd_icecreamcone8.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = false, ['combinable'] = nil, ['description'] = ''},
['ngd_icecreamcone9'] = {['name'] = 'ngd_icecreamcone9', ['label'] = 'Mint Ice Cream Cone', ['weight'] = 0, ['type'] = 'item', ['image'] = 'ngd_icecreamcone9.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = false, ['combinable'] = nil, ['description'] = ''},
['ngd_icecreamcone10'] = {['name'] = 'ngd_icecreamcone10', ['label'] = 'Coffee Ice Cream Cone', ['weight'] = 0, ['type'] = 'item', ['image'] = 'ngd_icecreamcone10.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = false, ['combinable'] = nil, ['description'] = ''},
['ngd_icecreamcone11'] = {['name'] = 'ngd_icecreamcone11', ['label'] = 'Cottoncandy Ice Cream Cone', ['weight'] = 0, ['type'] = 'item', ['image'] = 'ngd_icecreamcone11.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = false, ['combinable'] = nil, ['description'] = ''},
['ngd_icecreamcone12'] = {['name'] = 'ngd_icecreamcone12', ['label'] = 'Red Velvet Ice Cream Cone', ['weight'] = 0, ['type'] = 'item', ['image'] = 'ngd_icecreamcone12.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = false, ['combinable'] = nil, ['description'] = ''},
['ngd_icecream1'] = {['name'] = 'ngd_icecream1', ['label'] = 'Vanilla Ice Cream', ['weight'] = 0, ['type'] = 'item', ['image'] = 'ngd_icecream1.png', ['unique'] = false, ['useable'] = false, ['shouldClose'] = false, ['combinable'] = nil, ['description'] = ''},
['ngd_icecream2'] = {['name'] = 'ngd_icecream2', ['label'] = 'Neapolitan Ice Cream', ['weight'] = 0, ['type'] = 'item', ['image'] = 'ngd_icecream2.png', ['unique'] = false, ['useable'] = false, ['shouldClose'] = false, ['combinable'] = nil, ['description'] = ''},
['ngd_icecream3'] = {['name'] = 'ngd_icecream3', ['label'] = 'Chocolate Ice Cream', ['weight'] = 0, ['type'] = 'item', ['image'] = 'ngd_icecream3.png', ['unique'] = false, ['useable'] = false, ['shouldClose'] = false, ['combinable'] = nil, ['description'] = ''},
['ngd_icecream4'] = {['name'] = 'ngd_icecream4', ['label'] = 'Strawberry Ice Cream', ['weight'] = 0, ['type'] = 'item', ['image'] = 'ngd_icecream4.png', ['unique'] = false, ['useable'] = false, ['shouldClose'] = false, ['combinable'] = nil, ['description'] = ''},
['ngd_icecream5'] = {['name'] = 'ngd_icecream5', ['label'] = 'Green Tea Ice Cream', ['weight'] = 0, ['type'] = 'item', ['image'] = 'ngd_icecream5.png', ['unique'] = false, ['useable'] = false, ['shouldClose'] = false, ['combinable'] = nil, ['description'] = ''},
['ngd_icecream6'] = {['name'] = 'ngd_icecream6', ['label'] = 'Cherry Ice Cream', ['weight'] = 0, ['type'] = 'item', ['image'] = 'ngd_icecream6.png', ['unique'] = false, ['useable'] = false, ['shouldClose'] = false, ['combinable'] = nil, ['description'] = ''},
['ngd_icecream7'] = {['name'] = 'ngd_icecream7', ['label'] = 'Taro Ice Cream', ['weight'] = 0, ['type'] = 'item', ['image'] = 'ngd_icecream7.png', ['unique'] = false, ['useable'] = false, ['shouldClose'] = false, ['combinable'] = nil, ['description'] = ''},
['ngd_icecream8'] = {['name'] = 'ngd_icecream8', ['label'] = 'Rocky Road Ice Cream', ['weight'] = 0, ['type'] = 'item', ['image'] = 'ngd_icecream8.png', ['unique'] = false, ['useable'] = false, ['shouldClose'] = false, ['combinable'] = nil, ['description'] = ''},
['ngd_icecream9'] = {['name'] = 'ngd_icecream9', ['label'] = 'Mint Ice Cream', ['weight'] = 0, ['type'] = 'item', ['image'] = 'ngd_icecream9.png', ['unique'] = false, ['useable'] = false, ['shouldClose'] = false, ['combinable'] = nil, ['description'] = ''},
['ngd_icecream10'] = {['name'] = 'ngd_icecream10', ['label'] = 'Coffee Ice Cream', ['weight'] = 0, ['type'] = 'item', ['image'] = 'ngd_icecream10.png', ['unique'] = false, ['useable'] = false, ['shouldClose'] = false, ['combinable'] = nil, ['description'] = ''},
['ngd_icecream11'] = {['name'] = 'ngd_icecream11', ['label'] = 'Cottoncandy Ice Cream', ['weight'] = 0, ['type'] = 'item', ['image'] = 'ngd_icecream11.png', ['unique'] = false, ['useable'] = false, ['shouldClose'] = false, ['combinable'] = nil, ['description'] = ''},
['ngd_icecream12'] = {['name'] = 'ngd_icecream12', ['label'] = 'Red Velvet Ice Cream', ['weight'] = 0, ['type'] = 'item', ['image'] = 'ngd_icecream12.png', ['unique'] = false, ['useable'] = false, ['shouldClose'] = false, ['combinable'] = nil, ['description'] = ''},
['ngd_cpspoon'] = {['name'] = 'ngd_cpspoon', ['label'] = 'Ice Cream Spoon', ['weight'] = 0, ['type'] = 'item', ['image'] = 'ngd_cpspoon.png', ['unique'] = false, ['useable'] = false, ['shouldClose'] = false, ['combinable'] = nil, ['description'] = ''},
['ngd_milk'] = {['name'] = 'ngd_milk', ['label'] = 'Milk', ['weight'] = 0, ['type'] = 'item', ['image'] = 'ngd_milk.png', ['unique'] = false, ['useable'] = false, ['shouldClose'] = false, ['combinable'] = nil, ['description'] = ''},
['ngd_cpglass'] = {['name'] = 'ngd_cpglass', ['label'] = 'Cherry Popper Glass', ['weight'] = 0, ['type'] = 'item', ['image'] = 'ngd_cpglass.png', ['unique'] = false, ['useable'] = false, ['shouldClose'] = false, ['combinable'] = nil, ['description'] = ''},
['ngd_cpice'] = {['name'] = 'ngd_cpice', ['label'] = 'Ice', ['weight'] = 0, ['type'] = 'item', ['image'] = 'ngd_cpice.png', ['unique'] = false, ['useable'] = false, ['shouldClose'] = false, ['combinable'] = nil, ['description'] = ''},
['ngd_cprb'] = {['name'] = 'ngd_cprb', ['label'] = 'Cherry Popper Root Beer', ['weight'] = 0, ['type'] = 'item', ['image'] = 'ngd_cprb.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = false, ['combinable'] = nil, ['description'] = ''},
['ngd_cpcart'] = {['name'] = 'ngd_cpcart', ['label'] = 'Cherry Popper Cart', ['weight'] = 0, ['type'] = 'item', ['image'] = 'ngd_cpcart.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = false, ['combinable'] = nil, ['description'] = ''},
Configuration Notes
-
Extensive Configuration Options
Open and configure all theConfigfiles to match your server's settings. -
Customizable Menu Images
The images used in the menus can be replaced. They are located in theweb/menuimagesfolder.
Do you still need help? Open a ticket in our Discord {.is-warning}