Why isint it showing message? :O
PHP Code:
#include < amxmodx >
public plugin_init( ) {
register_event( "DeathMsg", "PlayerKilled", "a", "1>0" );
}
public PlayerKilled( ) {
new iKiller = read_data( 1 );
if( get_user_health( iKiller ) > 100 )
client_print( iKiller, print_chat, "Some Text" );
}