Enhancement: cheap Argus troops
Aspin-KT opened this issue ยท 1 comments
Please add tracking for the cheap Argus troops. The first quest each week is only 150 resources, vs. the 900 from the unlimited repeatable quests.
The quests are:
http://www.wowhead.com/quest=48910/supplying-krokuun
http://www.wowhead.com/quest=48911/void-inoculation
http://www.wowhead.com/quest=48912/supplying-the-antoran-campaign
I can add them manually to Quests.lua (line 106) with:
["cheapridgestalker"] = {name=L["Argus - Cheap Ridgestalker"], startNdx=1, endNdx=1, resetForm="weekly", checkStatus=checkQuestStatus, copyAccountWide=false, checkIDs={48910} },
["cheapvoidpurged"] = {name=L["Argus - Cheap Void-Purged"], startNdx=1, endNdx=1, resetForm="weekly", checkStatus=checkQuestStatus, copyAccountWide=false, checkIDs={48911} },
["cheaplightforged"] = {name=L["Argus - Cheap Lightforged"], startNdx=1, endNdx=1, resetForm="weekly", checkStatus=checkQuestStatus, copyAccountWide=false, checkIDs={48912} },
They don't appear in order or grouped together though, so there's probably some better way!