RagnarDa Posted February 3, 2013 Posted February 3, 2013 I know how to make a radio transmission, but is it possible to have subtitles with the sound like the in-game radio transmissions via the scripting engine? DCS AJS37 HACKERMAN There will always be bugs. If everything is a priority nothing is.
Puddlemonkey Posted February 3, 2013 Posted February 3, 2013 Yes. You can add a triggered action to "Perform Command", "Transmit Message". You can type a subtitle. Or you can do it with LUA: local tabCommand = { id = "TransmitMessage", params = { subtitle = "Some text", duration = 3, loop = false, file = "sound.wav", } } local objGroup = Group.getByName("group 1"):getController() Controller.setCommand(objGroup, tabCommand) If using LUA, you need to inject the wav file into the .miz. 2
RagnarDa Posted February 3, 2013 Author Posted February 3, 2013 Thanks! Will try it out. DCS AJS37 HACKERMAN There will always be bugs. If everything is a priority nothing is.
Recommended Posts