Instant kill

Mapster

Newbie
Joined
Feb 16, 2005
Messages
357
Reaction score
0
Ok what i want to know now is if tehre is a way to make it so that is anyone was shot by a pistol they would die instanty, therefore, Instant Kill.

Does anyone know how I would do this, or if i would have to make a little mod to add with the map or something?

Cheers,
Mapster
 
That would be somewhat more along the lines of coding. Mabe some way to trigger kill on take damage on a player entity, as far as i know that is not possible.
 
I wouldn´t say its impossible. I was once on a server where the admins increased the amount of damage the stunstick and crowbar would cause to 200 hp. So you´d die instantly. There must be a variable most likely on the server itself where you can change the value of each weapon. But sorry I dont know it. I only know its possible. I´m more into level design but I´m sure someone here knows it. ;)
 
Maybe you could do some sort of trigger that hurts you on spawn down to about 15 hp?
 
Following s0cks's reasoning:

Create a logic_auto and a point_servercommand.

point_servercommand
Name: servercommand

logic_auto
Go to the outputs tab and use these outputs:
My Outputs Named: OnMapSpawn
Targets Entities Named: servercommand
Via This Imput: Command
With A Parameter Override Of: sv_cheats 1; sk_plr_dmg_pistol 200; sv_cheats 0

Should work.
 
Even better, combine the parameters into one and save calculations: parameter sv_cheats 1; sk_plr_dmg_pistol 200; sv_cheats 0
 
Oooo
Didn't know you could do that.

I'll rewrite it to avoid some (possible) confusion.
 
Is it possible for this to work on other weapons, in CS in perticular?

I'd be thrilled if you could have Knife-instakill.
 
Provided you know how to change the damage. Sure.
 
Back
Top