• World of Warcraft Addons
  • World of Warcraft
  • Average Rating:

  • Your Rating

  • Share
  • Report Abuse

RepeatableQuestHelper

 

Project Updated:
Files Updated: Mon, Aug 17 2009
Supports Game Version: 3.2.0
Category: Quests & Leveling
Tags:

[Edit Tags]

Project Manager: alexwild
Additional Authors: No additional authors
Current Version: RepeatableQuestHelper-0.11
License: All Rights Reserved
Development Site: CurseForge
Avg Daily DL (last 30 days): 162
Downloads Total: 49,156
Favorites: 59
Comments: 20
  • About RepeatableQuestHelper
  •  

RepeatableQuestHelper is an addon which makes it easier to accept and complete repeatable Quests like Dailies and others.

The first intention was to make an addon which helps to turn in items like Marks of Sargeras and reduces the several numbers of mouseclicks to a single click on the NPC.
Now this addon is able to automatically accept repeatable quests like dailies with a single click on the NPC.
After the quest is done, it also automatically completes the quest with a single click on the NPC.

Not all repeatable Quests are supported at the moment.
Every supported Quest is deactivatable, so it will not automatically be accepted or completed.

Some of the supported Quests

  • Shattered Sun Offensive
  • Netherwing
  • Ogri'la
  • Sha'tari Skyguards
  • Wintersaber Trainers
  • Timermaw Hold
  • Sporeggar
  • and more

Command
/repeatablequesthelper or /rqh to open the optionpanel.

  • Downloads (7)
  •  
File Name Release Type Game Version Downloads Date
Addon Curse.com Beta 2.3.3 0 9/29/2008
  File Name Release Type Game Version Downloads Date  
  RepeatableQuestHelper-0.11 Release 3.2.0 19,364 8/17/2009
  RepeatableQuestHelper-0.10 Release 3.1.0 18,509 5/4/2009
  RepeatableQuestHelper-0.9 Release 3.0.8 5,528 4/13/2009
  RepeatableQuestHelper 0.8 Release 3.0.8 91 4/11/2009
  RepeatableQuestHelper 0.7 Release 3.0.3 1,327 11/7/2008
  • Screenshots (3)
  •  
  • Comments

Add Comment  

Add

You need to login or register to post.

