-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathconfig.lua
106 lines (99 loc) · 2.5 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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
Config = {}
Config.Locations = { -- Locations of where the ped spawns. Chosen randomly every night at 22:00. Add as many as you like.
[1] = vector4(247.72, -34.56, 73.99, 30.18),
[2] = vector4(2545.28, 2592.14, 36.96, 114.09),
[3] = vector4(1862.15, 3856.72, 35.27, 338.39),
[4] = vector4(-406.47, -1682.39, 18.19, 145.91),
}
Config.Model = 'cs_joeminuteman' -- The model of the ped.
Config.Goodies = {
label = "Blackmarket",
slots = 10,
items = {
[1] = {
name = "weapon_microsmg",
price = 28000,
amount = 5,
info = {},
type = "item",
slot = 1,
},
[2] = {
name = "weapon_assaultrifle",
price = 33000,
amount = 5,
info = {},
type = "item",
slot = 2,
},
[3] = {
name = "weapon_pistol_mk2",
price = 3800,
amount = 5,
info = {},
type = "item",
slot = 3,
},
[4] = {
name = "weapon_combatpistol",
price = 15000,
amount = 5,
info = {},
type = "item",
slot = 4,
},
[5] = {
name = "thermite",
price = 1000,
amount = 10,
info = {},
type = "item",
slot = 5,
},
[6] = {
name = "smg_ammo",
price = 150,
amount = 35,
info = {},
type = "item",
slot = 6,
},
[7] = {
name = "oxy",
price = 150,
amount = 50,
info = {},
type = "item",
slot = 7,
},
[8] = {
name = "rifle_ammo",
price = 250,
amount = 35,
info = {},
type = "item",
slot = 8,
},
[9] = {
name = "trojan_usb",
price = 2000,
amount = 5,
info = {},
type = "item",
slot = 9,
},
[10] = {
name = "weapon_heavypistol",
price = 11000,
amount = 5,
info = {},
type = "item",
slot = 10,
}
}
}
---------------------
-- SHOP OPEN/CLOSE --
---------------------
Config.Open = 22
Config.Close = 5