>:D
#513 posted by Esrael on 2017/10/02 10:56:47
Oooh, I like it! It gave me the idea of adding a Doom 3 like teleport sequence at the end, where the player flies through a hellish shower of red.
True
#514 posted by Cocerello on 2017/10/02 14:41:27
sn't there a problem that in vanilla you don't have multiple targetnames? If you have a single trigger_teleport linked to two info_teleport_destination entities they must have the same targetname. When you killtarget one, the other gets removed as well. I think you need a separate trigger_teleport for each destination, and killtarget that instead (or just only ever trigger one of them).
I forgot that. I have done it with using trigger_once or multiple as intermediates but it was for func_walls and triggers. That way for one route the end entites are killed and for the other routes the intermediates. Teleport destinations can't use intermediates so in this case it cannot be used.
What could work is to put one trigger_teleport for each route on each enemy's box (all of the same route with the same targetname) and the destinations on the desired points and kill the triggers after the route is chosen. The downside is that no enemy can be put before that if only this method to deal with the enemies is used, can contribute to reach the limit for brush entities, and that teleporters have to be activated all of the same route at the same time. The upside is that it is quite fast to do.
killtargeting the monsters didn't increase the number of kills in my tests Interesting, i thought it did. Then try telefragging them like it does at the end of e1m7.
Other Lethal Weapons
#515 posted by Preach on 2017/10/02 21:42:46
Although not quite as spectacular as teleport gib fountains, there's a trigger capable of killing all the monsters within a trigger here (the second variety):
https://tomeofpreach.wordpress.com/2017/01/29/rapid-fire-trigger_hurt/
Ambient Sounds From A Point
Can we do them?
For example, the regular torches and fires in quake create a sound that decreases as you walk away, and originates from a point in the map.
Can we do this with custom sounds? Is it possible in id1 or do we need to code something?
Need To Modify Progs.
#517 posted by Redfield on 2017/11/01 06:57:03
I'm not entirely certain, but to my knowledge, any sound you intend to use in Quake must be precached, and this is done in your progs file. Thus if you intend to use a custom you must modify the progs.dat and therefore must create a mod in essence.
Arcane Dimensions apparently works some black magic to precache any sound you place in the ad/sounds folder and thus you can use your custom sounds without further altering the AD progs. It also supports attenuation (sound at a distance) with the speed key.
In summary, this has already been done but to my knowledge cannot be done in ID1.
Sounds
#518 posted by negke on 2017/11/01 23:13:29
HexenMapper: something like in #8
You can, for example, use a 'notouch' trigger (ideally point entity) with a "use" "train_wait" or "use" "plat_hit_bottom" field or the like, and a corresponding "noise" "ambience/fire1.wav" key, provided the sound is precached as Redfield says. If it's a looped sound, it'll play forever from the origin of this entity, although it'll have a different attenuation than regular ambient sounds. As a bonus, it also possible to killtarget it if you want the sound to stop.
Any Way To Compile The Func_etc? Like The Fields...
#519 posted by Terminal on 2018/01/02 21:51:36
For doors... The "effects" field... I would do this. I don't want a flame war... I have a sever impediment... It is not laziness...
It would be awesome to be incorperated in the Entity def's and qrk. files etc
Ric... Mapper since 99
New Post: Five Statues Challenge
#520 posted by Preach on 2018/02/23 00:56:25
Got a challenge from a reader of the old blog and I can't resist a challenge. The basic premise is to have five statues in the map, where the most recently touched one is selected, causing it to be lit up.
It's a real multimedia extravaganza as well today, with a full write-up, an example map and even a video, so come on down!
https://tomeofpreach.wordpress.com/2018/02/22/five-statues-challenge/
Weapon View Angle/Pitch Fix?
#521 posted by StroggVorbis on 2018/02/23 10:34:16
While I know of talisa's/seven's nail-position fix which offsets the NG's & SNG's nails to come out of the barrel instead of your face when aiming upwards, I miss such a fix for every other weapon, especially the GL, which makes shooting upwards a PITA. I'm no coder and wouldn't even try to mess with the source code/progs.dat. So by request, is anyone else up to the task to do it? Thx in advance.
Nice Preach
#522 posted by bal on 2018/02/23 11:28:45
I'm doing exactly the same thing in my current map, except with the AD entity state system, wouldn't have bothered ever trying in vanilla hah.
Follow Up: The Alternator
#523 posted by Preach on 2018/03/06 23:08:56
Hot on the heels, the promised hack that lets us ignore the order the entities are placed in the map, but still dictate the order that triggers fire.
https://tomeofpreach.wordpress.com/2018/03/06/the-alternator/
The article also includes how to make an "alternator" - a setup where a single input trigger switches between activating two different targets.
Brain Teaser For Preach
#524 posted by negke on 2018/04/04 10:06:15
Imagine you have several shootable triggers or buttons and want to fire an event once a certain total amount of health has been depleted. The damage done to the triggers transfered to an independent source, so to speak. So you can shoot each a random number of trigger a random number of times and once the overall health depletion reaches n, the event fires. Basically like a counter based on "health" instead of "count".
#525 posted by Qmaster on 2018/04/04 13:23:48
func_button.target > W_FireAxe notnull hack
W_FireAxe hits a func_door.
Func_door.health = 1000 or 2000 etc.
And voila, just add func_buttons.
#526 posted by metlslime on 2018/04/04 18:58:16
but, don't you want the player's actual weapon damage to matter? E.g. shooting it with 10 nails should cause less total damage than 10 rockets.
#527 posted by Qmaster on 2018/04/04 19:17:32
Make as many "shootable buttons" that you need. Select all of them, turn them all into one func_door with a health value, give it a target, set lip equal to bounding box so it doesn't move.
^Exactly
#528 posted by negke on 2018/04/04 19:26:08
The sum of all damage done combined. No idea if it's possible, and the applications would certainly be limited. For the lack of a better example: a machine needs to be damaged by a certain amount in order to be charged or explode and there are several exposed shootable parts. You can focus on a single one, or shoot each of them equally - the event fires once its global health is depleted.
#529 posted by negke on 2018/04/04 19:31:38
Exactly was @ metlslime.
But yeah, turning them all into a single door or button should work. Though what happens if they are supposed to be spread all over the map
#530 posted by metlslime on 2018/04/04 19:43:16
yeah, will you exceed max efrags and it disappears? I think in modern engines the efrag issue is solved and it is always drawn maybe...
Spread All Over
#531 posted by Qmaster on 2018/04/04 19:43:31
Nothing as far as I know, so long as the lip is set right for whichever movedir is set. I can't recall if func_button has an option to be silent in vanilla, so a func_door probably would work better.
One Doesn't Tease Preach's Brain With Trivial Matters!
#532 posted by negke on 2018/04/07 10:24:01
And yet, I have another possibly simple or already-answered-but-I'm-too-dumb-to-find question: how to spawn fully functional movers like trains, doors and plats half-way through the map? Basically invisible until triggered and then working like normal entities. Think "use" "func_wall" but without being thwarted by precache functions.
#533 posted by negke on 2018/04/07 10:47:23
I'm indeed stupid. It should work just fine that way as long as you override the sounds. Or is there anything more to it? If not, please delete me.
#532
#534 posted by Spike on 2018/04/07 12:22:45
inline models are implicitly precached, so those are not an issue for doors/plats/trains/etc.
while they'll have a model string set, their starting modelindex will be 0, which means they'll remain invisible until they're properly spawned.
regarding sounds, you can just have a second door/plat anywhere else in the map, its sole purpose being to precache the required sounds.
a bigger issue is that if you're using use+targetname, you'll have no way to clear said targetname before the use is called.
this means that plats will need to be triggered twice (one to spawn, once to activate them so that they can be used).
doors are more problematic - you'll need to manually create a trigger field around the missing door to allow it to open, and you'll need to spawn that trigger field the same way as the door otherwise they'll spawn the door when you walk through them the first time.
@Preach
Reaching back to this post from 2009 and trying to understand something.
Would this allow for a silent trigger_push? My set up is:
classname info_notnull
use InitTrigger
touch trigger_push_touch
speed 500
angle 90
spawnflags 2
targetname test
Mark V and Quakespasm are still complaining about not caching the ambience/windfly.wav sound file. I thought this was the whole point of this hack.
Thanks!
@dumptruck_ds
#536 posted by c0burn on 2018/06/14 09:04:10
Just put a trigger_push out in the void and it will ensure that sound is precached and avoid the warnings.
@c0burn
Yep, that's in the map off in a tiny room but the hack'd entity plays the sound in that case.
|