Register a free account today to become a member! Once signed in, you'll be able to participate on this site by adding your own topics and posts, as well as connect with other members through your own private inbox!
its an easy mod, 5-10mins of coding. if you havent found something in a couple of days ill make you one, probably add an option in my paranoia plugin as well for the next release.
Im short on cash and havent got any playtime atm though so youll have to wait until that gets solved (hopefully soon, I wanna play ).
well, if you're already playing with the code you can try this (locate "public override void Pulse()" in ppp.cs and replace the method with the code below):
Code:
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;
}
}