• Visit Rebornbuddy
  • Visit Panda Profiles
  • Visit LLamamMagic
  • Request to add dialog/config option on Abandoning ALL quests?

    Discussion in 'Requests & Discussion' started by jjhqtes55, Apr 12, 2015.

    1. jjhqtes55

      jjhqtes55 New Member

      Joined:
      Mar 8, 2015
      Messages:
      85
      Likes Received:
      1
      Trophy Points:
      0
      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?
       
    2. MaxMuster

      MaxMuster Well-Known Member Buddy Store Developer

      Joined:
      Jan 30, 2012
      Messages:
      1,735
      Likes Received:
      30
      Trophy Points:
      48
      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: Apr 12, 2015
    3. jjhqtes55

      jjhqtes55 New Member

      Joined:
      Mar 8, 2015
      Messages:
      85
      Likes Received:
      1
      Trophy Points:
      0
      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.
       
    4. jjhqtes55

      jjhqtes55 New Member

      Joined:
      Mar 8, 2015
      Messages:
      85
      Likes Received:
      1
      Trophy Points:
      0
      Update: Luckily, your Abrogator stone count is preserved even if the quest is abandoned. :p
       

    Share This Page