This repository has been archived by the owner on Jan 24, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 12
/
config.lua
67 lines (65 loc) · 2.66 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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
Config = {}
Config.Shoptext = 'Press ~INPUT_JUMP~ to access Clothing Store' -- Text to open the clothing shop
Config.Cloakroomtext = 'Press ~INPUT_JUMP~ to change your Outfit' -- Text to open the clothing shop
Config.BlipName = 'Clothing Store' -- Blip Name Showed on map
Config.BlipNameCloakRoom = 'Wardrobe' -- Blip Name Showed on map
Config.EnableCommand = true -- Enable/Disable /clothing command
Config.BlipSprite = 1195729388 -- Clothing shop sprite
Config.BlipSpriteCloakRoom = 1496995379 -- Clothing shop sprite
Config.BlipScale = 0.2 -- Blip scale
Config.OpenKey = 0xD9D0E1C0 -- Opening key hash
Config.Price = 5 -- Price for clothes
Config.Zones = {
vector3(-325.5,774.57,117.45), -- VALENTINE
vector3(1225.60,-1293.85,76.90), -- RHODES
vector3(2550.81,-1166.28,53.68), -- SAINT DENIS
vector3(-767.94,-1294.95,43.84), -- BLACK WATER
vector3(-1794.89,-385.22,160.33) -- STRAWBERRY
}
Config.Cloakroom = {
vector3(-325.29,766.24,117.48), -- VALENTINE
vector3(-1817.11,-368.77,166.54),
vector3(-825.40,-1323.76,47.91),
vector3(1331.86,-1377.35,80.55),
vector3(2556.49,-1160.14,53.74)
}
Config.Label = {
["boot_accessories"] = "Boot Accessories",
["pants"] = "Pants",
["cloaks"] = "Cloak",
["hats"] = "Hat",
["vests"] = "Vest",
["chaps"] = "Chaps",
["shirts_full"] = "Shirt",
["badges"] = "Badge",
["masks"] = "Mask",
["spats"] = "Spats",
["neckwear"] = "Neck",
["boots"] = "Boots",
["accessories"] = "Accessories",
["jewelry_rings_right"] = "Jewelry Right",
["jewelry_rings_left"] = "Jewelry Left",
["jewelry_bracelets"] = "Bracelets",
["gauntlets"] = "Gauntlets",
["neckties"] = "Necktie",
["holsters_knife"] = "Knife Holster",
["talisman_holster"] = "Talisman Holster",
["loadouts"] = "Loadouts",
["suspenders"] = "Suspenders",
["talisman_satchel"] = "Talisman Satchel",
["satchels"] = "Satchel",
["gunbelts"] = "Gunbelt",
["belts"] = "Belt",
["belt_buckles"] = "Belt Buckle",
["holsters_left"] = "Holster Left",
["holsters_right"] = "Holster Right",
["talisman_wrist"] = "Wrist Talisman",
["coats"] = "Coat",
["coats_closed"] = "Coat Closed",
["ponchos"] = "Poncho",
["eyewear"] = "Eyewear",
["gloves"] = "Gloves",
["holsters_crossdraw"] = "Crossdraw Holster",
["aprons"] = "Aprons",
["skirts"] = "Skirts",
}