Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Mk14 (Classic) from Contact/Enoch doesn't have a joint rail? #1396

Closed
arma3marius opened this issue Dec 15, 2020 · 1 comment · Fixed by #1398
Closed

Mk14 (Classic) from Contact/Enoch doesn't have a joint rail? #1396

arma3marius opened this issue Dec 15, 2020 · 1 comment · Fixed by #1398
Labels
Milestone

Comments

@arma3marius
Copy link

Mods (complete and add to the following information):

  • Arma 3: Game version: 2.00.146773
  • CBA: 3.15.1

Description:
The Contact DLC/Enoch Mk14 (Classic) is missing the ability to mount mod attachments, such as scopes.

Steps to reproduce:

  • Go to Arsenal or any Mission
  • Compare attachments list with a mod loaded such as CUP weapons
  • The Marksmen versions (Camo and Olive) work fine, but not the "Classic" version

Expected behavior:
Since all Mk14s have the same rails, all should be able to mount the same attachments. Probably an issue with joint rails.

Where did the issue occur?

  • General game / weapons

Log Files:

  • not applicable

Additional context:
Please refer to this link on CUP feedback: link

Screenshots:
image

@arma3marius
Copy link
Author

arma3marius commented Dec 16, 2020

I have fixed it like this my config:

// load classes from CBA Joint Rails
class asdg_OpticRail1913_short;
class asdg_UnderSlot;

class cfgWeapons
{
	class DMR_06_base_F;

	class DMR_06_hunter_base_F : DMR_06_base_F {
		class WeaponSlotsInfo;
	};

	class srifle_DMR_06_hunter_F : DMR_06_hunter_base_F {
		class WeaponSlotsInfo: WeaponSlotsInfo {
			class CowsSlot : asdg_OpticRail1913_short {
				iconPosition[] = {0.52,0.36};
				iconScale = 0.15;
			};
			class UnderBarrelSlot : asdg_UnderSlot {
				iconPosition[] = {0.32,0.8};
				iconScale = 0.3;
			};
		};
	};
};

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Projects
None yet
Development

Successfully merging a pull request may close this issue.

2 participants