View Single Post
  #6  
Old 07-02-2014, 03:14 PM
MAJWIZ is offline MAJWIZ
MAJWIZ's Avatar
Registered User

Join Date: Jan 2012
Location: FORT WALTON BEACH FL
Posts: 292

Download any of my maps and open wac file then read how the wave's are layed out.
SAMPLE WAVE SCRIPTS (HOW WAVE IS SET UP)
if past(10) and never then--- AFTER 10 SECONDS START THIS WAVE SOUND
wave("comd553.wav",100)----play WAVE ,100=VOLUME (command MUST be between " ")
endif ---END THIS WAVE

if ssndead(15) and never then==IF SSN DEAD THEN-PRINT TEXT ON SCREEN
text("LOOKS LIKE WE GOT OUT JUST IN TIME") TEXT (don't forget " " or the text won't print on screen)
endif---END TEXT

if ssnarea(10000,4) and never then--IF PLAYER (10000) IS IN AREA 4 THEN PLAY WAVE
wave("CHOP162.wav",100)
endif
Reply With Quote