RHS Feedback - AFRF
View Issue Details
0005204AFRF[All Projects] Generalpublic2019-08-13 16:402019-08-14 11:34
Takigyula 
da12thMonkey 
nonefeaturealways
closedno change required 
 
 
No
Stable
1.94
No
0005204: CM burst
Hi!
With the update CM burst changed Mig-29.
What to write instead of?

It no longer works: (mig29) addmagazine "120Rnd_CMFlare_Chaff_Magazine";

Thanks!
No tags attached.
Issue History
2019-08-13 16:40TakigyulaNew Issue
2019-08-13 17:34da12thMonkeyNote Added: 0009740
2019-08-13 19:21da12thMonkeyNote Edited: 0009740bug_revision_view_page.php?bugnote_id=9740#r6360
2019-08-14 09:27TakigyulaNote Added: 0009745
2019-08-14 11:34da12thMonkeyStatusnew => closed
2019-08-14 11:34da12thMonkeyAssigned To => da12thMonkey
2019-08-14 11:34da12thMonkeyResolutionopen => no change required

Notes
(0009740)
da12thMonkey   
2019-08-13 17:34   
(edited on: 2019-08-13 19:21)
All aircraft countermeasures are now handled by dynamic loadouts.
You can select the number of flares and chaff from the loadouts menu in Eden (limited to the realistic number of flares/chaff the aircraft can carry)

Scripting-wise they can be changed with
`_vehicle setPylonLoadOut ["cmDispenser","magazineName",true]`
That will add both the appropriate magazine and launcher to the aircraft
The last "true" parameter will allow you to force any magazine on to the aircraft pylon, such as the higher capacity helicoper flare magazines such as
`_vehicle setPylonLoadOut ["cmDispenser","rhs_ASO2_CMFlare_Magazine_x4",true]` for a 128 round flare magazine

Adding non-dynamic loadouts countermeasure magazines like "120Rnd_CMFlare_Chaff_Magazine"; will require you to to use the old addMagazine command but also add the old flare/chaff launcher weapon to the aircraft
`_vehicle addWeapon "rhs_weap_CMFlareLauncher";`

(0009745)
Takigyula   
2019-08-14 09:27   
All right, thank you very much!