-
Notifications
You must be signed in to change notification settings - Fork 0
/
config.lua
74 lines (71 loc) · 1.9 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
Config = {}
-- These are all the items you can purcahse
Config.Items = {
{
label = "Pistol Ammo (100 Rounds)",
item = "WEAPON_PISTOL",
price = 250
},
{
label = "Stun Cartridge (10 Rounds)",
item = "WEAPON_STUNGUN",
price = 250
},
{
label = "Micro SMG Ammo (100 Rounds)",
item = "WEAPON_MICROSMG",
price = 250
},
{
label = "Shotgun Ammo (100 Rounds)",
item = "WEAPON_PUMPSHOTGUN",
price = 250
},
{
label = "Assult Rifle Ammo (100 Rounds)",
item = "WEAPON_ASSAULTRIFLE",
price = 250
},
{
label = "Special Carbine Ammo (100 Rounds)",
item = "WEAPON_SPECIALCARBINE",
price = 250
},
{
label = "Sniper Ammo (100 Rounds)",
item = "WEAPON_SNIPERRIFLE",
price = 250
},
{
label = "Fireworks (100)",
item = "WEAPON_FIREWORK",
price = 250
},
{
label = "Grenades (10 Count)",
item = "WEAPON_GRENADE",
price = 250
},
{
label = "Tear Gas (10 Count)",
item = "WEAPON_BZGAS",
price = 250
},
{
label = "Smoke Grenade (10 Count)",
item = "WEAPON_SMOKEGRENADE",
price = 250
},
}
-- Ammunation Locations
Config.Locations = {
{ ['x'] = 844.84, ['y'] = -1029.57, ['z'] = 28.19},
{ ['x'] = -664.7, ['y'] = -939.22, ['z'] = 21.83},
{ ['x'] = 812.62, ['y'] = -2153.63, ['z'] = 29.62},
{ ['x'] = 1694.55, ['y'] = 3755.55, ['z'] = 34.71},
{ ['x'] = -329.6, ['y'] = 6079.57, ['z'] = 31.45},
{ ['x'] = 249.69, ['y'] = -46.52, ['z'] = 69.94},
{ ['x'] = 18.47, ['y'] = -1109.81, ['z'] = 29.8},
{ ['x'] = 2570.34, ['y'] = 297.98, ['z'] = 108.73},
{ ['x'] = -1117.16, ['y'] = 2694.18, ['z'] = 18.55}
}