Missing sound error

Discussion for Level editing, modeling, programming, or any of the other technical aspects of Quake
Post Reply
RojaN Returned
Posts: 41
Joined: Wed May 25, 2016 9:36 am

Missing sound error

Post by RojaN Returned »

Hello, all. Been a dozen years since my last post here, had to make a new account. Still the same RojaN as always.

I've been making my first map after all this time, and there are a couple of things bugging me - I'll stick to one issue per post.

I created a Quake-style wind tunnel and initially I used the Id sounds for development, now I've got my own wind sounds in there to avoid Id's copyright, but Q3 reports WARNING: failed to load sound sounds/misc/windfly.wav!

Well that's the old sound that I removed already. I've done a test where I deleted all the brushes and entities in the area, to no avail. I've opened the .map and the .bsp in a text editor and run a search; not found. How does its memory of this file persist? It's a minor thing, really more of an embarrassment for people looking at the console "Ahh, I see what you did there," but I want it gone. Searched for noise, .wav, misc, speaker, windily, all return no results or results that are not relevant. If it were attached to another brush on the other side of the map the text search should have shown it!

Is there some kind of caching going on? AAARRRRGGHHHHH!

Thanks for listening.
sst13
Posts: 298
Joined: Mon Feb 15, 2010 11:05 pm

Re: Missing sound error

Post by sst13 »

The correct path is: "sound/misc/windfly.wav" not "sounds/misc/windfly.wav". :D


The windfly sound is hard coded in the target_push entity. With "spawnflags 1" (Bouncepad) you can only turn the windfly sound into a bouncepad one.
Since this old Q1 entity was never used in the original Q3 stock maps, the windfly sound was also never released in any of the Q3 Paks.

If you want to play your own sound, just attach a target_speaker to your trigger_multiple, parallel with your target_push. (speaker & target_push with same targetname)
In this case Q3 will play both sounds. Your custom sound via target_speaker and windfly via target_push.

I strongly recomment to use this sound as windfly: http://sst13.net/maps/dev/windfly.wav
It's a modified version of the original Q1 windfly sound and not very loud. So your custom sound will be heared.
I think nobody will rip your head off for using this because of copyrights. ;) It's for Quake and the community! :D


If you still have some trouble with your wind tunnel, I've got some experience with the whole stuff and can make you a small sample map...
[url=https://sst13.de]Q3A Maps - by sst13[/url]
[url=https://steamcommunity.com/id/_sst13_/myworkshopfiles]Quake Live Workshop[/url]
User avatar
Theftbot
Posts: 483
Joined: Thu Oct 08, 2009 4:03 am

Re: Missing sound error

Post by Theftbot »

RojaN Returned
Posts: 41
Joined: Wed May 25, 2016 9:36 am

Re: Missing sound error

Post by RojaN Returned »

Thank you both.

After reading your post Theftbot, I went back to my tutorial test map and created a simple jumped. Sure enough, that was enough to generate the error in Q3. And here I thought I had an orphaned reference, and it was Id all along! ROTFL!

Thanks for the link, sst13. Looks very straightforward.

As to the sound, I had a project long ago that involved recording wind up on a hilltop, so some distortion of that got me where I wanted to be. Given the choice, I prefer an in-house solution.
RojaN Returned
Posts: 41
Joined: Wed May 25, 2016 9:36 am

Re: Missing sound error

Post by RojaN Returned »

Strange. I tried the method in sst13's linked article. It worked insomuch that the default jumppad sound is no longer present, but instead the sound of hits deflected is present, like a bullet hitting armor. Not sure if I'm doing something wrong or that's as good as it gets.

Have you used this method without any sound but the one of your choosing?
sst13
Posts: 298
Joined: Mon Feb 15, 2010 11:05 pm

Re: Missing sound error

Post by sst13 »

RojaN Returned wrote:... but instead the sound of hits deflected is present ...
That's the way Q3 tells you there is a missing sound. ;)

It's not mentioned in the tutorial, but you need to place the windfly.wav in your pk3.
Seens like http://ws.q3df.org/ is down atm, but there was also a sample map download of the sound_jumppad tutorial, including this windfly.wav
I gave this wav to Bliccer who made this tutorial a few years ago... :D
[url=https://sst13.de]Q3A Maps - by sst13[/url]
[url=https://steamcommunity.com/id/_sst13_/myworkshopfiles]Quake Live Workshop[/url]
dONKEY
Posts: 566
Joined: Mon Oct 15, 2001 7:00 am

Re: Missing sound error

Post by dONKEY »

Just use a target_position, not a target_push.
the target_push ent is purely historical, and wasn't used in Q3.
sst13
Posts: 298
Joined: Mon Feb 15, 2010 11:05 pm

Re: Missing sound error

Post by sst13 »

dONKEY wrote:Just use a target_position, not a target_push.
the target_push ent is purely historical, and wasn't used in Q3.
You can't use custom sounds with trigger_push -> target_position.
But with trigger_multiple -> target_push -> target_position you can.
[url=https://sst13.de]Q3A Maps - by sst13[/url]
[url=https://steamcommunity.com/id/_sst13_/myworkshopfiles]Quake Live Workshop[/url]
RojaN Returned
Posts: 41
Joined: Wed May 25, 2016 9:36 am

Re: Missing sound error

Post by RojaN Returned »

sst13 wrote:
dONKEY wrote:Just use a target_position, not a target_push.
the target_push ent is purely historical, and wasn't used in Q3.
You can't use custom sounds with trigger_push -> target_position.
But with trigger_multiple -> target_push -> target_position you can.
This. Working like a charm now. Thanks to all.
Post Reply