File size: 2,443 Bytes
7e9dc27
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
-- This file is part of SA MoonLoader package.
-- Licensed under the MIT License.
-- Copyright (c) 2016, BlastHack Team <blast.hk>


local weapons = {
	FIST = 0,
	BRASSKNUCKLES = 1,
	GOLFCLUB = 2,
	NIGHTSTICK = 3,
	KNIFE = 4,
	BASEBALLBAT = 5,
	SHOVEL = 6,
	POOLCUE = 7,
	KATANA = 8,
	CHAINSAW = 9,
	PURPLEDILDO = 10,
	WHITEDILDO = 11,
	WHITEVIBRATOR = 12,
	SILVERVIBRATOR = 13,
	FLOWERS = 14,
	CANE = 15,
	GRENADE = 16,
	TEARGAS = 17,
	MOLOTOV = 18,
	COLT45 = 22,
	SILENCED = 23,
	DESERTEAGLE = 24,
	SHOTGUN = 25,
	SAWNOFFSHOTGUN = 26,
	COMBATSHOTGUN = 27,
	UZI = 28,
	MP5 = 29,
	AK47 = 30,
	M4 = 31,
	TEC9 = 32,
	RIFLE = 33,
	SNIPERRIFLE = 34,
	ROCKETLAUNCHER = 35,
	HEATSEEKER = 36,
	FLAMETHROWER = 37,
	MINIGUN = 38,
	SATCHELCHARGE = 39,
	DETONATOR = 40,
	SPRAYCAN = 41,
	FIREEXTINGUISHER = 42,
	CAMERA = 43,
	NIGHTVISION = 44,
	THERMALVISION = 45,
	PARACHUTE = 46
}

local id = weapons
weapons.names = {
	[id.FIST] = 'Fist',
	[id.BRASSKNUCKLES] = 'Brass Knuckles',
	[id.GOLFCLUB] = 'Golf Club',
	[id.NIGHTSTICK] = 'Nightstick',
	[id.KNIFE] = 'Knife',
	[id.BASEBALLBAT] = 'Baseball Bat',
	[id.SHOVEL] = 'Shovel',
	[id.POOLCUE] = 'Pool Cue',
	[id.KATANA] = 'Katana',
	[id.CHAINSAW] = 'Chainsaw',
	[id.PURPLEDILDO] = 'Purple Dildo',
	[id.WHITEDILDO] = 'Dildo',
	[id.WHITEVIBRATOR] = 'Vibrator',
	[id.SILVERVIBRATOR] = 'Silver Vibrator',
	[id.FLOWERS] = 'Flowers',
	[id.CANE] = 'Cane',
	[id.GRENADE] = 'Grenade',
	[id.TEARGAS] = 'Tear Gas',
	[id.MOLOTOV] = 'Molotov Cocktail',
	[id.COLT45] = '9mm',
	[id.SILENCED] = 'Silenced 9mm',
	[id.DESERTEAGLE] = 'Desert Eagle',
	[id.SHOTGUN] = 'Shotgun',
	[id.SAWNOFFSHOTGUN] = 'Sawnoff Shotgun',
	[id.COMBATSHOTGUN] = 'Combat Shotgun',
	[id.UZI] = 'Micro Uzi',
	[id.MP5] = 'MP5',
	[id.AK47] = 'AK-47',
	[id.M4] = 'M4',
	[id.TEC9] = 'Tec-9',
	[id.RIFLE] = 'Country Rifle',
	[id.SNIPERRIFLE] = 'Sniper Rifle',
	[id.ROCKETLAUNCHER] = 'RPG',
	[id.HEATSEEKER] = 'HS Rocket',
	[id.FLAMETHROWER] = 'Flamethrower',
	[id.MINIGUN] = 'Minigun',
	[id.SATCHELCHARGE] = 'Satchel Charge',
	[id.DETONATOR] = 'Detonator',
	[id.SPRAYCAN] = 'Spraycan',
	[id.FIREEXTINGUISHER] = 'Fire Extinguisher',
	[id.CAMERA] = 'Camera',
	[id.NIGHTVISION] = 'Night Vis Goggles',
	[id.THERMALVISION] = 'Thermal Goggles',
	[id.PARACHUTE] = 'Parachute'
}

function weapons.get_name(id)
	return weapons.names[id]
end

return weapons