Rudel_chw Posted April 6, 2022 Posted April 6, 2022 Tried to use the MISSILE IN ZONE condition, to detect when a SA-11 battery had launched a missile, but found that this condition doesn't have this missile on its list: 9M38M1 Buk-M1 (SA-11 Gadfly) Hopefully this is easy to fix, in the meantime I will have to do this check with a script For work: iMac mid-2010 of 27" - Core i7 870 - 6 GB DDR3 1333 MHz - ATI HD5670 - SSD 256 GB - HDD 2 TB - macOS High Sierra For Gaming: 34" Monitor - Ryzen 3600 - 32 GB DDR4 2400 - nVidia RTX2080 - SSD 1.25 TB - HDD 10 TB - Win10 Pro - TM HOTAS Cougar Mobile: iPad Pro 12.9" of 256 GB
Solution Flappie Posted April 8, 2022 Solution Posted April 8, 2022 I found it in the list. It's called "SA-11 GADFLY" and it works. Buk missile detected.trk ---
Rudel_chw Posted April 8, 2022 Author Posted April 8, 2022 17 minutes ago, Flappie said: I found it in the list. It's called "SA-11 GADFLY" and it works. thanks a lot for solving this ... I was looking for the name that DCS shows on the Map View (F10), and the list is so long that I missed this ... I even asked a kind user ( @toutenglisse ) to create a small script to use as a workaround and was using it instead, this one: (the SA11shot flag becames true if the missile has been launched) SA11shot = {} function SA11shot:onEvent(event) if event.id == world.event.S_EVENT_SHOT and event.initiator and event.initiator:getTypeName() == "SA-11 Buk LN 9A310M1" then trigger.action.setUserFlag("SA11shot", true) end end world.addEventHandler(SA11shot) For work: iMac mid-2010 of 27" - Core i7 870 - 6 GB DDR3 1333 MHz - ATI HD5670 - SSD 256 GB - HDD 2 TB - macOS High Sierra For Gaming: 34" Monitor - Ryzen 3600 - 32 GB DDR4 2400 - nVidia RTX2080 - SSD 1.25 TB - HDD 10 TB - Win10 Pro - TM HOTAS Cougar Mobile: iPad Pro 12.9" of 256 GB
Recommended Posts