What's new
  • Visit Rebornbuddy
  • Visit Panda Profiles
  • Visit LLamamMagic
  • Visit Resources
  • Visit Downloads
  • Visit Portal
RebornBuddy Forums

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!

Clear Quest Log

Smarter

Member
Joined
Jan 15, 2010
Messages
763
A useful thing I just did to clear a quest log on a character using HBConsole Plugin:

Code:
WaitTimer timer = WaitTimer.OneSecond;
int i = 0;
while (i <= 50)
{
if (timer.IsFinished)
{
Lua.DoString("QuestLogFrameAbandonButton:Click();");
Lua.DoString("StaticPopup1Button1:Click();");
Log("Clicky Clicky" + i.ToString());
timer.Reset();
i++;
}
}

Your welcome. :-D
 
Back
Top