View Single Post
03-11-13, 02:06 PM   #14
Nihlo
A Murloc Raider
Join Date: Apr 2008
Posts: 7
Hi Guys, I'd like to create a macro which checks all 4 World Bosses. Something like:

Code:
/run print("Galleon: "..(GetQuestsCompleted()[32098] and "Yes" or "No"))
/run print("Sha: "..(GetQuestsCompleted()[32099] and "Yes" or "No")) 
/run print("Nalak: "..(GetQuestsCompleted()[32518] and "Yes" or "No"))
/run print("Oondasta: "..(GetQuestsCompleted()[32519] and "Yes" or "No"))
It works but I run out of Characters although that's the shortest version of quest-checking I found. Is there a way to check multiple quests with different output ?

I made a max-short ugly version:
Code:
/run print("G:"..(GetQuestsCompleted()[32098] and "Y" or "N"))
/run print("S:"..(GetQuestsCompleted()[32099] and "Y" or "N")) 
/run print("O:"..(GetQuestsCompleted()[32519] and "Y" or "N")) 
/run print("N:"..(GetQuestsCompleted()[32519] and "Y" or "N"))

Last edited by Nihlo : 03-11-13 at 02:15 PM.
  Reply With Quote