triggers

Discussion for Level editing, modeling, programming, or any of the other technical aspects of Quake
Post Reply
j3st3r
Posts: 97
Joined: Fri Oct 01, 2010 11:02 pm

triggers

Post by j3st3r »

Can a trigger_multiple be set up to activate only by taking damage rather than touch like the func_button?
User avatar
Theftbot
Posts: 483
Joined: Thu Oct 08, 2009 4:03 am

Re: triggers

Post by Theftbot »

A trigger_multiple is a point entity
A func_button is a solid/prop/geo entity

So you can have a func_button(w/a fast return+health#) tied to a trigger_multiple.
j3st3r
Posts: 97
Joined: Fri Oct 01, 2010 11:02 pm

Re: triggers

Post by j3st3r »

Well I ran out of brushes so I was hoping there was a way to do it without the button.
User avatar
Eraser
Posts: 19177
Joined: Fri Dec 01, 2000 8:00 am

Re: triggers

Post by Eraser »

A trigger_multiple is not a point entity. It has a volume (defined by a brush). However, it cannot be made sensitive to weapon fire.
User avatar
CZghost
Posts: 1943
Joined: Wed Jun 22, 2011 1:45 pm
Location: Czechia
Contact:

Re: triggers

Post by CZghost »

Agree with you, Eraser... It has the volume (created from brush), but it's not solid surface, then there's probably one solution: func_button with extra-high speed, extra-small push and immediately return (can be hidden in wall and can have border saying "There's something, let's shoot").
[ Linktree | Twitch | YouTube | Instagram | Websites ]
When you feel the worst, turn to the sun and all the shadows will fall behind you.” - John Lennon
User avatar
Theftbot
Posts: 483
Joined: Thu Oct 08, 2009 4:03 am

Re: triggers

Post by Theftbot »

Maybe use the clip shader for a func_button so its invisible.
User avatar
CZghost
Posts: 1943
Joined: Wed Jun 22, 2011 1:45 pm
Location: Czechia
Contact:

Re: triggers

Post by CZghost »

Theftbot wrote:Maybe use the clip shader for a func_button so its invisible.
Or this... There are more options, how to make secret button (the clip shader is useful, when making trapdoor button, the bulleye)
[ Linktree | Twitch | YouTube | Instagram | Websites ]
When you feel the worst, turn to the sun and all the shadows will fall behind you.” - John Lennon
User avatar
Eraser
Posts: 19177
Joined: Fri Dec 01, 2000 8:00 am

Re: triggers

Post by Eraser »

Theftbot wrote:Maybe use the clip shader for a func_button so its invisible.
This is a good idea. Maybe make two brushes then, one with weapclip and one with missileclip.
User avatar
Eraser
Posts: 19177
Joined: Fri Dec 01, 2000 8:00 am

Re: triggers

Post by Eraser »

CZghost wrote:
Theftbot wrote:Maybe use the clip shader for a func_button so its invisible.
Or this... There are more options, how to make secret button (the clip shader is useful, when making trapdoor button, the bulleye)
You keep missing the point. The problem is that he needs an invisible damage sensitive trigger so it doesn't add up to the brush limit of the 20 brush competition.
dONKEY
Posts: 566
Joined: Mon Oct 15, 2001 7:00 am

Re: triggers

Post by dONKEY »

Not meaning to thread highjack, but I also have a trigger question, similar to the OP.
I want to set up a delayed teleporter. Basically my map is a little tropical island set in an ocean. When players fall in the water I want to teleport then back on to land after a few seconds swimming about. Trigger_multiple has no wait key, neither does target_teleport or target_relay or misc_teleport_dest. Does anybody have any ideas how to set this up? I thought about setting up a secret room with a clip door or button that I could use to cause the delay. I am not sure how this would work if several players dropped into the water at the same time.
User avatar
CZghost
Posts: 1943
Joined: Wed Jun 22, 2011 1:45 pm
Location: Czechia
Contact:

Re: triggers

Post by CZghost »

dONKEY wrote:Not meaning to thread highjack, but I also have a trigger question, similar to the OP.
I want to set up a delayed teleporter. Basically my map is a little tropical island set in an ocean. When players fall in the water I want to teleport then back on to land after a few seconds swimming about.
It's possible, though. My advice would be coonecting four entities (trigger_multiple with wait key 0 connect to target_delay with wait key you want, this connect to target_teleporter, which should be connected with misc_teleporter_dest) in the row you see.
dONKEY wrote:Trigger_multiple has no wait key, neither does target_teleport or target_relay or misc_teleport_dest. Does anybody have any ideas how to set this up? I thought about setting up a secret room with a clip door or button that I could use to cause the delay.
Trigger_multiple has wait key, which allows you to set interval of activable state (if you'll set wait key to 60, trigger will be inactivable for 1 minute.)
dONKEY wrote:I am not sure how this would work if several players dropped into the water at the same time.
I'm not sure, too, but it should work (try with your friends the regentube in q3dm10)...
[ Linktree | Twitch | YouTube | Instagram | Websites ]
When you feel the worst, turn to the sun and all the shadows will fall behind you.” - John Lennon
neoplan
Posts: 125
Joined: Thu Jun 05, 2008 9:47 pm

Re: triggers

Post by neoplan »

dONKEY wrote:Not meaning to thread highjack, but I also have a trigger question, similar to the OP.
I want to set up a delayed teleporter. Basically my map is a little tropical island set in an ocean. When players fall in the water I want to teleport then back on to land after a few seconds swimming about. Trigger_multiple has no wait key, neither does target_teleport or target_relay or misc_teleport_dest. Does anybody have any ideas how to set this up? I thought about setting up a secret room with a clip door or button that I could use to cause the delay. I am not sure how this would work if several players dropped into the water at the same time.
Did same setup with a func_door. In your case: trigger_multible > target_delay (wait key) > target_teleporter > misc_teleporter_dest
dONKEY
Posts: 566
Joined: Mon Oct 15, 2001 7:00 am

Re: triggers

Post by dONKEY »

Oh ok, forgot about func_delay. Will see what I can do :)
User avatar
CZghost
Posts: 1943
Joined: Wed Jun 22, 2011 1:45 pm
Location: Czechia
Contact:

Re: triggers

Post by CZghost »

I'm not sure, too, but it should work (try with your friends the regentube in q3dm10)...
[ Linktree | Twitch | YouTube | Instagram | Websites ]
When you feel the worst, turn to the sun and all the shadows will fall behind you.” - John Lennon
Post Reply