Jump to content
Sign in to follow this  
alexboy

help with finding FLARE : making my own coding...

Recommended Posts

ok so im trying to find the Ammo.cfg or magazine .cfg idk, what i need to find is the where the 120Rnd_CMFlare_Chaff_Magazine is declared... i want to make my own flare_magazine.. and i havent had any success in finding where it is.

any help is appreciated

Share this post


Link to post
Share on other sites

Here's a couple of suggestions for you.

Download the All in one Config v1.62 - ArmA2+OA+BAF+PMC+ACR

Use dumpConfig by Worldeater, or

use Fast dump of config by Denisko-Redisko

Here's the section I believe you're looking for:

        Class 60Rnd_CMFlareMagazine : CA_Magazine
               {
               count=60;
               ammo="CMflareAmmo";
               initSpeed=30;
               };

       Class 120Rnd_CMFlareMagazine : 60Rnd_CMFlareMagazine
               {
               count=120;
               };

       Class 240Rnd_CMFlareMagazine : 60Rnd_CMFlareMagazine
               {
               count=240;
               };

       Class 60Rnd_CMFlare_Chaff_Magazine : 60Rnd_CMFlareMagazine
               {
               ammo="CMflare_Chaff_Ammo";
               };

       [color="#FF0000"]Class 120Rnd_CMFlare_Chaff_Magazine : 60Rnd_CMFlare_Chaff_Magazine
               {
               count=120;
               };[/color]

       Class 240Rnd_CMFlare_Chaff_Magazine : 60Rnd_CMFlare_Chaff_Magazine
               {
               count=240;
               };

see how it inherits from the 60Rnd_CMFlare_Chaff_Magazine, which inherits from the 60Rnd_CMFlareMagazine...

Share this post


Link to post
Share on other sites

Ya that is what im looking for thank you!!, i also found last night lol

a configure the same as that but with the weights of the flares, etc so the flares drop more thanks bro

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  

×