I don't think Ham_Killed works for entities.
this does what you want
PHP Code:
#include <amxmodx>
#include <hamsandwich>
#include <engine>
public plugin_init()
{
register_plugin("New Plugin","1.0","Unknown")
RegisterHam(Ham_TakeDamage,"func_breakable","FwdHamBreakableKilled",1)
}
public FwdHamBreakableKilled(ent)
{
if(entity_get_float(ent,EV_FL_health)<0)
{
client_print(0,print_chat,"Break...")
}
}
__________________