I know that plugin but this one stops every time tooi need only sound notification ^^
private bool played_sound = false;
public override void Pulse()
{
if (!Styx.StyxWoW.IsInWorld)
return;
if (playersNear(true))
{
if (!played_sound)
{
SndPlayer.Beep();
played_sound = true;
}
}
else
{
if(played_sound)
played_sound = false;
}
}