01.04.2016, 11:51
Hi,
It can return string?
Код:
stock GetWeaponNameEx(weaponid, weapon[], len = sizeof(weapon))
{
switch(weaponid)
{
case 18: strcat(weapon, "Molotov Cocktail", len);
case 44: strcat(weapon, "Night Vision Goggles", len);
case 45: strcat(weapon, "Thermal Goggles", len);
default: GetWeaponName(weaponid, weapon, len);
}
return weapon
}


