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
Sounds Like... 
you're right one track! ^_^;

seriously, i have maps that i started a year ago that are just sitting until i can get the urge to finish them.

i think, as a purely hobby mapper, that this is usually how things go.

if you're doing it for a job, well, then, you don't get that kind of luxury. :P

in fact, i'm kind of curious:
pro mappers: how much do you throw away and restart, and how often? or are time constraints so tight that you can't even afford to do that, and have to continue something that you'd rather restart? 
Good Question 
Also, I wonder... what about my question. I'm feeling woeful and uncared for. 
Aaaw 
I've got a counter triggered by 2 "bob"s.

I just built this setup. Twice; one in GtkR using the .def and one in WC using the .fgd
Both worked fine.

Could be the "count" value you used..? 
Nope. 
Count *is* at 2. 
No Lettee Passee 
What can I use as a barrier that will allow monsters through but block players 
Okee Dokee 
Never mind. Opened mouth without engaging brain. Got it sorted now.

(took me longer to ask the question than find the answer) 
Drew 
have you checked what you are targetting with the trigger_counter? maybe the triggered entity is broke? 
Too Many Static Entities 
OK, I know what the implications are but what about if I remove 'makestatic (self);' from a couple of the lighting models? I have done this on several of them and my Too Many Ents crash goes away and the map seems to run normally.

But what effect am I having on other things i.e. why do some of the lighting models have this entry anyway? e.g. large flames, small flames, wall torches etc 
Well 
i think one of the reasons is to reduce internet traffic when your playing net games. i think the makestatic tells the server to completly ignore that entity and never send it to any clients and let the clients handle it.

also, if you remove it, that makes that entity take up an edict. remember you have a 600 edict limit to work with, so be mindful of that. if your map is small, and only for SP, than you could probably get away with it. 
OK... 
... what's the trick to pulling down a file from the old ftp.cdrom.com? 
Pff 
It's like that site doesn't exist anymore. I've had much luck usually at some .SE site though, like sunset or sun something... 
Thanks Phait... 
... there's some trick of replacing part of the url that makes the files accessible, I just can't remember what it is. 
Something Like This 
Weird 
This might be nothing new to some of the editing veterans on the board who may have encountered this, but it caught me off guard a bit.

http://blitz.circa1984.com/curves.gif

I was messing around with some "hand made" (everything aligns on a 4 unit grid) curves, when I noticed a) the void sparklies in the 3D window b) the fact that when I zoomed all the way in on the XY view, none of the brushes actually aligned properly!

So, I dragged up the outside "circle" of it as a wall to seal it off, and copy+pasted the floor for the ceiling to test if dmap would leak if they were sealing brushes, and as I thought, it [i]didn't[/i] leak. In addition, the "sparklies" were not visible in the map.

My question is, why does D3edit render them as not joining together correctly? 
Blitz 
Well, AFAK when you make a copy paste of a brush, and then rotates it, the coordinates floating part of each points sometimes are not aligned on grid anymore, and then zooming closely, you will find a "hole" at the joining faces... o_O ...
I had the same disappointing effect in QuArK, just try to force to grid each points, it would be enough to solve the issue in the editor at least... 
I Don't Think So JPL 
I did the same exact method in GTKRadiant and when zoomed into the max, everything still lines up, and it doesn't have the "sparkly" effect in the 3d window either.

So it's something with D3edit I think... 
Excuse My Ignorance 
but I guess
1) the 3d renderer just isn't so precise in that.
2) The compiler must be.
3) the engine has the benefit of using the compiled maps where these surfaces probably share coordinates/vertices (they were combined in the compile phase)

?)But somebody (aguirre?) said earlier that in q1 at least, faces are at some point stored as not vertices but as planes with a surface normal somehow and then if you have very small slope adjustments in small grid (like say, a 1001 in 1002 units slope, 44.999 deg) then it can get fucked (because it gets stored as 1001/1001, 45.000 deg), and that's why you should stick to big grids in non-perpendicular architechture. 
 
yeah, i see that in d3edit often too. i think it has to do with the dynamic light stuff, because when it's off, the sparklies go away.

i just tend to ignore any problems until they start showing up in the game. :P 
Distrans 
Did you get my email reply to your hull 2 leak issue? I've sent it three times now. 
<- This One Is For Bambuz... 
Thanks heaps! That is exactly what I needed. 
AguirRe... 
...received at both latrobe and gmail, thankyou. I'm trying some of your suggestions (and some from Jack). I'll get back once I've definitively succeeded or failed. 
Preach 
Do you know why having a Q1 entity selecting its mdl by random in the spawn function will cause later reloaded savegames to mix up the models in-game? Typical symptoms are monsters replaced by ammo boxes or similar. The mixed up models is a problem that has occurred in several paks (e.g. SoE), but I've never quite understood why it happens.

I've now an old pak (After The Fall) that has this problem immediately in the first map after reloading a savegame. There are some func_rock entities that can have one of two mdls, selected in the spawn function by the random() built-in. If I replace this logic with one that will always select the same mdl for this particular entity (based on its origin key), the messed up models problem seems to disappear.

I've added warnings for this issue in the engine loadgame function to make it more obvious when it happens, but I still don't understand exactly why it occurs. I suspect it's related to the engine model lists (precached or otherwise) that go out of sync with the edict order in the savegame file, but I haven't been able to pinpoint it.

Any ideas? 
Possible Explanation 
The list of models is built in the order they get precached, and I'm guessing that these models will get precached in a random order depending on which one gets generated first in the map. Is it possible that when the map gets reloaded both get precached at once? this would bump any model that's precached between the first rock and the second one model up. This bug more frequently occurs(rather understandably) when you use a new patch for mod with an old save game, and the patch adds things to the precache list.

One thing you might want to test is precaching both rock models in worldspawn, regardless of whether there are rocks in the map. Then see if the same model bug occurs with a new save game. Of course, this will break all previously saved games under the old patch whether they had rocks or not, so might be best to do it with a copy of the mod...
If that doesn't fix it, I'll admit I'm not entirely sure what's going on. You might have more luck asking people on inside3d, no doubt Frik or Lord Havok will have a solution. 
Thanks For The 
comments. I don't think both mdls can be precached simultaneously, there's no such parallelism in the engine that I know of. And I know the issue with invalidating savegames when modifying progs.

It's easy to test as it happens immediately in the first playable map (atfe1m1). When reloading the savegame, I either get:

1. No problems
2. Mixed rock mdls (not very visible)
3. Many mixed mdls (very visible)

I'll try the worldspawn precaching to see if that makes any difference. 
Simultaneous Precache 
I didn't quite explain what I meant by simultaneous there. What I meant was that both models might get precached within the same single spawn function one after the other. Like when the map loads, maybe rock 1 gets precached, then some other entities get their models precached, then rock 2 gets precached for another rock later on. But when the game gets reloaded from the save, it just precaches both rocks one after the other as soon as it loads the first entity from the save game. I don't know why it would behave like that, ignoring the if/else statements in the random part of the function to reconstruct the model list, but it would be an explanation for the behavior. 
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.