View Single Post
  #11  
Old 05-30-2017, 04:54 AM
lolfake is offline lolfake
lolfake's Avatar
Delta Team Maps

Join Date: Sep 2006
Location: LOL Not Found
Posts: 277

Hey

I know the download link is a virus just kidding its an empty file i created it through Note Pad and its a 16-bit MS-DOS file.

And Stomp em you mean the chain is similar or it makes no difference from if past (5) look below:

------------------------------------------
The wave will play if past 5 seconds into game.

// good luck in there Bravo
if past(5) and never() then
wave("alph507.wav")
endif
------------------------------------------
This is an example of Group #5 in area #5 triggering a .wav file.

// hey! I don't do warning shots.
if grouparea(5,5) and never() then
wave("macr159.wav")
endif
------------------------------------------
This is an example of Group #5 being dead triggering a .wav file.

// cheer! (alpha guards down)
if groupdead(5) and never() then
wave("dfm141.wav")
endif
------------------------------------------
This is an example of a Player in area #5 triggering a .wav file.

// base is alert
if ssnarea(10000,5) and never() then
wave("comd108.wav")
endif
---------------------------------------------
The chain wave command is placed after a wave that you want to tie another
wave file to. The chain command will play the wave file (within the seconds
that you insert) after the previous wave file is played. You can even tie
chain to chain and it sounds like a conversation.


// they got to be kidding me
if chain(6) and never() then
wave("macr155.wav")
endif
-------------------------------------------------
This is an example of SSN #101 in an area #6 triggering a .wav file.

// Bravo, don't let that helo get away
if ssnarea(101,6) and never() then
wave("alph531.wav")
endif
----------------------------------------------------
This is an example of SSN #5 being dead triggering a .wav file.

// hey! i don't do warning shots.
if ssndead(5) and never() then
wave("macr159.wav")
endif
Reply With Quote