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
I Know 
I just hope that not too many emails are lost in space. I got your reply a week ago regarding the Rune mod, thanks. I've also got emails in weird order. I strongly suspect my home.se account, maybe it's the seemingly ever-increasing pile of spam that is at fault ... 
Monster Count 
I am calling walkmonster_start from outside of the normal monster function. It does exactly what I want although it does not increase the monster count (which is not a problem) but I wondered why? 
Becuase... 
The function you're using only updates the monster total on the server. There is a seperate function that tells the client what the new total is.

I think. 
Fullbright All The Time? 
My map, with or without light ents, after a run of light.exe, is 100% fullbright. There are no leaks (the map is in a large cube). I tested the map with -light 40 before I put in lights, at this point, I believe the map acted appropiately, everything was visable but not super bright. I took off the -light value to test the light ents, and with or without ents the map is super bright.

I was told to ask aguirRe because he is a lighting guru. 
Also... 
I tried something else. I compiled the map with light ents with -light 1. The map was pretty much totally dark, as would be expected with -light 1, but the light ents didn't work.
hmm... 
Bumping The Monster Count 
Metlslime has it right, the infomation is only sent to a client when they first connect to the server by default. If you were running a coop server with your mod as it stands, I believe a player who connected after you changed the monster count would see the correct value.

Luckily, there's a way to update these stats after the fact, by composing your own message to the client, in a similar way to the way that temporary entities are done(ie teleflashes, explosions, lightning). The following code would adjust the monster count for self, assuming self is a player.

msg_entity = self;
WriteByte (MSG_ONE, SVC_UPDATESTAT);
WriteByte (MSG_ONE, 12);
WriteLong (MSG_ONE, total_monsters);

The 12 tells the client you wish to update the client's total_monsters variable, and the total_monsters in the write long is the server's value for total_monsters. There are a few other variables that can be altered in this way, 11 is total secrets for example. 6 is ammo_shells, although this is kept in sync with the server automatically. In fact, most of the possible variables are updated automatically or have functions that will do so, total_monsters is the exception. See http://wiki.quakesrc.org/index.php/SVC_UPDATESTAT if you want a complete list.

One more thing to note is that this isn't identical to the way temporary messages are sent. The message is sent using MSG_ONE instead of MSG_BROADCAST. Broadcast is an unreliable message, and so may be dropped over the network due to lag, but with particles that's not too much of a problem. You wouldn't want an altered monster count to be dropped, so you send it by the reliable MSG_ONE. If you strictly wanted this mod to work fine in coop, you'd want to send the message as MSG_ALL, which is supposedly reliable to all clients, or make the code loop through all the clients with MSG_ONE. 
Monster Counts 
There are additional info regarding this in my latest ToolTips. E.g. you must also communicate the killed_monsters value to the engine. 
Adamllis 
You must have done something weird if basic lighting doesn't work. Take a look at tutorials e.g. here: http://www.planetquake.com/worldcraft/index2.shtm .

Make sure there aren't any light ents with excessive values or keys that saturate the entire area.

Try putting only this light near a wall:

"classname" "light"
"light" "300"


Then run:

qbsp mapname
light mapname
 
24 Bit Textures 
If a face has a size of 64 x 64 is there any point to a 24 bit texture being larger than 64 x 64.

Is a 128 x 128 texture better than a 64 x 64 texture on a when intended for a 64 x 64 face at higher resolutions face or does it NEVER have an advantage? 
RE: 24 Bit Textures 
Yes, there is a point in them being larger. It's the same for all games really, it's not uncommon to see a 512x512 texture on a 256x256 face. If you are making a texture that's ment for a 64x64 face, make the 24bit texture 128x128, 256x256 would be overkill. 
Doom3 Question 
i haven't experimented with this idea at all, since i want to know if it's possible before i start.

basically, i want to have two different islands in a void that are fairly far apart from each other. you can see the one island from the other at all times.

obviously, you wouldn't want the island in the distance to be at full detail because most wouldn't be visible and it would probably slow down like molasses in winter.

is there a way to make most of the details in the island that is far to disappear and not be drawn by the game? sort of like how models look shittier at a distance to reduce the number of polys and thus make it faster to draw.

and it is possible to have details gradually appear as you get closer to them?

it wouldn't even matter if the transition from low detail to high detail was abrupt or smooth (ie: if the details could fade in or now) 
Well... 
if doom3 has LOD you can make the islands in maya or max, rather than out of brushes. 
Bleh 
What The Hell 
that was supposed to go to the screenshot thread 
 
I think the reason the second shot looks bland is because it's almost all the same texture, without respite. Add some wood and wizmet and I'd definitely prefer it to the first shot. 
Jago: 
Using the same texture theme doesn't mean you're barred from breaking up surfaces with trim and other details.

The flat lighting also doesn't help (cast by the sky, i'm assuming.) 
Melt: 
so you're saying that the meshes should get the LOD treatment automatically?

does anyone know if that would work? i know a lot of the hell maps were made out of meshes and not brushwork. is there a way to tell from those maps if LOD will work or not? 
Metlslime 
I discovered a strange behavior of fitzquake recently. It crashes when my wc is open. When I close the editor fq starts to work properly again.

??? 
Pulsar: 
- What's the error message?
- Do other engines crash too? 
Necros: 
I don't know anything about it, but I'm just saying that if there's LOD, it's probably mesh-only, and therefore to take advantage of it you'd have to use meshes. 
Oink 
if there's LOD, it's probably mesh-only, and therefore to take advantage of it you'd have to use meshes.

Or lots and lots of curves.

Hello bless.bsp. 
About LOD... 
is that automatic? or do i have to model each level of detail myself and somehow assign each different model version to a certain distance? 
Metl 
something like program will be closed - usuall windows error only

other engines (vanilla, agurRe's one ���) work 
PuLSaR 
I occasionally have BSODs in WinXP when having the OpenGL view open in QuArK and then start a GL-engine. In my case it's driver related (NVidia), maybe yours is too?

Does it seem related to whether the WC 3D-window is open or not? 
As Fas As I Can Tell 
Doom 3 has no LOD.
Q3 had it by having several sets of models for each model, but as far as I can tell by poking around in the D3 code it has nothing of the thing. Shouldn't be too hard to set up in a mod tho I guess... 
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.