Moving trigger_hurt
Moving trigger_hurt
Is it possible to do this in idtech3? Have, say, a moving gas that is represented by a box move and do damage to players?
-
- Posts: 252
- Joined: Sun Nov 06, 2011 11:11 pm
Re: Moving trigger_hurt
You can't move a trigger_hurt, for the obvious reason that it's already an entity. However, you can move a lava or slime shader, and those are the only shaders that can cause damage. They also cause damage in a specific way that cannot be modified (simply): if you are completely submerged, you take significantly more damage. And you can't choose how much damage is dealt.
So... sort of?
So... sort of?
Re: Moving trigger_hurt
However, you can move a lava
+1, notorious q2dm3 ("The Frag Pipe") for example.
+1, notorious q2dm3 ("The Frag Pipe") for example.
Re: Moving trigger_hurt
This can't be done.KittenIgnition wrote: However, you can move a lava or slime shader, and those are the only shaders that can cause damage
Any surfaceparm shader instructions that define the contents of the brush are hard baked into the map at compile time. That means the area that hurts the players (and added effects like sounds played when entering the liquid or leaving it or the view warping effect while submerged in a liquid) isn't actually moving with the brush itself. It stays in the area the brush originally covered before moving (sort of, the player-hurting effect itself appears to become disabled once the brush moves).
I once tried to create a pool of water where the water level can be raised and lowered once, but I gave up on that because of these oddities.
Re: Moving trigger_hurt
Quake 2 isn't Quake 3 thoughObsessed wrote:However, you can move a lava
+1, notorious q2dm3 ("The Frag Pipe") for example.

Re: Moving trigger_hurt
@ Eraser, yep, you're right!
!= 



-
- Posts: 252
- Joined: Sun Nov 06, 2011 11:11 pm
Re: Moving trigger_hurt
Alright yeah, all my testing is done in Defrag, and I often forget just how much it changes. Movers can be lava or acid, and they work as you would think. Baseq3 seems to not, sadly 

Re: Moving trigger_hurt
These kind of things can be faked with the "shooter" entities, but requires a custom (invisible/silent) projectile, which I don't remember being too hard to set up.
Re: Moving trigger_hurt
If anyone else can confirm or demonstrate that it could be faked I'd be into trying my hand at making a new map asap.
-
- Posts: 41
- Joined: Wed May 25, 2016 9:36 am
Re: Moving trigger_hurt
If you search downthread to 2016, you'll see a map I posted called "Outrage.(an ancient version of it, anyway)" This has a func_button that goes to a trigger_hurt (among other things, via a trigger_multiple), which is set to start_off as well as toggle.
It doesn't move, but it does at least activate and deactivate. You might be able to get a few "frames" of pseudo-animation by a couple of these triggers setting off the hurts in different places. So long as you don't need anything too fancy. The apparent motivating "cloud" you would create separately in the same space.
Just a thought.
It doesn't move, but it does at least activate and deactivate. You might be able to get a few "frames" of pseudo-animation by a couple of these triggers setting off the hurts in different places. So long as you don't need anything too fancy. The apparent motivating "cloud" you would create separately in the same space.
Just a thought.