forked from wasabirobby/wasabi_oxshops
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathconfig.lua
45 lines (40 loc) · 1.47 KB
/
config.lua
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
-----------------For support, scripts, and more----------------
--------------- https://discord.gg/wasabiscripts -------------
---------------------------------------------------------------
Config = {}
Config.checkForUpdates = true -- Check for updates?
Config.DrawMarkers = true -- draw markers when nearby?
Config.DefaultPrice = 100 -- Default price for items without metadata
Config.Shops = {
['uwucafe'] = { -- Job name
label = 'UwU Cafe',
slots = 50,
weight = 100000,
blip = {
enabled = true,
coords = vec3(-583.37, -1060.80, 22.34),
sprite = 279,
color = 8,
scale = 0.7,
string = 'UwU Cafe'
},
bossMenu = {
enabled = true, -- Enable boss menu?
coords = vec3(-597.07, -1053.40, 22.34), -- Location of boss menu
string = '[E] - Access Boss Menu', -- Text UI label string
range = 3.0, -- Distance to allow access/prompt with text UI
},
locations = {
stash = {
string = '[E] - Access Inventory',
coords = vec3(-588.59, -1066.42, 22.34),
range = 3.0
},
shop = {
string = '[E] - Access Shop',
coords = vec3(-583.37, -1060.80, 22.34),
range = 4.0
}
}
}, -- Copy and paste this shop to create more
}