Oh yes sorry i forget it :S
Thanks
It's work fine. Thanks a lot Veco !
If anyone want it :
PHP Code:
#include < amxmodx >
#include < hamsandwich >
public plugin_init( )
{
register_plugin( "Who kill who ?" , "1.0" , "Aooka" );
RegisterHam( Ham_Killed , "player" , "Fw_HamKilled" , true );
}
public Fw_HamKilled( victim , attacker , souldgib )
{
SetHamParamInteger( 3 , 2 );
new szVictim[ 36 ] , szAttacker[ 36 ];
get_user_name( victim , szVictim , charsmax( szVictim ) );
get_user_name( attacker , szAttacker , charsmax( szAttacker ) );
client_print( victim , print_center , "You ha been killed by %s" , szAttacker );
client_print( attacker , print_center , "You kill %s" , szVictim );
}
__________________