Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- Config.BlipColor = 69 -- Default color of shop blips -- https://docs.fivem.net/docs/game-references/blips/#blip-colors
- Config.BlipColorForOwner = 0 -- Default color for the owner of the store
- Config.BlipScale = 0.8
- Config.SetDefaultInventory = false -- If this value is true the shops that are buyable but not bought will contain the default inventory by type
- Config.ShopSprites = {
- ['default'] = {
- sprite = 59,
- color = 69,
- },
- ['liquor'] = {
- sprite = 93,
- color = 69,
- },
- ['phonestore'] = {
- sprite = 59,
- color = 69,
- },
- ['youtool'] = {
- sprite = 566,
- color = 69,
- },
- ['gunstore'] = {
- sprite = 110,
- color = 69,
- }
- }
- Config.DefaultInventory = { -- THose are also the categories of the shops, You can add more here. Make sure you also add them to the ShopSprites.
- ['default'] = {
- { name = 'Bread', price = 5 },
- { name = 'Water', price = 5 },
- { name = 'Cola', price = 5 },
- { name = 'Burger', price = 5 },
- { name = 'Phone', price = 500 },
- },
- ['liquor'] = {
- { name = 'Whiskey', price = 20 },
- { name = 'Vodka', price = 20 },
- },
- ['phonestore'] = {
- { name = 'Radio', price = 100 },
- { name = 'Phone', price = 400 },
- { name = 'Tablet', price = 750 },
- { name = 'Laptop', price = 1000 },
- },
- ['youtool'] = {
- { name = 'Lockpick', price = 50 },
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment