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
Glass In Q3A 
I'm working on a Q3A map and I'm having trouble finding that cool glass texture. I'm using GTKRadiant so two questions:

1)Where can I find the glass texture?
2)How to use it, i.e., how to make glass? 
You Mean 
Q3 glass? That's basically an environment map - maybe something similar would be possible in Dark Places but I've no idea.

To make a transparent brush I'd use .alpha - but search in this thread from the beggining and you'll get a load of different methods on how to do it.

You won't be able to find the glass texture since the diffuse (as I remember) is a flat colour, and an envorment map alone is just a grey blob. 
This Is One I Used... 
...in one of my maps. You'll need to add it to mymap.shader in baseq3/scripts (and change the "pjw3dm5" to "mymap"

textures/pjw3dm5/lightglass
{
qer_editorimage textures/base_wall/chrome_metal.tga
surfaceparm nolightmap
surfaceparm trans
qer_trans 0.5
cull disable

{
map textures/base_wall/chrome_metal.tga
blendfunc add
rgbGen identity
tcGen environment
}
}


Just put it on either a patch mesh (for cool curvy glass), or on one face of a common/nodraw brush, and then add clipping as necessary. 
For Fuck's Sake 
Yes, that should be ".tga" on the end of those lines rather than ".tg..."

I like how the auto-magically shortened func_ version is longer than the original. That's pretty cool. 
 
That worked - thanks! I'll modify it a bit to make it look more transparent. 
Getting An Error On My Quake 1 Map 
I'm working on a map and its goin good but when a friend tries to test it out using DarkPlaces they get this error.

Mod_Q1BSP_RecursiveNodePortals: WARNING: new portal was clipped away Mod_Q1BSP_RecursiveNodePortals: WARNING: new portal was clipped away

The map is a "space map" as in if the player touches the far edges of the map in any direction they will be instantly killed with a hurt function.

Another issue I am have, you die instantly upon spawning in the level, I have checked to make sure the player starting point was not inside a hurt function, but I am still getting instantly killed when I load the map. The only way around being killed is to toggle the console within the split second the map loads and turn god mode on. 
 
Sounds like one of your hurt trigger brushes is misshapen and Quake is extending it's volume all over the map or something. I would suggest checking them all and make sure they are all truly convex and on the grid. 
Read This 
http://user.tninet.se/~xir870k/tooltips.txt

And be aware that you _might_ run into bugs that are Darkplaces-specific and are not affecting other engines. 
2nd Problem 
One thing you should check is whether your spawnpoint at the start of the is positioned at the origin of the map. If it is then what may have happened is you've accidentally created a point sized trigger_hurt. This is basically a brush entity which has lost its brush, so the engine creates it as a single point at the origin of the map.

One way to test this out is to load it in the new version of quoth:
http://www.celephais.net/board/view_thread.php?id=60173
Turn developer mode on and run the map. If this is the problem, then you should get a warning message in the console saying a point sized trigger was removed, and when you spawn you shouldn't be killed by it. 
 
Turns out something was wrong with one of the trigger_hurt functions. I have removed all 4 trigger_hurt funcs for now.

Thanks to everyone who helped :)

I'll probably be back shortly heh 
 
I'll probably be back shortly heh

Glad to hear it. I like space maps. 
Preach 
I get warnings in FitzQuake when loading my new map. Something about being "unable to find whatever/quake.wav"
Obviously its a Quoth2 map :P

Err... I was just wandering if you might know if its a Quoth progs thing or if its more likely to be something in my map, cause I cant see any reason for it...

Cheers! 
Anyone Know Where... 
...I can find a Quake Palette color index list? 
 
The Quake Palette 
Sound Error 
I'm guessing you put an info_screenshake somewhere in your map. This has two default sounds, misc/quake.wav and misc/quakeend.wav. These sounds come from the hipnotic mission pack, but neither of these sounds are supplied in the quoth download, which is an oversight. For now set both "noise" and "noise1" to "misc/null.wav". 
Willem, Kell And Preach 
Thanks for the info! You're very helpfull people!

Now I can have a red forcefield and no weird startup messages so thanks. 
Oops 
I *somehow* (read : through utter stupidity) managed to delete all trace of the file s_explod.spr from my quake directory, I've even looked inside pak0.pak and it aint there, its all very odd and now I cannot play my beloved Quake :( Could someone please e-mail me the file??? My email address is in my profile. 
Daz 
Mail sent. 
Thanks 
life-saver :) 
Help 
z-fighting, how can i get rid of it? 
I Think This Is What You Are Looking For 
http://user.tninet.se/~xir870k/tooltips.txt\

Texture flicker while playing, "zebra-effect"
This is normally caused by the engine trying to render several textures in the same plane,
typically at some distance away. This is probably caused by overlapping brushes or e.g. a door
that isn't sufficiently encapsulated. In GL-engines you can also try setting the cvar
"gl_ztrick 0".
 
HeadThump 
thanx :) 
Fitzquake Question 
when i try to load map with a fitzquake it crashes with allocblock:full what does it mean? 
Untitled 
nevermind, i figured out it 
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.