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
 
Create a new brush entity called "trigger_multiple". Set a new key: "noise" with a value of: "misc/null.wav" Set your message. Give the key sounds a value of 0. 
 
Sorry that last key is "sounds" with a value of "0". 
Noise 
Thanks much :)

noise = misc/null.wav

Works. Why?

I'm going to try it on a relay next to see if I can save a model. 
Why? For Rick 
from triggers.qc

void() multi_trigger =
{
...
if (self.noise)
sound (self, CHAN_VOICE, self.noise, 1, ATTN_NORM);
...
}


multi_trigger is a function that is called when the trigger is touched/killed/used. the code plays whatever the trigger's 'noise' key is. the 'sounds' key/value that editors expose just switch (in the entity definitions for the triggers themselves) between several hardcoded noise values (which are also precached by the trigger) 
Oh 
if you set a 'sounds', your 'noise' will get overwritten, so don't 
Has Anybody Else Ever Noticed 
that the wizmet1_2 texture has one rivet that's misaligned? 
Way To Ruin Negke's Xmas, Rick 
 
LOL 
I'm going to include that texture in more maps from now on ;D 
 
What? Do you think that every bolt and rivet in the real world was placed with a micrometer in hand? It's tiny flaws like that in a texture that just take the reality of things in life and place it in the game. If you want nice shiny textures go map for Halo or something...

There, now Negke's Christmas isn't ruined (quite so much). 
Source Code To Sin Editing Tools. 
Hello everyone.

A long time ago, ritual released the source to their editing tools. I was wondering if anybody knew what to get it as it is no longer available.

Thanks. 
I Bought Sin From Steam A While Ago 
Doesn't work in Windows7, I see they removed it from their catalog in the meantime.

The second one is okay-ish, but couldn't compete in the marketplace. 
Damaged 
Here's the catch to Sin editing ToolsI have form GoldenBoy.
It's all in there, scripting etc.
I tried it out but it's quite messy. 
Need Help! 
How do I change the radius of lights and how do I make doors in trenchbroom? 
Ok 
Lights - add a new key (a data entry in an entity, like a light) by hitting the + button when you have it selected and are viewing the 'entity' pane.

It'll create one without any useful data inside, you need to first name it 'light' and then give it a value. By default lights have a value of 400 if you set nothing.

There are various others keys to be added to a light that can give you more control, but you're better off reading more comprehensive documentation for that;

http://shoresofnis.wordpress.com/guides/lighting-basics/

To make a door select one or more brushes and right click on it. Select the option 'create brush entity' and then func_door.

These also have a bunch of keys to set for speed, distance and so on, this is a pretty good guide;

http://www.quakewiki.net/archives/worldcraft/entity/standard/standard.shtm

Good luck! 
Default Light Value Is 300!!!!!!! 
 
:L 
 
Thanks 
Thanks man, now how do I create a worldspawn entity in trenchbroom. If thats what its called 
TB Creates Worldspawn Automatically Once You Lay Down A Brush 
To edit worldspawn properties, select a world brush. 
Thanks 
Thanks. I think thats all I need to know, sorry for all the noob questions 
Change Waterlevels 
HI - Complete noob with mapping...I have Quark and Trenchbroom and some other editors installed, but am clueless on how to alter waterlevels. Probably because I dont understand concepts of the brush too much.

Lets say I want to change the waterlevel on E1M3 so thats its nearly topped off. I think that probably is sort of simple, but how? Next, the tunnel leading off has to now be immersed to a certain level, and also the plat area near the stairs has to be filled. How ? Any help appreciated. 
You Mean... 
have the water change level or move? I don't think this can be done in standard quake. There may be a mod for it but certainly not in standard mode. Maybe you could fake it by having the entire map submerge instead? 
Teknoskillz 
 
Yeah, water is just a brush. You can select it, then change the size in the editor, but I don't think you can change the size dynamically (while playing the map) in regular Quake.

I suppose you could you put a *water texture on a func_door, but then the player couldn't get inside. I think one of the expansion packs added a func_water that could move. 
I Think 
He means changing the water in literally e1m3...

Quake maps are compiled into a format (.bsp) that is not editable. So to change e1m3, you would need the original source .map to work from in an editor like trenchbroom, and then recompile it with your changes. 
1 post not shown on this page because it was spam
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.