PHP Kod:
#include <amxmodx>
#define PLUGIN "KillSound"
#define VERSION "1.0"
#define AUTHOR "MR.MaRjiNaL"
public plugin_init()
{
register_plugin( PLUGIN, VERSION, AUTHOR );
register_event("DeathMsg", "eDeathMsg", "a", "1>0");
}
public eDeathMsg()
{
static id;
if((id = read_data(1)) == read_data(2))
return;
new sSound[64];
formatex(sSound, charsmax(sSound), "misc/female/f_godlike.wav");
client_cmd(id, "spk ^"%s^"", sSound);
}
)

