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
 
Yep, it looks like it's something to do with trigger_multiple ...

https://dl.dropboxusercontent.com/u/161473/Misc/2015-05-24%2017_07_09-QuakeSpasm%200.90.0.jpg

I currently have a door entity targetting the info_notnull and when the door is activated, boom, it crashes.

I get the same crash using a trigger_once or triggering it from another actor other than the door.

It must be something simple but I don't see it yet... 
 
Aaaaand never mind! I had a...

"sounds" "3"

...key on the info_notnull for some reason. Deleting that makes everything work.

Thanks a lot for the help! Excuse the derp... 
Sounding Off 
That's good, I did wonder if it was that, but I thought missing sounds were just a warning not a crash. 
Oh, Yeah 
Actually reading the error, it's the other way round, trying to precache something late, rather than trying to use something without caching it first. For models, both are fatal but for sounds the latter can be survived. It is possible to get sounds indirectly - set the noise keys with the paths to the desired sounds. Of course, you need some other entity to do the caching for you or you get warnings and no sounds... 
Is There Really No Way To Group Brushes In Netradiant? 
There is no func_group. It's a huge pain working without this. 
 
the .map format doesn't have native support for groups, so you have to hack it with func_group and a compatible compiler if you want it.

you can add func_group to your entities.ent file (usually hidden in something like E:\GtkRadiant\ 1.5.0\q1.game\id1)

<group name="func_group" color="0 .5 .8">
Used in editor to group structural brushes. Added to worldspawn by QBSP. Not a real entity.
</group>


stick that in with the other brush entities (find some other entity like func_wall or something, and add it after it's </group> tag). then you can make func_group like any other brush entity in Radiant, and select all their parts with ctrl+alt+e

you'll want a qbsp version that supports it, otherwise it will be compiled into a brush entity that Quake won't recognize. I know ericw's latest tyrlight will have support
https://www.dropbox.com/sh/1q5giu2leyvvhk0/AAA0UCacYD-tgVpElMSpf5Awa?dl=0 
... 
ericw's latest tyrutils I meant! been fussing over tylight too much lately... :D 
 
Thank you so much! It seems to be working fine with hmap2 and ezquake.

I'm curious though why Quake has to recognize it. Isn't it really just for convenience moving stuff around in the editor? 
 
To the editor, a func_group is just an entity with brushes attached (like a door, button, etc.) These are normally treated specially by qbsp (compiled as a bmodel) and the engine (looks for qc code with the classname to set up the entity behaviour).

But since func_group is a special thing just for mapper convenience, qbsp has special code to merge it into the world, and the engine never sees it. 
Isn't There A White Fullbright In Quake Palette? 
When I use 254 as seen here http://www.celephais.net/board/view_thread.php?id=4&start=14949 texmex turns it brown like 255, and that's how it appears on the map. 
 
Of course I meant here: http://quakewiki.org/wiki/Quake_palette 
 
254 should work. Is it broken in all engines or just some engines? 
 
oh wait, it sounds like it might be a texmex bug (if the error occurs inside texmex too) 
 
btw i didn't write the code in http://quakewiki.org/wiki/Quake_palette even though it claims I did. That's not now i write single-line comments :) 
My Favourite Part Of That Article... 
...is how they managed to name all 16 rows without repeating the word "brown" 
LOL 
 
Get Q3map2 To Not Strip Lights? 
Hey there, I've heard about the q3map2 option -keepLights that is supposed to stop the compiler from stripping out light entities. Though, it never seems to work for me whenever I try it, what's the most correct usage? 
IIRF 
That is a worldspawn switch 
RE: Pyro 
So what should I do to use it? What process do I stick this thing on? 
Sunlight Color? 
What about worldspawn's "_sunlight_color" key? I'm using tyrutils v0.15 qbsp, vis and light, getting only bland white sunlight. It seems to ignore that key. I tried 64 192 255 and it's still white. I'm on Worldcraft 3.3, but that shouldn't matter. What am I'm missing? 
Console Output 
Sorry, I'm mapping for Quake 1. Here's light.exe output:

---- light / TyrUtils v0.15 ----
running with 4 threads
BSP is version 29
Colored light entities detected: .lit output enabled.
4 entities read, 0 are lights.
0....1....2....3....4....5....6....7....8....9...
Lighting Completed.

lightdatasize: 1989
0 switchable light styles
Writing BSP version 29
0.0 seconds elapsed

The level shows sunlight, but it's always white, no matter how I set _sunlight_color 
 
Make sure to copy the both the .lit and .bsp to your maps directory, if you're compiling in a different directory.
Does your engine have .lit support? Most do, except the original winquake/glquake. 
Sorry!!! 
Guys, think I pulled the trigger too soon. For some reason, when I ran light outside Worldcraft it worked. Sunlight is blue now. My bad. 
Gotcha, Ericw 
In order to eliminate unnecessary files, I was deleting the .lit
Gotta copy the .lit along with the .bsp 
_sunlight2 On Tyrutils V0.15 ? 
I noticed light.txt doc doesn't say anything about this key, but I see you talking about it sometimes.

Are you compiling your lights using tyrann's light.exe? Anyone setting _sunlight2 and/or _sunlight2_color? 
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.