Jump to content

[Release] Simple IED Script


Recommended Posts

IED's

Might be handy when you cant find anything good.

 

Installation:

You need maca's right click system: HERE.

 

Download this: and place it to your custom folder in mission.pbo: HERE.

 

And place this to your extra_rc.hpp:

class ExtraRc {
    class HandGrenade_West {
        class ied1 {
            text = "Craft a tiny IED";
            script = "execVM 'custom\IEDs\tiny_IED.sqf';";
        };
	};
	class BAF_ied_v1 {
		class ied2 {
			text = "Craft a small IED";
			script = "execVM 'custom\IEDs\small_IED.sqf';";
		};
	};
	class BAF_ied_v2 {
		class ied3 {
			text = "Craft a normal IED";
			script = "execVM 'custom\IEDs\normal_IED.sqf';";
		};
	};
	class BAF_ied_v3 {
		class ied4 {
			text = "Craft a large IED";
			script = "execVM 'custom\IEDs\large_IED.sqf';";
		};
    };
}; 

Done

Link to comment
Share on other sites

  • 10 months later...

got it running nice script though slight error in large_IED.sqf though (couldnt craft a large ide) - changed to

 

_ied = {_x == "BAF_ied_v3"} count magazines player;

 

 

and

 

        player addMagazine "BAF_ied_v4";

Link to comment
Share on other sites

  • 1 year later...

Please sign in to comment

You will be able to leave a comment after signing in



Sign In Now
  • Advertisement
  • Discord

×
×
  • Create New...