skypickle Posted August 20, 2022 Posted August 20, 2022 I want to simulate a conversation. There are three sounds that are played to the whole coalition. I have a trigger so that when a unit enters the trigger zone, there is an action with three 'sound to all' actions , each with a different sound. However, only the last sound is played. How can I do this? I want to keep the sounds separate so that eventually I can select different sounds based on the circumstances but I cannot get even this simple sequence to fire. 4930K @ 4.5, 32g ram, TitanPascal
markom Posted August 20, 2022 Posted August 20, 2022 I have not looked at the sound to the coalition, but "radio transmission" feature, which also plays sounds, has a delay option. Using that feature, combined with multiple transmissions, and some fairly trivial timing may do the thing you want.
skypickle Posted August 21, 2022 Author Posted August 21, 2022 I dont want a radio transmission - rather a sound played to all units. Radio transmissions require a frequency and sometimes players dont tune their radios 4930K @ 4.5, 32g ram, TitanPascal
Rudel_chw Posted August 21, 2022 Posted August 21, 2022 2 hours ago, skypickle said: . I have a trigger so that when a unit enters the trigger zone, there is an action with three 'sound to all' actions , each with a different sound. However, only the last sound is played. How can I do this? that behaviour is by design … all the actions on a single trigger are executed so fast that the sound 1 is overlapped by the second and that one is overlapped by the third. what you have to do is separate the statement onto three triggers, with only one sound on each. your current trigger plays only the first sound and sets a flag, say "sound 1 playing", on the second trigger have the condition "time since flag, sound 1 playing, set as time the duration of sound 1 plus the time lapse you want between sounds. This second trigger plays the 2nd sound and sets a second flag "sound 2 playing". the third trigger would play the 3rd sound and have a condition "time since flag, sound 2 playing, and an appropiate time. 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
skypickle Posted August 21, 2022 Author Posted August 21, 2022 Aha. Thank you. Flags are your friend 1 4930K @ 4.5, 32g ram, TitanPascal
Recommended Posts