local _,_,_,_,_,_,_,_,_,completed = GetQuestInfo(X) with X being the number the quest is in your log, 1 being the first etc...it returns as true or false, and I believe it was backwards to what I thought it'd be, false for a complete quest and true for not yet completed.
|
PHP Source code
|
1
|
/script local _,_,_,_,_,_,_,_,_,completed = GetQuestInfo(1) if completed == true then DEFAULT_CHAT_FRAME:AddMessage("not complete") elseif completed == false then DEFAULT_CHAT_FRAME:AddMessage("complete") end
|
Something like that to show how it works
Not sure I've ever used it on dailies though, so don't know it still works for those.