Need help with repeating sounds

Hi! So what I want to do is have a scene where the character is proposing a toast.
I want to use the glass_clink sound three times (like someone is tapping their glass with a utensil or something). After the first clink I want the background music to lower.

How would I go about doing that?
What I tried was:

sound glass_clink
volume music 0 6000
@pause for .5
sound glass_clink
@pause for .5
sound glass_clink

But this resulted in the glass clink only occurring once and then moving on to the …

Any suggestions? Thank you in advance!

You have to turn the sound off for the next sound to play

volume music 0 6000
sound glass_clink
@pause for .5
sound off
@pause for 0
sound glass_clink
@pause for .5
sound off
@pause for 0
sound glass_clink

Perfect! Many thanks!

This topic was automatically closed 30 days after the last reply. New replies are no longer allowed.