Please or Register to create posts and topics.

Trgger hurt

Is there another way to kill the player except for trigger hurt brush. I have a timer set up that when it goes to zero you die, can you set up something else to kill the player.

If there is a console command that kills you, you could use a point_clientcommand.

My Maps:
[spoiler][SP] Alternate[/spoiler]

You can access the player as 'player' in the output of an entity(Hammer shows it in red because of a bug, but it'll work ingame), and kill him using 'SetHealth' with a parameter override of -1000. An example of a button that will kill the player 3 seconds after being pressed:
Image

You could also use !activator instead of player.

Vordwann wrote:
If there is a console command that kills you, you could use a point_clientcommand.

wait, I'm interresed this thing make the console do a command ??
Such as Noclip or no target ????

_________________________________________________________________________
http://portal.biringa.com/images/d/d4/Announcer_prehub18.wav

Yes

12 Angry Tests
"I hear voices. But I ignore them and I just carry on killing."

Cool !!!!
I'll use it

_________________________________________________________________________
http://portal.biringa.com/images/d/d4/Announcer_prehub18.wav
dinnesch wrote:
You can access the player as 'player' in the output of an entity(Hammer shows it in red because of a bug, but it'll work ingame), and kill him using 'SetHealth' with a parameter override of -1000. An example of a button that will kill the player 3 seconds after being pressed:

Thhankyou Dinnesch, this has worked exactly like i wanted it to.