View Single Post
07-19-16, 02:08 AM   #1
Voxxel
A Chromatic Dragonspawn
Join Date: Mar 2009
Posts: 193
Questcompletion macro

Hi,

Is there a way to print quest names only by providing quest ID numbers in a macro?

This would solve my space issues, I need to check 9-10 quests at once in a vertical list of quest names colored by completion:

Is that possible to modify this macro to remove manually added quest names and list it vertically?

Code:
/run local t,s={"Terrorfist",39288,"Vengeance",39290,"Deathtalon",39287,"Doomroller",39289},'' for i=1,#t-1,2 do s=s..(IsQuestFlaggedCompleted(t[i+1]) and '\124cffff0000' or '\124cff00ff00')..t[i]..'\124r, ' end print(s:sub(1,-3))
It would be even greater if I could mix it so where I want I could replace the stock quest names with manual text.

Are these options possible without using a macro extender addon?

Thanks in advance.
  Reply With Quote