Hey Gunter, I was working on expanding this mod to the cdlcs. It's my first time making a config mod, and I need some assistance I guess. I've been working on the Prairie fire CDLC first.
Here's what I have so far:
class vn_rifle: Rifle_Base_F
{
opticsZoomMin = 0.25;
opticsZoomMax = 0.5;
opticsZoomInit = 0.25;//0.75;
};
class vn_rifle762: vn_rifle
{
opticsZoomMin = 0.25;
opticsZoomMax = 0.5;
opticsZoomInit = 0.25;//0.75;
};
class vn_smg: vn_rifle
{
opticsZoomMin = 0.25;
opticsZoomMax = 0.5;
opticsZoomInit = 0.25;//0.75;
};
class vn_lmg: vn_rifle
{
opticsZoomMin = 0.25;
opticsZoomMax = 0.5;
opticsZoomInit = 0.25;//0.75;
};
class vn_shotgun: vn_rifle
{
opticsZoomMin = 0.25;
opticsZoomMax = 0.5;
opticsZoomInit = 0.25;//0.75;
};
class vn_Launcher_Base_F: Launcher_Base_F
{
opticsZoomMin = 0.25;
opticsZoomMax = 0.5;
opticsZoomInit = 0.25;//0.75;
};
class vn_pistol: Pistol_Base_F
{
opticsZoomMin = 0.25;
opticsZoomMax = 0.5;
opticsZoomInit = 0.25;//0.75;
};
Basically, I think I put in the correct classnames since most of the weapons are working. The m16, m14, m60, m63(stoner), m79, l1a1, pistols, and launchers aren't working with this setup so far above. The new ww2 weapons just added in the 1.3 update work with this setup. So, I was just hoping to ask you if I missed anything or wrote something wrong. I've been looking through the structure of the guns that didn't work, and I couldn't really find any classnames I missed.