PHP Code:
public EventDeathMsgHeGrenade()
{
static iKiller, iVictim
iKiller = read_data( 1 )
iVictim = read_data( 2 )
if( iKiller != iVictim )
{
client_print( iKiller, print_center, "Since You killed the enemy with the HE\nYou add 25 to health" )
set_user_health( iKiller, get_user_health( iKiller ) + 25 )
}
}