-
Notifications
You must be signed in to change notification settings - Fork 115
/
config.lua
92 lines (85 loc) · 1.67 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
Config = {}
Config.UseableItems = true -- Set to false if you want to use commands instead of usable items
Config.Locations = {
["main"] = {
label = "Weazle News HQ",
coords = vector4(-597.89, -929.95, 24.0, 271.5),
},
["inside"] = {
label = "Weazle News HQ Inside",
coords = vector4(-77.46, -833.77, 243.38, 67.5),
},
["outside"] = {
label = "Weazle News HQ Outside",
coords = vector4(-598.25, -929.86, 23.86, 86.5),
},
["vehicle"] = {
label = "Vehicle Storage",
coords = vector4(-552.24, -925.61, 23.86, 242.5),
},
["heli"] = {
label = "Helicopter Storage",
coords = vector4(-583.08, -930.55, 36.83, 89.26),
}
}
Config.Vehicles = {
-- Grade 0
[0] = {
["rumpo"] = "Rumpo",
},
-- Grade 1
[1] = {
["rumpo"] = "Rumpo",
},
-- Grade 2
[2] = {
["rumpo"] = "Rumpo",
},
-- Grade 3
[3] = {
["rumpo"] = "Rumpo",
},
-- Grade 4
[4] = {
["rumpo"] = "Rumpo",
}
}
Config.Helicopters = {
-- Grade 0
[0] = {
["frogger"] = "Frogger",
},
-- Grade 1
[1] = {
["frogger"] = "Frogger",
},
-- Grade 2
[2] = {
["frogger"] = "Frogger",
},
-- Grade 3
[3] = {
["frogger"] = "Frogger",
},
-- Grade 4
[4] = {
["frogger"] = "Frogger",
}
}
Config.VehicleItems = {
[1] = {
name = "newscam",
amount = 1,
info = {},
},
[2] = {
name = "newsmic",
amount = 1,
info = {},
},
[3] = {
name = "newsbmic",
amount = 1,
info = {},
},
}