How do i make it so that i have 1 sound play in the backround looping

How do i make it so that i have 1 sound play in the backround looping

Re: How do i make it so that i have 1 sound play in the backround looping Posted by m82sniper on Sun Aug 26th 2007 at 4:54am
m82sniper
30 posts
Posted 2007-08-26 4:54am
30 posts 3 snarkmarks Registered: Aug 25th 2007 Occupation: Part time firefighter Location: US
How do i make this so that i have 1 sound play in the backround looping and 3 other sounds playing 1 after the other and not all at once? Here is what i have so far:

"xen.sounds"
{
"dsp" "1"
"dsp_volume" "0.85"
"playlooping"
{
"volume" "0.65"
"pitch" "100"
"wave" "ambience/alienwind1.wav"
}
"playrandom"
{
"time" "1.0,1.5"
"volume" "6.0"
"pitch" "100"
"rndwave"
{
"wave" "boid/boid_idle1.wav"
"wave" "boid/boid_idle2.wav"
"wave" "boid/boid_idle3.wav"
}
}
}


So thats what i have. Any ideas?
Re: How do i make it so that i have 1 sound play in the backround looping Posted by reaper47 on Mon Aug 27th 2007 at 6:16pm
reaper47
2827 posts
Posted 2007-08-27 6:16pm
reaper47
member
2827 posts 1921 snarkmarks Registered: Feb 16th 2005 Location: Austria
"time" "1.0,1.5"

could be a bit short. It says the minimum time between 2 random sounds playing is 1 second. If the boid sounds play longer (say, 2 or 3 seconds) they would overlap. Try a longer minimum random time.

For example:

"time" "10.0,20.0"

Otherwise it looks fine. As long as there is no typo that is.

Does the soundscape work at all? If it does change the settings. If it doesn't play at all look for typos or start from scratch.

From what I see it should work fine. Remember the 3 sounds are randomized, thus not playing "in order".
Why snark works.
Re: How do i make it so that i have 1 sound play in the backround looping Posted by m82sniper on Mon Aug 27th 2007 at 8:10pm
m82sniper
30 posts
Posted 2007-08-27 8:10pm
30 posts 3 snarkmarks Registered: Aug 25th 2007 Occupation: Part time firefighter Location: US
Ok cool thanks.