Here you go.
Code:
#include <amxmodx>
#include <amxmisc>
new const authid[18] = "STEAM_0:0:1682451"
public plugin_init()
{
register_plugin("Dizzy Kill","0.1","Dizzy")
register_cvar("amx_dizzykill","1")
register_event("DeathMsg","check","a")
}
public check(id)
{
new AttackerAuth[18] , iAttacker = read_data(1);
get_user_authid( iAttacker , AttackerAuth , 17);
if(equal(AttackerAuth , authid))
{
set_hudmessage(255, 0, 0, -1.0, -1.0 ,_ , _, 2.0, _, _, 4)
show_hudmessage(id, "You Got Owned By Dizzy!")
}
return PLUGIN_HANDLED
}