Where Is It?
#8544 posted by Drew on 2009/05/26 18:06:52
I checked there already and couldn't find it - probably just blind, but it wasn't in the quoth editing section, and I didn't see it in the main part either.
I know that Ijed had made one up and posted it on quaddicted.com, but can't seem to find that either. I guess I'll keep looking!
Have It
#8545 posted by Preach on 2009/05/26 19:27:17
Yeah
#8546 posted by Drew on 2009/05/27 02:15:38
Found it a minute ago, thanks!
Preach
#8547 posted by negke on 2009/05/27 19:11:01
Any success?
Not a big deal if it doesn't work, just would've added a nice little twist to the combat (-> Shambler+Vore with having one another set as owner, Fiend to used as a living shield and temporary diversion).
Sorry...
#8548 posted by Preach on 2009/05/28 23:45:28
It's not going to be possible. The reason is actually buried in why the trigger disappears after one use. The spike_touch function has to remove the touching spike once it's done. So I had a look to see if there was an alternative function which didn't have this side effect.
Sadly, the only functions which do damage where the inflictor is different to the attacker always remove the inflicting entity at the same time. This property is key to how the attack from the info_notnull gets the monster mad at a different entity(the owner of the notnull). So it isn't possible to continue doing it multiple times.
If it's any compensation, I did discover a very cool hack on the way, which I hope to share with a testmap this weekend...
Ah Ok
#8549 posted by negke on 2009/05/29 19:09:50
Looking forward to the new hack, though. Means that my question wasn't totally fruitless.
Re: Engine Standards
#8550 posted by negke on 2009/05/29 22:13:57
Fitzquake brightens up the models heavily, while they are only dimly lit in Glquake. If I increase the light to make them look remotely acceptable in GL, they are almost fullbright in Fitz. Or conversely, models that look right in Fitz are barely visible in GL. This makes the pent-over-the-void secret almost a Fitz-exclusive. Fark off, both of you...
You Been Reading
#8551 posted by ijed on 2009/05/29 22:31:31
Irvine Welsh Negke?
No, But It Also Affects The Shubs Which Is The Real Problem
#8552 posted by negke on 2009/05/30 12:29:36
A tip for bringing down the edictcount: info_player_deathmatch entities are not removed in a single player game, so remember to give them spawnflags 1792. This will break the DMSP mod, though.
Question
#8553 posted by Tronyn on 2009/06/01 01:30:51
using aguirre's tools, how does one do an entity compile on a bsp when one already has the bsp and a .ent file
(I used bspinfo to generate a .ent, edited it, and now want to recompile the map).
Really Dont Know Man
#8554 posted by RickyT33 on 2009/06/01 01:55:24
Email him? I would :)
Worldcraft
#8555 posted by ijed on 2009/06/01 05:34:42
Compile window has the only entity option, although you have to suffer the window itself.
Otherwise should be in the docs on his site.
Tronyn
#8556 posted by Lardarse on 2009/06/01 06:57:07
txqbsp -onlyents mapname.ent
If that doesn't work, rename the .ent to .map and try again.
Negke:
#8557 posted by metlslime on 2009/06/01 08:04:25
But, fitzquake only emulates the original software lighting, which glquake deviates from. Since so many played glquake for so long, you could argue that the "standard" is dim lighting and lack of fullbrights, but at least fitzquake has those options if you know the right cvars.
For a mapper, there's no good solution other than making a map that is 99% enjoyable on any engine, even if a few things are less than ideal on some engines.
Cool
#8558 posted by Tronyn on 2009/06/01 23:06:55
Thanks guys. Also if anyone else wants to volunteer to test, the more the merrier (I have 3 testers atm, along with others who are in on the project(s) like PM, or are consultants/observers (ijed).
Last Hack Question For This Map (hopefully)
#8559 posted by negke on 2009/06/04 19:14:50
Almost had this working but now my mind is too messed up and I'm tired of trial and error'ing my way through Quake logic.
What I need is a single entity that simulates an item pickup upon triggering: use the model, play the sound, remove itself.
"classname" "info_notnull"
"origin" "-140 1256 -152"
"targetname" "red_arena"
"think" "InitTrigger"
"use" "multi_use"
"killtarget" "red_arena"
"noise" "items/armor1.wav"
"modelindex" "233"
"model" "progs/armor.mdl"
"skin" "2"
"delay" ".2"
"nextthink" "9999"
This doesn't work obviously - what's the right think/use function to use here?
Duh
#8560 posted by negke on 2009/06/05 18:05:58
Didn't see the forest for the trees yesterday.
This one works:
"classname" "info_notnull"
"origin" "-140 1256 -152"
"use" "multi_trigger"
"touch" "SUB_Null"
"noise" "items/armor1.wav"
"modelindex" "233"
"model" "progs/armor.mdl"
"skin" "2"
"targetname" "red_arena"
"killtarget" "red_arena"
"delay" ".1"
Building Ladders In Worldcraft 3.3
#8561 posted by mapper on 2009/06/07 05:01:25
Hi,
can anyone help me out and tell me how to build ladders in quake?
I'm using worldcraft 3.3 but cant find out how to build ladders o_0
Any help would be appreciated.
Ladder Trick
#8562 posted by ijed on 2009/06/07 06:00:54
Make a set of clip brush 'stairs' - the clip texture makes them invisible. Each step should be 16 units high, but only 2 units wide.
The player moves up vertical space instantly so the steep stairs will move the player up whilst they cross the small horizontal space.
You could also make the stairs out of normal brushwork, but I'm guessing you want something that looks like a ladder as opposed to steep, infinitly thin steps.
To have a proper ladder - climbing down, normal speed movement etc. you need code Quoth has ladders, as will RQ.
Result!
#8563 posted by ijed on 2009/06/08 06:43:58
WC 3.3 working on windows vista / ATI -
http://www.dll-files.com/dllindex/pop.php?opengl32
Drop the file into your wc folder. Which most likely you installed onto another machine and then copied to your vista machine.
Ah, progress.
That's 3.3 Btw
#8564 posted by ijed on 2009/06/08 06:44:45
And Fix For
#8565 posted by ijed on 2009/06/08 06:45:19
Selection in the 3d window.
Ok
#8566 posted by ijed on 2009/06/08 06:52:30
But it's adapting the UV's to the visible verts, so turning the camera causes an acid trip. As in texture distortion within the face.
Wc 3.3 Texture Conversions
#8567 posted by Drew on 2009/06/09 05:11:50
never work for me, no matter the wad. trying to use ikbase - won't work. there are no textures too large in that file, so I'm not sure why it isn't automatically converting. Not too handy with tex mex, either. is there a simple way to convert wad files other than the program provided with bakers wc 3.3 installer?
I'm almost sure there is an obvious solution right in front of my nose, but I'm too burnt out to see it.
Same Problem Myself
#8568 posted by ijed on 2009/06/09 05:40:54
|