Jump to content
Sign in to follow this  
wld427

Help With BIS Artillery

Recommended Posts

hey folks i am working on some artillery pieces and i am having some issues witht he BIS arty computer.

Basically i have the HE and WP shells working but for some reason i cannot get the smoke, illumination, and SADARM to follow suit. Here is my code. Please let me know if you spot my error.

Magazines

class 30Rnd_105mmHE_M119;

class 30Rnd_T_155mmHE_M1 : 30Rnd_105mmHE_M119 {
	displayName = "155mm HE";
	ammo = "PRACS_T_155_HE";

};


class 30Rnd_T_155mmWP_M1 : 30Rnd_105mmHE_M119 {
	displayName = "155mm WP";
	ammo = "Sh_105_WP";
};





class 30Rnd_T_155mmSMOKE_M1 : 30Rnd_105mmHE_M119 {
	displayName = "155mm WP Smoke";
	ammo = "Sh_105_SMOKE";

};

class 30Rnd_T_155mmSADARM_M1 : 30Rnd_105mmHE_M119 {
	displayName = "155mm SADARM";
	ammo = "Sh_105_SADARM";
};

class 30Rnd_T_155mmILLUM_M1 : 30Rnd_105mmHE_M119 {
	displayName = "155mm Illumination";
	ammo = "Sh_105_ILLUM";
};

Weapon

class PRACS_T_155mm_Gun : M119
{
	scope = 1;
	displayName = "G4M1 155mm Gun";
	magazines[] = {"30Rnd_T_155mmHE_M1","30Rnd_T_155mmSADARM_M1","30Rnd_T_155mmWP_M1","30Rnd_T_155mmSMOKE_M1","30Rnd_T_155mmILLUM_M1"};


};

Share this post


Link to post
Share on other sites

Thanks for the attempt. Unfortunately when you load the arty mags directly into the weapon then the targeting system does not work.

Share this post


Link to post
Share on other sites

Please sign in to comment

You will be able to leave a comment after signing in



Sign In Now
Sign in to follow this  

×