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
 
You can set up additional or different folder locations, but you still end up with something like:

E:\SteamLibrary\SteamApps\common\XXXGame\ 
 
I don't need my games deeper than my porn folders... 
Yeah I've Got Loads Of Steam Stuff 
But my Quake is in c:\quake

(actually it's in e:\quake but that's a long sad story) 
Oh You Mean... 
E:\Downloads\

porn + literally anything else I download. I am very organized. 
 
Porn is on the desktop, ain't nobody got time for digging for that... 
 
This:
clean install would just be:
quake/id1/pak0.pak
quake/id1/pak1.pak
quake/{extract your engine of choice}

I put any changes I like and want to keep into PAK2.pak.

My test bed for everything is put into PAK3.pak.

The great thing about the Quake file setup is that the default of IDPAK0 or PAK1 can be overridden by any PAK# higher than that but if no new file is available the defaults kick in.

Mine is set up with PAK0 and PAK1 being untouched. PAK2 has watervised levels and .ogg files and PAK3 has the "Dirty" lit files (also watervised) and new models.

Easy to undo changes yet still keep a clean Quake install. 
"Dirty" Lit Files 
Nope, I meant dirty .bsp files. Lit has no place in classic Quake as it's currently implemented. It's not subtle at all. 
Say 
I have a rock mountain in my map. It has a bad vising because something tricky distorts the brushes into hom's and it aches my attention working on it.

When I change the whole structure into a func_wall there is no hom vissible, but is it save it won't happen when real vising? 
Did You Try 
detail brushes? 
 
Is it possible to scale enemies in size via hacks or standard qc? 
You Can In UE4 
#UE4Thread 
Depending On Your Assets 
Is it possible to scale enemies in size via hacks or standard qc?

If you go to the trouble of creating a scaled model then you can code micro or macro-monsters, but there's no way to change model scale in standard QC. It's not recommended to create frames at different scales within the same model, as you lose precision in the smaller scale frames. Darkplaces supports this as an extension, but it's the kind of feature you would have to commit to using DP in your mod.. 
 
*high five* 
 
You can hack the bounds in the .mdl without touching anything else and include the modified file. Probably could do it in a hex editor if you knew exactly what bytes to modify (although that's theoretically true of anything). You'd then need a whole new monster in progs for that model, though, to change the ai_forward distances, bounding box, eye offset, etc.


the better question is why in sam hell would you 
Madfox 
AFAIK, vis ignores submodels, so as long as the func_wall looks good after qbsp, it should be safe after a vis too. The main problem with complex func_walls is they render slowly in some engines (qs 0.90.0 has a fix for this, fitz 0.85 would be slow.)

If the HOMs only appeared after vising, maybe func_detail will do the trick without the performance variability across engines of func_wall. 
Re: .mdl Haxxoring 
You can hack the bounds in the .mdl

A quick goosey gander at the .mdl specs show a number of things that may or may not need to be haxxored, including...

vec3_t scale; // Model scale factors.
scalar_t radius; // Model bounding radius.
scalar_t size; // average size of triangles

I don't know much about these.

I'm guessing scale is the important one - is everything else normalised, or are they absolute values and need to be changed also? 
Shame 
It would be fun as hell to have monsters in random sizes or have them increase in size until they burst. 
Spirit = Andrew Dobson, Confirmed 
 
Switch Between Models During Animation? 
Would that work, assuming all of the mdl's are precached at the start? 
#14741 
@-ericw The hom appears after fastvis also, so it is probably a combination of other brushes.

Exporting it appart doesn't show any problems,
that's what makes searching so hard.

After turning it into a funk_wall fastvis gives a clean picture,
but with 150h realvis ahead I just want to make sure.

@-Ijed detailed brushes, is that a new func? 
Madfox 
Detail brushes aren�t considered when qbsp builds the portals in your map. The portals are in the vis process afterwards. (its the .prt file that qbsp writes) So less portals, less vis times.
Comprendre?

My last map has 75K Marksurfaces, but its vised in under two hours;) 
Sorry For Being So Noob 
How do I obtain detail brushes?
Is it the same as func_wall?
Do clip brushes have the same function as they hide structeral brushes? 
Yes 
use them like func_wall, newer .fgds/.defs include them already.

Dont seal your map with func_detail brushes!
Or think like: "if i cut out all details, my map must still be sealed/not leak!"

Clip brushes are too cover surface irregularities(floor tiles that are detailed for example, or detailed structures that the player wont reach any way.

Use them like this:

http://imgur.com/55rdfKL

All those red clipping brushes hide pipes (with lots of faces) inside.

The number of clinodes(check qbsp output) is the one that is reduced by excessive use of clip brushes. 
Haha 
thats an old QuArK screenshot btw.. 
 
Your normal walls should stay as normal brushes but brushes which are generally there for purely aesthetic reasons should be turned into func_detail (for example, pillars in the middle of rooms, things like furniture, wall torches holding flames, crates etc) 
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.