Passive Enemy
#20784 posted by vodsel on 2022/01/07 07:12:04
it seems a bit antithetical to the kill count to do this, but if I wanted to decorate a part of my map like a scene and have a passive Fiend just standing there, could I easily do this? I am basically looking for a way to make an enemy unaware of a player, as if they are notarget'd. thanks!
#20785 posted by anonymous user on 2022/01/07 10:25:13
If you're mapping for a mod, cleanest way is to just use misc_model. For vanilla there are a couple of hacky ways.
One is to use a func_illusionary point entity and set its "model" to "progs/demon.mdl", and then "frame" to the desired frame ("53" for a dead fiend). However you'll need to precache the model by using another live fiend somewhere else, and you won't be able to rotate the model.
Another way is to add a regular fiend and set its "nextthink" to "99999999" ( see also). It will be frozen in its first frame and will contribute to the killcount, but won't be shootable.
Finally, you can just add a fiend and surround it with a func_wall made of skip.
Vodsel:
#20786 posted by metlslime on 2022/01/07 18:34:29
Clever Ideas!
#20787 posted by vodsel on 2022/01/07 20:14:39
thank you both!!
Vodsel
I just made a passive spawnflag for enemies in progs_dump (unreleased at the moment) but I didn't take into account kill count. This post is a good reminder I need to address this. You can see the commit here if you are curious.
https://github.com/dumptruckDS/progs_dump_qc/commit/9250f5c0a1de645f6ec8a3767d8c2f2e8e117016
And I do agree that a misc_model is the way to go for mods that support it. The current version of progs_dump has misc_model. https://www.quaketastic.com/files/single_player/mods/progs_dump_devkit_v200.zip
Glass Pane
#20789 posted by Vanisch on 2022/01/09 17:54:11
Hi, everyone,
I'm new to the forum and haven't found a search function here, so please excuse me if my question and request have been asked many times.
Can you tell me how I can make a pane of glass in Q1? saw this on a map ... also have a texture for it but i don't know how to use it. simply covering a brush with it does not work because the pane is then not transparent.
Thanks in advance for your help.
Regards
Vanisch
#20790 posted by anonymous user on 2022/01/09 18:34:20
Make it a func_wall or func_illusionary and add "alpha" "0.5", tweak from there.
Wecome, Vanisch!
#20791 posted by metlslime on 2022/01/09 20:51:29
Like the previous poster said, you can add "alpha" key to any entity. One caveat that this is not supported in vanilla engines, but pretty much all modern sourceports support it.
We do have a search function, it's in the row of links at the top of the page.
#20792 posted by Vanisch on 2022/01/10 00:56:31
Thanks so much to anonymous and metlslime.
Oh my god ... completely overlooked the search button up there. Sorry ...
Message Entity Key
#20793 posted by Jimbob on 2022/01/15 04:15:45
In the Steam rerelease's Kex engine, entity key messages stay on the screen for several seconds, quite a long time. In Quakespasm Spiked messages are lightning fast. Is it possible to make messages stay on the screen for longer?
Yes In QSS At Least
scr_centertime X default is 2
Jug.wad
#20795 posted by anonymous user on 2022/01/17 05:55:47
Anyone know where jug.wad came from? It says the file was created on 10/18/1999. I can't find any information about it but I want to use its textures. It has a uniquely 90s techno-factory feel that reminds me of System Shock.
#20796 posted by erc on 2022/01/17 07:47:05
Those textures may be from the unofficial Quake II add-on, Juggernaut. Have a look around for some screenshots and gameplay videos, to see if those are the same ones.
https://www.mobygames.com/game/juggernaut-the-new-story-for-quake-ii
#20797 posted by anonymous user on 2022/01/17 08:57:11
That was it. Thank you.
#20798 posted by anonymous user on 2022/01/18 22:55:50
There doesn't happen to be a Halo mod hidden in the annals of the past, is there? I ask because I think the halo enemies would make sick quake enemies.
Breakable Planks?
#20801 posted by vodsel on 2022/02/05 20:32:00
I did a search for a variety of terms, but this was a hard question to search. Is there a way to create breakable brushes, like boards that break when smacked with a melee attack? To be honest I can't remember this in any vanilla quake level but I think I've seen it in quake somewhere...
Kinda Broken
#20802 posted by Preach on 2022/02/05 22:50:54
You can make an brush destructible so that after it takes a certain amount of damage it disappears. It's not very visually satisfying but it's functional. You might have been looking for visible feedback when the object is broken, like little broken chunks to spawn. This is added in lots of mods (including mapping mods like Quoth/AD etc) but it isn't possible in unmodified Quake.
If the very basic disappearing object is good enough, there are two options. The classic approach is to make the plank into a func_wall, create a trigger_once around the plank, then give the trigger a health value and set it to killtarget the func_wall.
It's possible to use a map hack instead, where you set a health value directly on the func_wall, then give it a suitable th_die function. This is especially helpful for creating breakable objects with non-rectangular shapes. If this approach is particularly interesting I can fill the details into the outline.
Vodsel
#20803 posted by metlslime on 2022/02/05 22:52:08
most big mods have a func_breakable entity. (for example: rubicon2, RRP, alkaline, AD, quoth.) However, vanilla id1 does not support the feature.
In Vanilla
#20804 posted by RickyT33 on 2022/02/06 13:12:54
You can make an object into a trigger_button, set the button speed to 999999 (so it disappears as soon as you shoot it), give it a negative "lip", so it completely disappears when shot. Then you can make a point entity of the type "info_notnull", and give it the key "use" with the value "OgreGrenadeExplode", and a "targetname" that matches the button's "target". This will cause an explosion effect when you shoot the button. You can even make some debris, but it won't be animated. You can make a pile of debris into a door, give the door a negative lip, flag it to be toggleable and flag it to start open (and set the "don't link" flag too). Set the speed to be super high, and give it the same 'targetname' as the explosion, so now when you shoot or hit the button, there will be an explosion, and the debris will appear.
|