09.05.2014, 16:18
No, it is at the link I sent you (at the bottom of it).
pawn Код:
stock GetWeaponNameEx(weaponid, weapon[], len)
{
switch (weaponid)
{
case 18: return weapon[0] = 0, strcat(weapon, "Molotov Cocktail", len), true;
case 44: return weapon[0] = 0, strcat(weapon, "Thermal Goggles", len), true;
case 45: return weapon[0] = 0, strcat(weapon, "Night Vision Goggles", len), true;
default: return GetWeaponName(weaponid, weapon, len);
}
return false;
}

