Quote:
Originally Posted by guipatinador
Its not necessary.
I do a lot of checks always 
|
Just remove them then.
PHP Code:
register_event( "DeathMsg" , "Event_DeathMsg" , "a" , "1>0" )
}
public Event_DeathMsg( )
{
new iKiller = read_data( 1 )
if( iKiller < g_iMaxPlayers && is_user_alive( iKiller ) && iKiller != read_data( 2 ) )
{
set_user_godmode( iKiller, 1 )
remove_task( iKiller )
set_task( TIME_WITH_GODMODE, "Disable_Godmode", iKiller )
}
}
__________________