Never Tested But Should Work....
PHP Code:
#include <amxmodx>
#include <amxmisc>
#define PLUGIN "After Died Hud Message"
#define VERSION "1.0"
#define AUTHOR "[ZOF 'X]"
public plugin_init()
{
register_plugin(PLUGIN, VERSION, AUTHOR);
register_event("DeathMsg", "Event_Dead", "a");
}
public Event_Dead()
{
new iVictim = read_data(2);
set_task(2.0, "HUD_MSG", iVictim);
}
public HUD_MSG(id)
{
set_hudmessage(0, 255, 0, -1.0, 0.80, 0, 4.0, 12.0);
show_hudmessage(id, "Your Message Here");
}
__________________