USMC Sniper 0 Posted March 30, 2004 I made some ingame sounds (like ambient stuff), and I'm wondering if theres a way of making there be a period of time in between when the sound is played, or randomizing it but having a minumum of 2 minutes in between. Share this post Link to post Share on other sites
BraTTy 0 Posted April 2, 2004 I am no sound expert,sounds like you need a script Share this post Link to post Share on other sites
Trenchfeet 0 Posted April 2, 2004 try this  #start _nrand = random(10) ?_nrand >= 5: goto "sound1" ?_nrand >= -10: goto "sound2" #sound1 playsound "??" ~120 GOTO "start" #sound2 playsound "??" ~120 GOTO "start" or #start _nrand = random(10) ?_nrand >= 5: goto "sound1" ?_nrand >= -10: goto "sound2" #sound1 playsound "??" ~120 GOTO "sound2" #sound2 playsound "??" ~120 GOTO "start" Dont forget that the ~120 should be 120 seconds after the time of you music? track. eg if your track was 60 seconds long it would then be this #sound1 playsound "??" ~180 GOTO "sound2" Share this post Link to post Share on other sites