Stores Config
Config.StoresTypes = {
--- [IMPORTANT]: You can add new store type but remember you have to put StoreTheme in Cofig.Stores to avoid Theme bugs.
---
--- @param storeIcon is fontawesome icon string.
--- @param needLicense boolean. To change function to get license navigate to functionsConfig.lua
--- ^^ This param works only for ammunation storetype
["grocery"] = {
misc = {
storeName = "Express 24/7",
storeDescription = "Always for you.",
storeIcon = "fa-solid fa-store",
storeBlip = 59,
storeBlipSize = 0.8,
storeBlipColor = 25,
markerColor = {r = 3, g = 252, b = 65}
},
registeredCategories = {"Meals", "Drinks", "Alcohol"},
storeItems = {
{
label = "Cheeseburger",
price = 15.00,
itemname = "cheeseburger",
img = "https://cdn-icons-png.flaticon.com/512/5787/5787016.png",
category = "Meals"
},
{
label = "Sandwich",
price = 5.00,
itemname = "sandwich",
img = "https://cdn-icons-png.flaticon.com/512/184/184514.png",
category = "Meals"
},
{
label = "Donut",
price = 12.00,
itemname = "donut",
img = "https://cdn-icons-png.flaticon.com/512/2821/2821785.png",
category = "Meals"
},
{
label = "Chocolate",
price = 9.00,
itemname = "chocolate",
img = "https://cdn-icons-png.flaticon.com/512/7061/7061942.png",
category = "Meals"
},
{
label = "e Cola",
price = 6.00,
itemname = "cola",
img = "https://cdn-icons-png.flaticon.com/512/1149/1149810.png",
category = "Drinks"
},
{
label = "Water",
price = 2.00,
itemname = "water",
img = "https://cdn-icons-png.flaticon.com/512/5835/5835713.png",
category = "Drinks"
},
{
label = "Vodka 40%",
price = 32.00,
itemname = "vodka",
img = "https://cdn1.iconfinder.com/data/icons/russia-cartoon/512/g3833-512.png",
category = "Alcohol"
},
{
label = "Beer",
price = 10.00,
itemname = "beer",
img = "https://cdn-icons-png.flaticon.com/512/3242/3242977.png",
category = "Alcohol"
},
{
label = "Wine",
price = 30.00,
itemname = "wine",
img = "https://cdn-icons-png.flaticon.com/512/763/763072.png",
category = "Alcohol"
},
{
label = "Red Cigarettes",
price = 25.00,
itemname = "cigarettes",
img = "https://cdn-icons-png.flaticon.com/512/600/600383.png",
category = "Alcohol"
}
}
},
["ammunation"] = {
misc = {
storeName = "Ammunation",
storeDescription = "Best legal weapons in town.",
storeIcon = "fa-solid fa-gun",
storeBlip = 110,
storeBlipSize = 0.8,
storeBlipColor = 1,
markerColor = {r = 201, g = 28, b = 16}
},
registeredCategories = {"Handguns", "Melee", "Ammo", "Throwables"},
storeItems = {
{
label = "Knife",
price = 1500.00,
itemname = "weapon_knife",
img = "https://data.otherplanet.dev/img/WEAPON_KNIFE.png",
category = "Melee",
needLicense = false,
},
{
label = "Hatchet",
price = 750.00,
itemname = "weapon_hatchet",
img = "https://cdn-icons-png.flaticon.com/512/8615/8615992.png",
category = "Melee",
needLicense = false,
},
{
label = "Vintage Pistol",
price = 25000.00,
itemname = "weapon_vintagepistol",
img = "https://data.otherplanet.dev/img/WEAPON_VINTAGEPISTOL.png",
category = "Handguns",
needLicense = true,
},
{
label = "Glock 20 gen. 4",
price = 35000.00,
itemname = "weapon_glock",
img = "https://cdn3d.iconscout.com/3d/premium/thumb/handgun-3d-icon-download-in-png-blend-fbx-gltf-file-formats--gun-weapon-military-firearm-rifle-police-pack-crime-security-icons-7961773.png",
category = "Handguns",
needLicense = true,
},
{
label = "Ammo 9mm 1x",
price = 20.0,
itemname = "ammo-9",
img = "https://cdn3d.iconscout.com/3d/premium/thumb/ammo-3d-icon-download-in-png-blend-fbx-gltf-file-formats--ammunition-case-metal-box-bullet-military-pack-weapon-icons-9555390.png",
category = "Ammo",
needLicense = false,
},
{
label = "Smoke Grenade",
price = 1000.00,
itemname = "weapon_smokegrenade",
img = "https://cdn-icons-png.flaticon.com/512/3292/3292684.png",
category ="Throwables",
needLicense = true,
},
{
label = "Red Flare",
price = 200.00,
itemname = "weapon_flare",
img = "https://cdn-icons-png.flaticon.com/512/4617/4617122.png",
category ="Throwables",
needLicense = false,
}
}
},
["pharmacy"] = {
misc = {
storeName = "Pharmacy",
storeDescription = "Everything that u need.",
storeIcon = "fa-solid fa-prescription-bottle-medical",
storeBlip = 51,
storeBlipSize = 0.8,
storeBlipColor = 26,
markerColor = {r = 16, g = 186, b = 201},
},
registeredCategories = {"Kits", "Pills", "Other"},
storeItems = {
{
label = "Medkit",
price = 1500.00,
itemname = "medkit",
img = "https://static.wikia.nocookie.net/those-who-remain/images/a/ac/Medkit_icon.png/",
category = "Kits"
},
{
label = "Paracetamol 20-pcks",
price = 32.00,
itemname = "pills_paracetamol",
img = "https://cdn-icons-png.flaticon.com/512/11805/11805232.png",
category = "Pills"
},
{
label = "Bandage",
price = 50.00,
itemname = "bandage",
img = "https://cdn-icons-png.flaticon.com/512/2044/2044742.png",
category = "Other"
},
}
},
["blackshop"] = {
misc = {
storeName = "Black Shop",
storeDescription = "Every illegal equipment that u need.",
storeIcon = "fa-solid fa-handcuffs",
storeBlip = 84,
storeBlipSize = 0.8,
storeBlipColor = 1,
markerColor = {r = 252, g = 111, b = 3},
},
registeredCategories = {"Weapons", "Ammo", "Other"},
storeItems = {
{
label = "Knife",
price = 1500.00,
itemname = "weapon_knife",
img = "https://data.otherplanet.dev/img/WEAPON_KNIFE.png",
category = "Weapons",
},
{
label = "Hatchet",
price = 750.00,
itemname = "weapon_hatchet",
img = "https://cdn-icons-png.flaticon.com/512/8615/8615992.png",
category = "Weapons",
},
{
label = "Vintage Pistol",
price = 25000.00,
itemname = "weapon_vintagepistol",
img = "https://data.otherplanet.dev/img/WEAPON_VINTAGEPISTOL.png",
category = "Weapons",
},
{
label = "Ammo 9mm 1x",
price = 20.0,
itemname = "ammo-9",
img = "https://cdn3d.iconscout.com/3d/premium/thumb/ammo-3d-icon-download-in-png-blend-fbx-gltf-file-formats--ammunition-case-metal-box-bullet-military-pack-weapon-icons-9555390.png",
category = "Ammo",
},
{
label = "Heist Drill",
price = 2000.0,
itemname = "heist_drill",
img = "https://cdn-icons-png.flaticon.com/256/11015/11015067.png",
category = "Other",
},
}
},
["digitalden"] = {
misc = {
storeName = "Digital Den",
storeDescription = "Future is here.",
storeIcon = "fa-solid fa-signal",
storeBlip = 606,
storeBlipSize = 0.8,
storeBlipColor = 50,
markerColor = {r = 113, g = 52, b = 235},
},
registeredCategories = {"Phones", "Computers", "Other"},
storeItems = {
{
label = "iFruit 15",
price = 2990.00,
itemname = "ifruit15",
img = "https://cdn-icons-png.flaticon.com/512/545/545194.png",
category = "Phones"
},
{
label = "iPC 512gb",
price = 5990.00,
itemname = "ipc512gb",
img = "https://static.vecteezy.com/system/resources/thumbnails/013/441/060/small_2x/open-laptop-icon-illustration-png.png",
category = "Computers"
},
{
label = "PEN DRIVE 30gb",
price = 50.00,
itemname = "pendrive",
img = "https://cdn-icons-png.flaticon.com/512/917/917249.png",
category = "Other"
},
}
},
["youtool"] = {
misc = {
storeName = "YouTool",
storeDescription = "Best tools for your house and garden.",
storeIcon = "fa-solid fa-screwdriver-wrench",
storeBlip = 478,
storeBlipSize = 0.8,
storeBlipColor = 25,
markerColor = {r = 9, g = 135, b = 26},
},
registeredCategories = {"Hand Tools", "Drills", "Other"},
storeItems = {
{
label = "5kg Hammer",
price = 500.00,
itemname = "weapon_hammer",
img = "https://cdn-icons-png.flaticon.com/512/6788/6788572.png",
category = "Hand Tools"
},
{
label = "Hatchet",
price = 250.00,
itemname = "weapon_hatchet",
img = "https://icons.iconarchive.com/icons/aha-soft/desktop-halloween/256/Hatchet-icon.png",
category = "Hand Tools"
},
{
label = "Fire Extinguisher",
price = 1200.00,
itemname = "weapon_fireextinguisher",
img = "https://cdn-icons-png.flaticon.com/512/3183/3183140.png",
category = "Other"
},
{
label = "Drill",
price = 3500.00,
itemname = "yellow_drill",
img = "https://cdn-icons-png.flaticon.com/512/2716/2716782.png",
category = "Drills"
},
}
},
}
Last updated