How is this different from insta-kills made currently from eye/head shots?
You do it on purpose, and except for the min HP, it's a regular leg shot, so it's not an instant at -286hp.
If could be a troll tool, to keep people on the ground forever.Better die and respawn than be tricked on the ground...
Basically, all shot aimed to legs wouldn't be able kill the target, and would left it at -19 max (-39 for dead man walking).
If you really want to loot them without killing them, tell them to drop the stuff while you point your gun at them.
// neutralizing shots bool neutralizingShot = false; if( aim == HIT_LOCATION_RIGHT_LEG || aim == HIT_LOCATION_LEFT_LEG ) { neutralizingShot = true; } if( totalDmg > 0 ) { if( target.Mode[ MODE_INVULNERABLE ] == 0 ) { target.StatBase[ ST_CURRENT_HP ] -= totalDmg; if( target.Stat[ ST_CURRENT_HP ] < 1 ) { if( target.Stat[ ST_CURRENT_HP ] <= __DeadHitPoints && neutralizingShot == true ) { target.StatBase[ ST_CURRENT_HP ] = __DeadHitPoints + 1; } if( target.Stat[ ST_CURRENT_HP ] > __DeadHitPoints && target.Mode[ MODE_NO_KNOCK ] == 0 ) { isKo = true; isBelow = true; } else isDead = true; } }