Benefits of Registration

  • Interact with hundreds of thousands of other gamers on an open social network.
  • Post your stories, news, images, videos, and other content to share.
  • Create a network with your fellow gamers or join an existing one.
  • Gain reputation for everything you do.
  • otis147 said 

    Does this work for AV armor scraps and the gallon of blood quest?

    Reply Report Permalink
  • Skyfawn said 

    Please update this great addon to include the Dalaran cooking and fishing quests.

    Reply Report Permalink
  • sammler said 

    is there any chance this will work on localized clients?
    if necessary i can help localizing for the german client.

    Reply Report Permalink
  • Skyfawn said 

    Great addon but for some reason it keeps accepting "Shrimpin aint easy" even though i only have Crocolisks checked

    Reply Report Permalink
  • tomiboy said 

    Pleeeeeeeeease please please make this compatable with the For Great Honor quest ASAP, turning this in is giving me carpel tunnel and I prefer this addon over others! :)

    Reply Report Permalink
  • Thanks for the update

    Reply Report Permalink
  • khime said 

    Latest version still thinks "Oshu'gun Crystal Powder" is a Neutral quest; there are different turn-in NPCs for Horde and Alliance.

    Also, it keeps auto-accepting all fishing dailies from Old Man Barlo, even though I only have Crocolisks in the City checked.

    Reply Report Permalink
  • zhadoom said 

    Changing line 208 in RepeatableQuestHelper from
    if (questtitle == value) then
    to
    if (questtitle == value) and (questtitle==quest.name) then
    to address old man barlo issue

    Reply Report Permalink
  • Please update for Argent Tournament dailies.

    Reply Report Permalink
  • khime said 

    "Oshu'gun Crystal Powder" is listed as a neutral quest turn-in for Nagrand to the NPC Chief Researcher Kartos. This is actually Alliance-only; the Horde turn this in to Chief Researcher Amereldine when we control Halaa.

    Also, it is 10 per turn-in, even though the item text still says 20.

    Reply Report Permalink
  • seganku said 

    AutoTurnin works very well for this purpose http://wow.curse.com/downloads/wow-addons/details/auto-turnin.aspx

    Reply Report Permalink
  • seganku said 

    .. but this addon appears to have more granular config options

    Reply Report Permalink
  • After installing this add-on, via Curse, the only option I am getting when going either /rqh, or going into Interface->AddOn->RepeatableQuestHelper is to enable addon, none of the otehr fancy screens as mentioned above, what am I doing wrong? (I am trying to do "Gaining Acceptance" from Master Smith Burninate - about 225 times, as I have the Dark Iron Residue to get my rep to Honoured)

    Reply Report Permalink
  • If you're feeling bold, you can add quests to the database yourself as a temporary fix. Here's how I added the Sons of Hodir repeatable quest:

    Files modified:
    RQH Folder / localization / localization.en.lua
    RQH Folder / data / itemdata.lua
    RQH Folder / data / npcdata.lua
    RQH Folder / data / questdata.lua

    RQH Folder / localization / localization.en.lua
    ---------------------------------------
    Into the NPC section, after the final line, add:
    LILLEHOFF = "Lillehoff",

    Into the QUEST section, after the final line, add:
    HODIRSTRIBUTE = "Hodir's Tribute",

    Into the FACTION section, after the final line, add:
    SONSOFHODIR = "Sons of Hodir",

    Into the ITEM section, after the final line, add:
    RELICOFULDUAR = "Relic of Ulduar",

    Into the LOCATION section, after the final line, add:
    STORMPEAKS = "The Storm Peaks",

    ------------------
    RQH Folder / data / itemdata.lua
    ---------------------------------
    Add this entry directly after the final entry (at the bottom of the file)
    (Be careful not to add it after the final '}' add it after the '},' after the last entry and before the final '}' )

    RELICOFULDUAR = {

    name = REPEATABLEQUESTHELPER_LANG.ITEM.RELICOFULDUAR,

    id = 42780,

    },

    ----------------------------
    RQH Folder / data / npcdata.lua
    --------------------------------
    Add this entry after the last entry:
    {

    name = REPEATABLEQUESTHELPER_LANG.NPC.LILLEHOFF,

    location = REPEATABLEQUESTHELPER_LANG.LOCATION.STORMPEAKS,

    quests = {

    HODIRSTRIBUTE = {

    quest = REPEATABLEQUESTHELPER_QUEST.HODIRSTRIBUTE,

    }, -- [1]

    },

    }, -- [83]

    -----------------------
    RQH Folder / data / questdata.lua
    ----------------------------------
    Finally, the thing that brings them all together, add this entry after the last entry:

    HODIRSTRIBUTE = {

    name = REPEATABLEQUESTHELPER_LANG.QUEST.HODIRSTRIBUTE,

    type = "AutoTurnIn",

    items = {

    {

    item = REPEATABLEQUESTHELPER_ITEM.RELICOFULDUAR,

    amount = 10,

    },

    },

    factions = {

    {

    name = REPEATABLEQUESTHELPER_LANG.FACTION.SONSOFHODIR,

    reputation = 250,

    minreputation = 0,

    maxreputation = 42999,

    }, -- [1]

    },

    reward = 0,

    },

    -------------------------------
    The only thing that you would really have to look up outside of the game to add your own repeatable quest is the item ID. To get "42780", I went to www.wowhead.com and searched for "Relic of Ulduar" and looked at the URL: http://www.wowhead.com/?item=42780

    I hope this helps.

    Reply Report Permalink
  • Draemon said 

    WTB update for Icecrown & Storm Peaks daily quests, plz & ty.

    Reply Report Permalink
  • Necobear said 

    don't wanna seem needy, but I just returned 700 armor scraps and my wrist hurts :/. mind hooking the AV repeatables up to Horde as well please :)

    Reply Report Permalink
  • Necobear said 

    Seems it does not work for horde in Alterac Valley. haven't tried it out as horde in other places. but I only need it in AV so :/ plix fix fix ;)

    Thanks

    Reply Report Permalink
  • Kerecha said 

    Working nicely, most of the time.

    The wintersaber meat quest is buggy, when i click NPV to complete it the following error(s) popps:

    [2008/10/10 19:11:31-3186-x4]: RepeatableQuestHelper-0.5\RepeatableQuestHelper.lua:232: attempt to index field 'item' (a nil value)
    RepeatableQuestHelper-0.5\RepeatableQuestHelper.lua:189: in function `AcceptQuest'
    RepeatableQuestHelper-0.5\RepeatableQuestHelper.lua:50: in function `?'
    CallbackHandler-1.0\CallbackHandler-1.0.lua:146: in function <...edia-3.0\CallbackHandler-1.0\CallbackHandler-1.0.lua:146>
    :"safecall Dispatcher[1]":4: in function <[string "safecall Dispatcher[1]"]:4>
    : ?
    :"safecall Dispatcher[1]":13: in function `?'
    CallbackHandler-1.0\CallbackHandler-1.0.lua:91: in function `Fire'
    AceEvent-3.0\AceEvent-3.0.lua:70: in function

    ---

    [2008/10/10 19:11:45-3186-x2]: RepeatableQuestHelper-0.5\RepeatableQuestHelper.lua:232: attempt to index field 'item' (a nil value)
    RepeatableQuestHelper-0.5\RepeatableQuestHelper.lua:189: in function `AcceptQuest'
    RepeatableQuestHelper-0.5\RepeatableQuestHelper.lua:83: in function `?'
    CallbackHandler-1.0\CallbackHandler-1.0.lua:146: in function <...edia-3.0\CallbackHandler-1.0\CallbackHandler-1.0.lua:146>
    :"safecall Dispatcher[1]":4: in function <[string "safecall Dispatcher[1]"]:4>
    : ?
    :"safecall Dispatcher[1]":13: in function `?'
    CallbackHandler-1.0\CallbackHandler-1.0.lua:91: in function `Fire'
    AceEvent-3.0\AceEvent-3.0.lua:70: in function

    ---


    After klicking the quest however it completes it without further klicking (have to do that every time thou).

    Reply Report Permalink
  • kolaf said 

    Great addon, only hiccup is when turning in Signets or Marks it picks the (1) mark/signet instead of the 10 stack, so it can take forever to turn in 50 marks lol

    Reply Report Permalink
  • CYPSYAN said 

    i have one bugs : the dailie on quel danas (the one where you give gold to get rep), the addon accept the quest but doesnt automaticaly complet it

    and it would be great to add both dailies from brewfest
    keep the good work

    Reply Report Permalink
  • Similar Addons
  •  

Average downloads per day

  1. 61,955 QuestHelper Quests & Leveling, and Map...
  2. 1,402 Altoholic Guild, Bags & Inventory, Mail...
  3. 1,188 Armory Bags & Inventory, Achievements...
  4. 863 Group Calendar 5 Guild, Boss Encounters, Quests...
  5. 724 Cartographer_QuestInfo Map & Minimap, and Quests...