Kod:
#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), "buttons/bell1.wav");
client_cmd(id, "spk ^"%s^"", sSound);
})



