View Single Post
Old 01-16-2004   #3 (permalink)
Thorn
Did you do the math?
 
Thorn's Avatar
 
Join Date: Apr 2002
Location: Villa Straylight
Posts: 10,098
Sure. The default script does it with different sounds. Those sounds change in pitch. If you look in the default script, you'll see a series of if/then statements:

Code:
If BestSNR >= 60 Then
PlaySound "ns-signal-6.WAV"
ElseIf BestSNR >= 50 Then
PlaySound "ns-signal-5.WAV"
ElseIf BestSNR >= 40 Then
PlaySound "ns-signal-4.WAV"
ElseIf BestSNR >= 30 Then
PlaySound "ns-signal-3.WAV"
ElseIf BestSNR >= 20 Then
PlaySound "ns-signal-2.WAV"
ElseIf BestSNR >= 10 Then
PlaySound "ns-signal-1.WAV"
Else
PlaySound "ns-signal-0.WAV"
Do do what you want you'd have to:
1) Change all the sounds to the same file.
2) Insert an increasing time delay of some type at each if/then.

An alternative is to just use the default script. Just replace the sound files with a new ones. Each would be a beep followed increasing amounts of silence after the beep.

It just depends on what's easier for you: Programming or recording sounds. Being a true geek, I'd do the programming.



__________________
Thorn
"I'm The Doctor. I'm a Time Lord. I am from the planet Gallifrey in the constellation Kasterborous. I'm 903 years old and I am the man who is going to save your lives and all 6 billion people on the planet below... You got a problem with that?"

Last edited by Thorn : 01-16-2004 at 10:35 AM.
Thorn is offline   Reply With Quote