🛒nova_shops
Features
Configuration
ShopConfig = {
InteractDistance = 1.5,
Prices = {
Clothing = 100, -- Base price for clothing items
Barber = 50, -- Base price for barber services
Tattoo = 200, -- Base price per tattoo
},
Stores = {
General = {
{
label = '24/7 Innocence Blvd',
coords = vector3(25.7, -1347.3, 29.5),
items = {
{ name = 'bread', label = 'Pão', price = 10 },
{ name = 'water', label = 'Água', price = 5 },
-- More items...
},
},
-- More stores...
},
Clothing = {
{ label = 'Suburban', coords = vector3(127.0, -223.0, 54.6) },
{ label = 'Ponsonbys', coords = vector3(-708.7, -152.2, 37.4) },
-- More locations...
},
Barber = {
{ label = 'Barbeiro Downtown', coords = vector3(-814.3, -183.8, 37.6) },
-- More locations...
},
Tattoo = {
{ label = 'Tattoo Chumash', coords = vector3(-3169.0, 1075.0, 20.8) },
-- More locations...
},
},
ClothingCategories = {
{ id = 'tops', label = 'Tops', component = 11 },
{ id = 'undershirt', label = 'Undershirt', component = 8 },
{ id = 'pants', label = 'Calças', component = 4 },
{ id = 'shoes', label = 'Sapatos', component = 6 },
{ id = 'hats', label = 'Chapéus', prop = 0 },
{ id = 'glasses', label = 'Óculos', prop = 1 },
-- More categories...
},
BarberCategories = {
'hair', 'beard', 'eyebrows', 'makeup', 'blush', 'lipstick'
},
Tattoos = {
torso = { ... },
left_arm = { ... },
right_arm = { ... },
left_leg = { ... },
right_leg = { ... },
head = { ... },
},
}Store Types
Type
Description
Payment
How It Works
General Stores
Clothing Stores
Barber Shops
Tattoo Studios
Dependencies
Notes
Last updated