MKay Posted December 20, 2016 Posted December 20, 2016 Hi guys, is there a way to stop a radio transmission via script? I start a transmission as follows: trigger.action.radioTransmission(_sound, _grp:getUnit(1):getPoint(), 0, false, 200000, 1000) So it is not looping. The sound actually just gets played once, but when I sit in my huey to track that transmission, the needle for intesitiy just stays up a full deflection. So even though I dont hear anything anymore, I can still track that frequency. I want to clear that frequency and reuse it at a later time, but I cant see to stop it transmitting. Thanks
Zubetto Posted December 20, 2016 Posted December 20, 2016 try that: trigger.action.radioTransmission(_sound, _grp:getUnit(1):getPoint(), 0, false, 200000, 1000, "rtName") trigger.action.stopRadioTransmission("rtName") It works with DCS 2.0
MKay Posted December 21, 2016 Author Posted December 21, 2016 try that: trigger.action.radioTransmission(_sound, _grp:getUnit(1):getPoint(), 0, false, 200000, 1000, "rtName") trigger.action.stopRadioTransmission("rtName") It works with DCS 2.0 Thanks, tried it and it works like a charm.
Recommended Posts