Advertisement
garfield

[COD]: Pegar nome da arma pelo id.

Oct 11th, 2012
254
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Pawn 1.18 KB | None | 0 0
  1. stock GetWeaponNameByID(weaponid){
  2.  
  3.     static WeaponNames[][32] ={
  4.         {"Unarmed (Fist)"},                 {"Brass Knuckles"},                 {"Golf Club"},
  5.         {"Night Stick"},                    {"Knife"},                          {"Baseball Bat"},
  6.         {"Shovel"},                         {"Pool Cue"},                       {"Katana"},
  7.         {"Chainsaw"},                       {"Purple Dildo"},                   {"Big White Vibrator"},
  8.         {"Medium White Vibrator"},          {"Small White Vibrator"},           {"Flowers"},
  9.         {"Cane"},                           {"Grenade"},                        {"Teargas"},
  10.         {"Molotov"},                        {" "},                              {" "},
  11.         {" "},                              {"Colt 45"},                        {"Colt 45 (Silenced)"},
  12.         {"Desert Eagle"},                   {"Normal Shotgun"},                 {"Sawnoff Shotgun"},
  13.         {"Combat Shotgun"},                 {"Micro Uzi (Mac 10)"},             {"MP5"},
  14.         {"AK47"},                           {"M4"},                             {"Tec9"},
  15.         {"CountryRifle"},                   {"Sniper"},                         {"RocketLauncher"},
  16.         {"Heat-Seeking Rocket Launcher"},   {"Flamethrower"},                   {"Minigun"},
  17.         {"Satchel Charge"},                 {"Detonator"},                      {"Spray Can"},
  18.         {"Fire Extinguisher"},              {"Camera"},                         {"Night Vision Goggles"},
  19.         {"Infrared Vision Goggles"},        {"Parachute"},                      {"Fake Pistol"}
  20.     };
  21.     return WeaponNames[weaponid];
  22. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement