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!

Request to add dialog/config option on Abandoning ALL quests?

jjhqtes55

New Member
Joined
Mar 8, 2015
Messages
85
I had skipped Cata, so I've been going back at 100 and finishing up the zones for Loremaster. I just noticed that the default behavior of a Kicks profile is to abandon EVERY SINGLE other quest in your log when you start Hyjal? :mad:

<CustomBehavior File="RunMacro"
Macro="/run for i=1,GetNumQuestLogEntries() do SelectQuestLogEntry(i); SetAbandonQuest(); AbandonQuest(); end" />

Lost all of my Inn quests and a lot more including some legendary questlines and all my #)$(*ing Abrogator Stones. Maybe a dialog or config option to confirm this for any character significantly above the zone's intended quest level?
 
I had skipped Cata, so I've been going back at 100 and finishing up the zones for Loremaster. I just noticed that the default behavior of a Kicks profile is to abandon EVERY SINGLE other quest in your log when you start Hyjal? :mad:

<CustomBehavior File="RunMacro"
Macro="/run for i=1,GetNumQuestLogEntries() do SelectQuestLogEntry(i); SetAbandonQuest(); AbandonQuest(); end" />

Lost all of my Inn quests and a lot more including some legendary questlines and all my #)$(*ing Abrogator Stones. Maybe a dialog or config option to confirm this for any character significantly above the zone's intended quest level?

Its not possible.

Maybe one solution is to only abandon grey and green quests which are incomplete:

PHP:
<!-- Abandon all Grey Quests which are Incomplete -->
<CustomBehavior File="RunMacro" Macro="/run for i=1,GetNumQuestLogEntries() do local _,l,_,_,_,iC,_,_,_,_,_,_,_,_ = GetQuestLogTitle(i) if not iC and GetQuestDifficultyColor(l)==QuestDifficultyColors['trivial'] then SelectQuestLogEntry(i) SetAbandonQuest() AbandonQuest() end end" WaitTime="5000" />

PHP:
<!-- Abandon all Green Quests which are Incomplete -->
<CustomBehavior File="RunMacro" Macro="/run for i=1,GetNumQuestLogEntries() do local _,l,_,_,_,iC,_,_,_,_,_,_,_,_ = GetQuestLogTitle(i) if not iC and GetQuestDifficultyColor(l)==QuestDifficultyColors['standard'] then SelectQuestLogEntry(i) SetAbandonQuest() AbandonQuest() end end" WaitTime="5000" />

But for Suggestions please use this Thread: https://www.thebuddyforum.com/honor...les/131188-kicks-1-100-mega-profile-pack.html
 
Last edited:
Or just to...not do it at all. Just a terrible idea all around, why you would ever mess with someone's quest log. I've never seen a Profile run with more than 3-4 at a time.
 
Update: Luckily, your Abrogator stone count is preserved even if the quest is abandoned. :p
 
Back
Top