1
0
mirror of https://github.com/VCMP-SqMod/SqMod.git synced 2025-02-21 20:27:13 +01:00

Add heli-blade to the list of weapon names.

This commit is contained in:
Sandu Liviu Catalin 2016-07-30 19:45:30 +03:00
parent ec26be1fb2
commit 3a216b5447

View File

@ -11,24 +11,42 @@ namespace SqMod {
// ------------------------------------------------------------------------------------------------ // ------------------------------------------------------------------------------------------------
static String CS_Weapon_Names[] = { static String CS_Weapon_Names[] = {
"Unarmed", "Brass Knuckles", "Screwdriver", "Golf Club", /* 0 */ "Unarmed", /* 1 */ "Brass Knuckles",
"Nightstick", "Knife", "Baseball Bat", "Hammer", /* 2 */ "Screwdriver", /* 3 */ "Golf Club",
"Meat Cleaver", "Machete", "Katana", "Chainsaw", /* 4 */ "Nightstick", /* 5 */ "Knife",
"Grenade", "Remote Detonation Grenade", "Tear Gas", "Molotov Cocktails", /* 6 */ "Baseball Bat", /* 7 */ "Hammer",
"Missile", "Colt .45", "Python", "Pump-Action Shotgun", /* 8 */ "Meat Cleaver", /* 9 */ "Machete",
"SPAS-12 Shotgun", "Stubby Shotgun", "TEC-9", "Uzi", /* 10 */ "Katana", /* 11 */ "Chainsaw",
"Silenced Ingram", "MP5", "M4", "Ruger", /* 12 */ "Grenade", /* 13 */ "Remote Detonation Grenade",
"Sniper Rifle", "Laserscope Sniper Rifle", "Rocket Launcher", "Flamethrower", /* 14 */ "Tear Gas", /* 15 */ "Molotov Cocktails",
"M60", "Minigun", "Bomb", "Helicannon", /* 16 */ "Missile", /* 17 */ "Colt .45",
"Camera", "", "", "Vehicle", /* 18 */ "Python", /* 19 */ "Pump-Action Shotgun",
"", "Explosion", "Driveby", "Drowned", /* 20 */ "SPAS-12 Shotgun", /* 21 */ "Stubby Shotgun",
"Fall", "", "", "", /* 22 */ "TEC-9", /* 23 */ "Uzi",
"", "", "", "Explosion", /* 24 */ "Silenced Ingram", /* 25 */ "MP5",
"", "", "", "", /* 26 */ "M4", /* 27 */ "Ruger",
"", "", "", "", /* 28 */ "Sniper Rifle", /* 29 */ "Laserscope Sniper Rifle",
"", "", "", "", /* 30 */ "Rocket Launcher", /* 31 */ "Flamethrower",
"", "", "", "", /* 32 */ "M60", /* 33 */ "Minigun",
"", "", "Suicide", "" /* 34 */ "Bomb", /* 35 */ "Heliannon",
/* 36 */ "Camera", /* 37 */ "",
/* 38 */ "", /* 39 */ "Vehicle",
/* 40 */ "Heliblade", /* 41 */ "Explosion",
/* 42 */ "Driveby", /* 43 */ "Drowned",
/* 44 */ "Fall", /* 45 */ "",
/* 46 */ "", /* 47 */ "",
/* 48 */ "", /* 49 */ "",
/* 50 */ "", /* 51 */ "Explosion",
/* 52 */ "", /* 53 */ "",
/* 54 */ "", /* 55 */ "",
/* 56 */ "", /* 57 */ "",
/* 58 */ "", /* 59 */ "",
/* 60 */ "Heliblade", /* 61 */ "",
/* 62 */ "", /* 63 */ "",
/* 64 */ "", /* 65 */ "",
/* 66 */ "", /* 67 */ "",
/* 68 */ "", /* 69 */ "",
/* 70 */ "Suicide", /* 71 */ ""
}; };
// ------------------------------------------------------------------------------------------------ // ------------------------------------------------------------------------------------------------