Macro for sharing "... Must Die!" quests
Hello there,
I've been playing around with some macros recently and had the idea to create a macro for sharing the weekly "... Must Die!" quests.
After just a little bit of research, I came up with this solution:
Code:
/run local i = 0; while (i < GetNumQuestLogEntries()) do local t, l, tag, h = GetQuestLogTitle(i); if (t ~= nil and string.find(t, "Must Die")) then SelectQuestLogEntry(i); QuestLogPushQuest(); return; end i = i + 1;end
I've been testing it with the "Lord Marrowgar Must Die!" quest but it should be working for any other weekly as well.
Important site note: This macro does share any quest in your quest log which contains "Must Die" in it's quest title. If you do have multiple quests that fulfill this requirement, unpredictable results may happen.