Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- Config = Config or {}
- Config.CheckForUpdates = true -- If you don't want the check on updates, set this to false
- Config.Locale = GetConvar('esx:locale', 'en')
- Config.Tax = false -- Tax percentage on product sale in the shop
- Config.MaxEmptyTime = 168 -- How many hours the shop may be empty before it is sold automaticly // Default 168 - 1 Week
- Config.BusinessCenter = vec3(-66.427528, -801.657471, 44.227280);
- Config.MaxShopsPerPerson = 5 -- Max shops persons | FALSE or 0 to disable
- Config.SellPercentage = 75
- Config.ShopNameUnique = true -- If false then shops can be named the same.
- Config.ValutaIcon = 'euro' -- euro / dollar
- Config.Wholesale = {
- coords = vec3(2680.24, 3508.94, 53.3),
- blipFor = 'owners', -- owners, everyone or none
- products = { -- Add your own items that people can buy at the wholesale location
- ['burger'] = {
- price = 1,
- },
- ['water'] = {
- price = 1,
- },
- ['cola'] = {
- price = 1,
- },
- ['bread'] = {
- price = 1,
- },
- ['beer'] = {
- price = 1,
- },
- ['pinacolada'] = {
- price = 1,
- },
- }
- }
- Config.JobTimer = 15 -- Time that some one has to do the job, after this timer the job will be cancelled and put back online
- -- The player jobs that owners can create the get stock for them can have multiple locations where they need to pick up to stock.
- -- The location is randomly chosen
- Config.WholesaleJobs = {
- vec3(-73.792969, 6265.895020, 31.235144),
- vec3(1242.861572, -3297.552979, 5.540677),
- vec3(-1231.978882, -2356.939453, 14.101535),
- vec3(2677.574463, 3505.978271, 53.303368)
- }
Advertisement
Add Comment
Please, Sign In to add comment