-
Notifications
You must be signed in to change notification settings - Fork 0
/
weaponGroups.R
49 lines (39 loc) · 1.13 KB
/
weaponGroups.R
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
# figure out how console outputs guns
#categorize guns to make colorizing more compact
gun.classes <- c("pistol", "shotgun", "smg", "rifle", "sniper", "machine gun", "knife", "grenade")
factor(gun.classes, labels = gun.classes)
# number of weapon groups
0:6
# 0 = knife = knife
# 1 = pistol = deagle, glock, usp, p228, elite, fiveseven
# 2 = shotgun = m3, xm1014
# 3 = smg = mac10, tmp, mp5navy, ump45, p90
# 4 = rifle = galil, ak47, sg500, famas, m4a1, aug, sg552
# 5 = sniper = scout, awp, g3sg1
# 6 = machine gun = m249
# 7 = knife = knife
# 8 = grenade = hegrenade
Glock (glock)
USP (usp)
228 Compact (p228)
Desert Eagle (deagle)
Dualies (elite)
Five-Seven (fiveseven)
Pump Shotgun (m3)
Auto Shotgun (xm1014)
Mac-10 (mac10)
TMP (tmp)
MP5 (mp5navy)
UMP (ump45)
P90 (p90)
Defender (galil)
AK-47/CV-47 (ak47)
Krieg Commando (sg550)
Clarion (famas)
Maverick M4A1 Colt (m4a1)
Bullpup (aug)
Scout (scout)
Krieg 552 (sg552)
AWP (awp)
D3/AU1 (g3sg1)
M249 (m249)