View Single Post
06-01-15, 06:04 AM   #1
Voxxel
A Chromatic Dragonspawn
Join Date: Mar 2009
Posts: 193
Post Formatting help needed

Hey there,

I have a macro for checking some quests if they're already completed

Code:
/run local t={"quest00",33170,"quest01",33171,"quest02",33172,"quest03",33173,"quest04",33174}for i=1,#t-1,2 do print(t[i],IsQuestFlaggedCompleted(t[i+1])and "\124cffff0000Yes" or "\124cff00ff00No")end
It prints out the quest names + Yes or No (in color codes that shows the completion) aligned underneath each other.
I need to turn this macro to print the result like this:

quest01, quest02, quest03, quest04

.. next to each other not underneath and without the yes/no result. Is it possible somehow?

Thanks for any help!

Last edited by Voxxel : 06-01-15 at 06:24 AM.
  Reply With Quote