Hey guys,
Figured i'd share this for those who don't know about it - I found when using RAF that I'd always get a ton of grey quests and it was a pain in the rear to go through and remove them all one by one.
So, here's a macro which will automatically remove ALL grey quests in your log without confirmation. Simply paste it in your game chat or set it up as a button.
Figured i'd share this for those who don't know about it - I found when using RAF that I'd always get a ton of grey quests and it was a pain in the rear to go through and remove them all one by one.
So, here's a macro which will automatically remove ALL grey quests in your log without confirmation. Simply paste it in your game chat or set it up as a button.
Code:
/run for i=1,GetNumQuestLogEntries()do local t,l,_,_,h=GetQuestLogTitle(i)if not h and GetQuestDifficultyColor(l)==QuestDifficultyColors["trivial"]then SelectQuestLogEntry(i)SetAbandonQuest()AbandonQuest()end end