News | Forum | People | FAQ | Links | Search | Register | Log in
Mapping Help
This is the place to ask about mapping problems, techniques, and bug fixing, and pretty much anything else you want to do in the level editor.

For questions about coding, check out the Coding Help thread: https://www.celephais.net/board/view_thread.php?id=60097
First | Previous | Next | Last
 
nothing to add but FYI the lava ambient sound is not implemented. There is code in the compilers and in the engine too, i think, but it doesn't do anything. :( 
 
To be honest this is something I am surprised has not been mentioned before and probably why czg made his slime/water so dark coloured so it looks more solid and dangerous. The side effect of water alpha in engines is that dangerous liquids can look like coloured water. It is a shame the water alpha is not specific to liquid types and not across a whole level.

I am also surprised how the stupid quake engine plays a water sound for slime when it should be a burning acid sound. Luckily I got some feedback from someone who does not play quake and it is a valid point. 
Just A Thought... 
I made a static model that you could use as a placeholder
to give another character to the slime.
ripple

It's a small model on 2 x 4 64 units, and can be used with every texture to create a ripple shape.
download 
Sock 
It's unfortunate, sure. But is it really that much of a problem if a single player gets surprised by it? You could file it as a learning experience. 
Sock 
Bright green goo on the surrounding textures maybe? 
 
@Madfox, for some reason that ripple model looks strangely erotic, but thanks for the idea.
@negke, well I have added an acid burn sound, painted the walls green to match the slime, mentioned it in the books nearby, changed the water alpha to be thicker. The next step is putting warning signs up, I suppose I could create a medieval danger sign! :) 
 
Have an Ogre visibly pee in it, no sane person would dive into after that. 
 
If only Romeo had made that pee animation ... 
Slime 
One feature in the RMQ engine is separate values for:

wateralpha
slimealpha
lavaalpha
telealpha

Would be nice to see that ported into other engines. 
Func_rotate_train Custom Sound 
Using Quoth. I can add custom sounds to path_rotate. Can func_rotate_train have a custom sound? My FGD shows sounds 0(none) or sounds 1 (ratchet) 
Custom Func_rotate_train Sounds 
Yes, you can override either of the sounds by setting the noise and noise1 fields on the entity directly.

Also, re: the slime question, you can add an func_illusionary brush with a slime texture if you want opaque slime. You can add it a little bit below the waterline and get a layered effect, and you could even apply alpha to the entity if you just want lower transparency. 
Thanks Preach 
noise1 is the train run sound. Works well now just 1 more question. path_rotate plays the sound. As the train hits a path_rotate the sound is restarted (if not looped). How do I make some path_rotates not effect the sound? 
Sounding Out 
The path_corner will always trigger some kind of sound when you hit it, there's no way to keep a looping sound going smoothly without it restarting. The path_corner does have the ability to replace the train's sounds, so if you've got a non-looping sound, the trick to preventing it re-sounding at the path_corner is to give that path_corner the noise "misc/null.wav". You then have to make sure you restore the sound at the next path_corner you want to hear it from - the sound is overwritten from that stop onwards! 
Sorry For My Ogrografic 
 
Once again without the text please. That is hilarious! 
Peeeeee 
 
 
I'm ashamed. 
Weeee 
Good for an intermission camera shot:) Ogres pissing off the castle battlements 
Hahahaaaa!!!! 
 
XD 
Also good for letting the ogre pee on the player if he gets killed. 
Sock 
I don't think anyone mentioned this already, but you can disable the water and slime sound effects using compiler flags. The sounds are added at compile time and whether you can hear them or not is dependent on whether they are in a visible leaf or not. This makes them absolutely suck for open maps, where it is usually much better to just add your own sounds.

add these to your vis command line options:
-noambientsky
-noambientwater
-noambientslime
-noambientlava (doesn't have a sound anyway...)
-noambient (disable them all)

http://user.tninet.se/~xir870k/readmevis.txt 
Preach 
I have this map that uses point-sized triggers for monster teleports and centerprints as usual. For some reason, however, they are all messed up in Quoth, spawning with an actual bbox instead of a point. This might be related to bbox-borrow hacks I used, but it shouldn't affect the point triggers (and doesn't in other mods). Any idea/care to take a look? 
Features 
Quoth has built in support for point sized triggers:
http://www.quaddicted.com/webarchive/kell.quaddicted.com/quoth/quoth_tutorial.html#triggers

Essentially you position the entity where you want the lower corner of your trigger, and set mangle to the desired dimension of trigger. If you don't specify dimensions, the trigger defaults to 64x64x64, which is what you're seeing, I guess.

The best workaround would be to set mangle to something very small, like '0.1 0.1 0.1'. This should stop the point triggers overspilling. 
Addendum 
In retrospect this default size is badly done. Any default size could potentially break a map, but making it very small would probably avoid problems in 90% of cases. One more for the 2.2 patch... 
Yeah That Sounds Like It 
Funny I never noticed it before - and I always use point triggers for monsters. Probably because Quoth usually breaks so many things in my maps that I don't even test it carefully anymore. I'll try the low mangles. Thanks.
Disclaimer: this wouldn't be necessary if it wasn't for some specialists who always seem to run maps in the wrong mods without even realizing... :/ 
First | Previous | Next | Last
You must be logged in to post in this thread.
Website copyright © 2002-2024 John Fitzgibbons. All posts are copyright their respective authors.