function is_ammo(sect)
return (sect:sub(1, 4) == "ammo" or sect:sub (1 , 7) == "grenade")
end
function is_ammo_gren(sect)
return ( sect == "ammo_vog-25" or sect == "ammo_vog-25p" or sect == "ammo_m209" or sect == "grenade_f1" )
end
function is_ammo_std(sect)
return not is_ammo_gren(sect) and is_ammo(sect)
end
function is_ammo_heavy(sect)
if ( sect == "ammo_og-7b" or sect == "ammo_7.62x54r" or sect == "ammo_gaus" ) then
return true
end
if table.getn(heavy_ammo_list) == 0 then
heavy_ammo_list = vergas_lib.str_explode("|",vergas_lib.set_pr_from_config_str("razgruzka","heavy_weapon_ammo"),true)
end
for i, s in ipairs(heavy_ammo_list) do
if s == sect then
return true
end
end -- for
return false
end
function is_grenade(sect)
return ( sect:sub (1 , 7) == "grenade_rgd5" or sect == "grenade_light" or sect == "grenade_gd-05" )
end
function is_medical(sect)
return (sect:sub (1 , 6) == "medkit" or sect == "bandage" or sect == "antirad" or sect == "drag_cat_eyes" or sect:sub (1 , 6) == "energy")
end