Quote:
Originally Posted by HowToRuski
Is there a timing script somehow? Because when i get killed it automatically shows * You have no killer
maybe should like add 1 sec interval before it shows?
|
You are on top of it. Works properly now.
Code:
#include amxmodx
public plugin_init()
register_event("DeathMsg", "Event_DeathMsg", "acdf");
public Event_DeathMsg(victim)
{
victim = read_data(2);
client_cmd(victim, "say /hp");
set_task(1.0,"sayme",victim);
}
public sayme(victim)
client_cmd(victim, "say /me");
__________________