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
#17106 
Or just ignore and release anyway. Stupid steps in my terracity map never could get that missing tri to show up. It's like qbsp thinks the face is invalid.

It could be the .map exporter. I never have trusted it in any single bsp style editor I've used. Hammer/Source Engine, Worldcraft, J.A.C.K, all of them I distrust for providing accuracy of each vertex. Just create some wierd angle geometry, export to .map. Import the map, and you may notice some brushes are invalid or missing. 
Pritchard 
I similar thing happened to me at one point in making my map. No holes, but after I compiled the BSP there was a nice fat hole where a rock should have been. I just adjusted one of its vertices in the editor and it went away next compile. 
TexMex 
So, I've spent a few hours in PhotoShop, customizing colored textures into pure black and white versions without greys, Sin City style. But when I try to import them in TexMex, the program sends a "file type not supported" message. I've tried with jpg and tga versions but it refuses them both. Ideas? 
 
generally i do a ctrl-c from photoshop and then ctrl-v into texmex, for each image. 
 
I use gimp and export as tga.

There are some wonky ass tools out there for quake asset editing, mostly because of the age of the tools and the formats. 
#17105 
so much errors in my qc files, but I remember so much "not a name" 
Metlslime 
"generally i do a ctrl-c from photoshop and then ctrl-v into texmex, for each image." Yeah, that works, but it's tedious to say the least! I have several dozens of textures to import and TexMex is supposed to support batch import. 
Spot The Nailgun 
So, recently I got a demo of my level (thanks ericw!) and in it the player missed a weapon that they pretty much need to have.
See it?

The problem is entirely my fault, as far as i'm concerned; it's just too damn hard to see the nailgun as you're moving through the area. Unless you spend enough time there to notice it, the approach and subsequent movement paths mean that you have a higher chance of finding it by accidentally picking it up than actually seeing it.

Eric suggested that I use a flickering light to draw more attention to the area, which I might try, but I thought I'd ask here to see if anyone else has some suggestions for me to try. 
Flickering Lights Are Tricky 
I tend to overlook them because they're much more often used as simple decorations rather than hints at goodies/secrets. You could try a light of a different color, maybe? Or if it's not a secret there are many solutions. You could for example point a spotlight at the nailgun, or place it on some sort of pedestal. 
 
It's already under a spotlight and on a "pedestal" of sorts, although I may give it a proper pedestal rather than a different style of flooring as it is right now.
I'm planning to increase the brightness of the spotlight to hopefully make the model stand out a bit more.

I feel like a strobe flicker would definitely catch people's attention, but I haven't had a chance to try it out yet and it might be too intense an effect. 
 
Or put a brighter texture behind it so it stands out more against the background. Almost black on almost black is evidently no good for visibility. 
#17119 
Create a huge fullbright red arrow pointing on this weapon. Add func_train on it, so it's going up and down. Additionally huge trigger covering half of your map, announcing every 2 sec, that there will be a very important weapon to pick up soon.

Utilizing this techniques, you posses all the knowledge needed for professional LD in 2017. 
Pritchard 
Tone down the blue lights - they cast a lot of light but the actual light source is dim. Are you using delay 0 on them?

Then, when the area gains contrast and shadows, put a torch next to the nailgun. Nothing extraordinary, just something to provide extra light and stand out from the blue. 
And For Heaven's Sake 
Sort out your Quake resolution, it looks like you resized your screenshot in MSPaint. 
 
How about a pulsing (rather than flickering) light, placed exactly where the weapon is -- so that that emanates a pulsing glow? Then you kill the light as the weapon is picked up (that's possible in standard Quake, right?).

Another solution (which I suspect you would not want) would be to just move the gun so that it lies unavoidably in the path of the player...

PS: The map looks beautiful, judging by this and other screenshots (in the Screenshots & Betas thread). 
#17123 
Lol, khreathor. So true.

I think it has made for some very dumb players also. 
 
A compromise

I tried a few suggestions, but I ended up just moving the gun so that it's in a slightly different area. Hopefully this works better for players, they'll probably at least see the health which should help draw them to the NG. Flashing lights seem too severe for this, and besides, they can't be toggled in vanilla quake as far as I know.

otp: I'm not really sure what happened to that screenshot. Ericw sent it to me, and the version he sent me is a much higher resolution. No idea how it got all mangled like that when I reuploaded, oh well. I tried your advice on relighting the area, but there just wasn't any way to get the NG to stand out against the rock of the background, and changing the brushes too much in this area is a really big pain since it was the first rockwork/trisoup I ever did and it's a mess. Ended up moving the gun, like I said. 
Custom Sound? 
Maybe I should make a recording of me chanting "Nail Gun... Nail Gun..." and load it as a custom sound in the map to play next to the pickup. Or I could teleport the player to the nailgun if they try and leave it behind. Maybe I'll write some custom QC to make the nailgun follow the player until they pick it up.

Maybe I should just let people fuck up \o/ 
 
Maybe put a spotlight texture under the gun? 
Killing Lights 
Is it possible to use trigger_once to kill a light entity?

I tried testing what I proposed in #17126 above and made a small test map with a nailgun, a light and a trigger_once. I gave the trigger_once a killtarget value "lightkill", and gave the light the targetname "lightkill".

When I tried to compile this map, I got a "Segmentation fault" error message. I thought this was unrelated to the entities in the map, but when I turned the trigger_once back into a world brush, the map compiled fine ... so it would seem that I did something wrong when trying to kill a light with a trigger_once.

Can someone explain what I did wrong? 
 
Like so?
I think that actually looks nice, and helps a little bit more too. Good idea :)

On a rather off-topic note, does anyone know a good tool to quickly convert from tga to jpg or png? It's annoying to have to open GIMP before I can upload a screenshot. 
IrfanView 
 
 
total_newbie: As far as I know you can't kill a light. I think light entities are removed from the map at compile time unless they're supposed to be interacted with in some way, perhaps if they have a style... Not sure. In any case, the only way I know to turn a light off is to target it, not killtarget it.

onetruepurple: IrfanView! I used to have it on my system, it went away with the Win10 upgrade as M$ borked my PC and I had to reinstall things. Works a charm, thanks! 
Thanks, Pritchard 
the only way I know to turn a light off is to target it

How does that work? I guess it's not just a matter of giving the light a targetname and having something else target it, right?

I just tried that with a trigger_once and got the same result as before (i.e. compiler gave me a segmentation fault error message -- which I'm still not sure is not the result of something else, but so far it seems to correlate with my trying to get entities to do things they can't do). 
 
https://dl.dropboxusercontent.com/s/df4rh3g7v439jtl/lighttest.map

Not sure what your map looks like, I just whipped this up though. Feel free to take a look or compile it yourself (make sure to replace the wad with a path to the original quake wad on your own computer)

Just a simple button that targets a single light. The only keys i've changed are the target/targetname. 
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.