Too Dark
#6329 posted by Mikko on 2007/09/04 22:35:22
Another n00b problem. I made a bridge that's supposed to come out of its "locker" once you push a button. However, the bridge is all dark once it gets out. The same with door frames (the inner parts).
Before:
http://i7.photobucket.com/albums/y259/msandt/dark.jpg
After:
http://i7.photobucket.com/albums/y259/msandt/dark2.jpg
#6330 posted by czg on 2007/09/04 22:44:51
Move the bridge into its open position, reverse the move angle, and check the "Start Open" spawnflag.
Dark insides on doors can't be fixed in the same way because then the door fronts get dark, and that's even worse. Can't think of a way to fix that unless you've got a compiler that has entity minlight. (I don't know of any compiler that has that.)
#6331 posted by inertia on 2007/09/04 22:57:49
Dark insides on doors can't be fixed in the same way because then the door fronts get dark, and that's even worse.
They CAN be, if you're willing to fully light the recess in which the doors reside when they are open.
Button
#6332 posted by MSD on 2007/09/05 00:49:50
I'm using Worldcraft 3.33 for Quake 1. I want to make a button trigger multiple doors which open at different heights. How do I do this?
#6333 posted by MSD on 2007/09/05 01:37:47
Hmm, I have fixed it by making two buttons that overlap
MSD:
#6334 posted by metlslime on 2007/09/05 01:50:00
two buttons is not necessary.
You can give the button a "target" and both doors the same "targetname" and it will work.
#6335 posted by anonymous user on 2007/09/05 02:10:19
OH I see, that's obvious. Thanks
Can I put a button on a door? I wanted to have a block rise out of the ground after pressing a button and there be another button on the block.
MSD:
#6336 posted by metlslime on 2007/09/05 03:16:40
I wanted to have a block rise out of the ground after pressing a button and there be another button on the block.
Unfortunately this is not possible (at least with standard quake entities.) You can probably fake it, though, as follows: (Note that this entire thing will only work once; once you push the button and it dissapears, it can't come back for another push.)
First, make a func_door that looks like a block and also includes a "pushed-in-button" as part of the block geometry. Second, make another func_door that looks like an unpushed button. These two doors will rises up exactly at the same time and travel the same distance (this requires careful use of the "lip" field on both doors.) Third, create a trigger_multiple which covers the space where the button will be after it rises. This trigger will point to a "logic gate" which will then trigger two things -- 1. it will target whatever you want, and 2. it will "killtarget" the func_door that looks like a button, making it disappear. When it disappears, it will reveal the "pushed-in-button" that is actually part of the block, making it appear that the button actually moved.
Finally, becuase you want to killtarget the fake button but not the block, they need seperate targetnames. Becuase of this, you will also need a trigger_relay so that one event can make both func_doors rise at the same time.
The logic gate will ensure that when the block hasn't risen, the trigger_multiple does nothing and players won't realise it's there. (A logic gate, in case you didn't know, is a spike shooter pointed at a shootable button, with a door in between. It will only pass on the signal if the door is open.)
So here's a list of entities you need:
1. Input: this is whatever makes the block rise.
"target" "block"
2. Block: this is the func_door block with the pressed-in-button added.
"targetname" "block"
3. Relay: this is the trigger_relay.
"targetname" "block"
"target" "fakebutton"
4. Fake button: this is the func_door which looks like a button.
"targetname" "fakebutton"
5. Trigger: this is the trigger_multiple that users will touch when they are attempting to push the fake button.
"target" "logic"
6. Logic gate shooter: this is a spike shooter that attempts to shoot the logic gate button.
"targetname" "logic"
7. Logic gate door: This is a func_door that is closed whenever the block hasn't risen, and open whenever the block HAS risen.
"targetname" "block"
8. Logic gate button: This is the func_button that the shooter is aiming at. (Hmm, does anyone know if the same entity can both target one thing and kill another? If not, we need another relay to kill the fakebutton.)
"health" "1"
"killtarget" "fakebutton"
"target" "whatever"
9. Output: This is whatever the risen button is intended to trigger.
"targetname" "whatever"
Re: 8...
#6337 posted by distrans on 2007/09/05 03:47:12
... AFAIK target OR kill, not target AND kill. So, the extra relay is required.
Thanks Than
But I ended up rebuilding the test map, and all seems fine now. Have no idea what was causing that sort of thing -- but if I have any more probs, I'll look into that link.
Re: Button
#6339 posted by MSD on 2007/09/05 17:25:44
Thanks for the help. I wish I understood.
MSD:
#6340 posted by metlslime on 2007/09/05 20:32:24
if it seems too complicated, you should probably go with something simpler for now. For example, have some bars block the button or something.
What Is That Blocks The Player On Corners Sometimes?
#6341 posted by Spirit on 2007/09/07 17:23:38
like here:
http://shub-hub.com/files/images/Screenshot-2.png
It might be QuArK floating point gayness but I know I found such edges on many maps.
Nevermind
#6342 posted by Spirit on 2007/09/07 17:25:34
neg!ke just answered me:
qbsp bug, move the vertices or clip.
:)
Or Merge The Brushes
#6343 posted by Lunaran on 2007/09/07 18:09:08
it's clip hull expansion logic. angled faces are expanded at an angle, and straight faces straight, so brushes that line up visually will end in different places after being expanded differing amounts on differing axes.
You Can
#6344 posted by aguirRe on 2007/09/07 19:42:54
visually inspect the player clipping hull by using the -hull 1 qbsp option. The map will probably look a bit different ...
Thanks
#6345 posted by Spirit on 2007/09/07 20:13:33
I just made the /^\ part 1 unit smaller on each side. Looks the same and got rid of the problem. Now that I think about it I simply could have made the one part a func_wall I guess.
Hmm..
#6346 posted by metlslime on 2007/09/07 20:36:51
I thought (almost) all brush expansion problems were fixed in the most recent aguirre/tyrann tools...
Spirit
#6347 posted by JPL on 2007/09/07 20:58:13
That fucked THF in some area, and I had to clip these corners... and it seems expansion problem are not completely solved...
Clipping
#6348 posted by Mikko on 2007/09/08 18:22:12
I used the clipping tool after doing some vertex editing and now I'm getting all kinds of errors with QBSP.exe whenever I try to compile.
So - what's wrong and is there any safer way to build a structure like this?:
http://i7.photobucket.com/albums/y259/msandt/vittua.jpg
Well
#6349 posted by ijed on 2007/09/08 19:00:01
Clipping can cause alot of problems under the right circumstances - minor foibles of the various software that can mangle a map.
An important one in WC1.6a is that clipping across more than one brush in a window where those brushes are not adjacent causes it to crash - but not if you clip from a window where they're touching / stacked.
From the screenshot I'd say you need to rebuild the corner, but sticking to the grid; when you make the angle lock it to the grid as well - at 45 degrees. So all the brushes will have compass rose angles.
It an enclosed brush (not a wall against the void, ie. no leaks) so what errors is bsp giving - is it removing faces on any of the brushes?
Anyhow; the basic answer is rebuild it, hanging onto the grid for dear life - when cutting, scaling or whichever manipulation you make.
#6350 posted by ijed on 2007/09/08 19:11:23
A clarification - you don't need compass rose angles, just to snap to the grid size of your choosing. 32x2 or 16x2 in that case I reckon.
Agh!
#6351 posted by Mikko on 2007/09/08 19:38:08
Don't know what the fak is going on. I removed the structures (see the screenshot) and it still gives me shit. I removed some other crap I had recently built and still the program acts like a teenager. First it gives the usual "This program has encountered an error and will close" (QBSP.exe) Windows error message and then the compiling stops and tells me that a BSP file was not built.
Try
#6352 posted by ijed on 2007/09/08 22:07:26
AguirRe's tooltips - just about every existing bsp error is listed in there.
http://user.tninet.se/~xir870k/
Mikko
#6353 posted by aguirRe on 2007/09/08 22:08:43
If you're using the default WorldCraft qbsp, then try one of my compilers and see if it helps. If you're already using one of them, I'd like to see that map file.
|