Page MenuHomeFeedback Tracker

xm177e2 short model does not support suppressor attachment in third person only
New, NormalPublic

Description

i created a mod for the xm177e2 short that allows the m16 suppressor to attach to the muzzle and it shows up fine in first person but when one switches to third person, the muzzle is unchanged from the base model.

Details

Severity
Minor
Resolution
Open
Reproducibility
Always
Operating System
Windows 10 x64
Category
Modding
Steps To Reproduce

class vn_m16;
class vn_xm177: vn_m16
{
class WeaponSlotsInfo;
};
class vn_xm177_short: vn_xm177
{

class WeaponSlotsInfo: WeaponSlotsInfo
{
    class CowsSlot;
    class MuzzleSlot;
};

};
class vn_xm177_short_x: vn_xm177_short
{

scope = 1;

baseWeapon="vn_xm177_short_x";

class WeaponSlotsInfo: WeaponSlotsInfo
{
    class CowsSlot: CowsSlot
    {
        compatibleItems[] += {"vn_o_1x_sp_m16"};
    };
    class MuzzleSlot: MuzzleSlot
    {
        compatibleItems[] = {"vn_s_m16","muzzle_snds_M"};
        iconPosition[] = {0,0.45};
        iconScale = 0.2;
        iconPicture = "\A3\Weapons_F\Data\clear_empty.paa";
        iconPinPoint = "Left";
        linkProxy = "\A3\data_f\proxies\weapon_slots\MUZZLE";
        access = 1;
        scope = 0;
    };
};

};

Event Timeline

debug created this task.Fri, Jul 4, 2:30 AM