View Single Post
09-02-18, 02:30 AM   #3
Spawnova
A Warpwood Thunder Caller
 
Spawnova's Avatar
AddOn Author - Click to view addons
Join Date: Aug 2012
Posts: 96
Thank you, I've found a solution with the information provided.

Code:
GetQuestsCompleted(quests1) --before killing rare
GetQuestsCompleted(quests2) --then I call this after killing the rare
table.foreach(quests2,function(k,v)
   if not quests1[k] then
      print(k .. " is new")
   end
end)
  Reply With Quote