Jump to content

Recommended Posts

Posted

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.

Posted

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.

  • Like 2
  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...