Search the Community
Showing results for tags 'cfgradio cfgsounds editing'.
Found 1 result
-
Need some assistance regarding CFGSounds & CFGRadio...
Oscah posted a topic in ARMA 3 - MISSION EDITING & SCRIPTING
Hello all, I'm having a bit of an issue and a fair few scripting woes at the moment and to be honest I have no idea what I'm doing wrong. I'm trying to make a mission where the players pick up an items, it disappears and then CFGradio kicks in. (The picking up is fine, I've sorted that.) The problem comes when I tell this trigger to activate my script, which has the following lines in; Iglov1 sideRadio "mes1"; Iowa1 sideRadio "mes2"; (Both units are named as such in game.) This fires up my script which has the Radio play sound for each of the dialog. The problem comes when sometimes one sound plays and both radio messages activate at the same time, I've tried using (SLEEP 12;) to no effect, it throws up errors everytime I try, what I NEED it to do is play one sound for one radio message and then another sound for another radio message a couple of seconds after. (TLDR, the sounds do play occasionally, the radios actually come on screen. Just both at the same time and sometimes it's only one sound rather than two.) Here is my CFGradio file; class CfgRadio { sounds[] = {mes1,mes2}; class mes1 { name = "mes1"; sound[] = {"SS\mes1.ogg", db+0, 1.0}; title = "What the **** is going on! Iowa?, Iowa we require the choppers here, choppers here now please... I can see them! We've got 20 boys down here, tell them to get over here."; }; class mes2 { name = "mes2"; sound[] = {"SS\mes2.ogg", db+0, 1.0}; title = "They can hear you Igla... Go-on tell them what you think of them, it'll change squat. We cannot move these for your boys. I'll see where column is. Stand-by."; }; }; Second Query - Is it possible to use both CFGSound and CFGradio? I'm looking at putting a scream a few seconds after the players have picked up the items and both radio messages have played, should I use CFGradio for this? Or should I use sound? Please help me oh merciful community, I'm tearing my hair out trying to figure this one out.