View Single Post
psychonic

BAFFLED
Join Date: May 2008
Old 12-08-2009 , 15:32   Re: [TF2] Autorespawn for Admins
Reply With Quote #3

Quote:
Originally Posted by Chefe View Post
When you are a Spy with the Deadringer, the Autorespawner is Disabled for you, because you will respawn when it was a fake death, too.
You can check for feign death by looking at the death_flags property on the player_death event.

PHP Code:
new death_flags GetEventInt(event"death_flags");
if (!(
death_flags 32))
{
    
// real kill

psychonic is offline