Quest Status Announce to Party
Description: This helps with the tedious back and forth chat of asking and announcing how many of each items you have left to collect. It reports the status of your currently highlighted quest to your party. No more typing, "I need 6 more of this, 4 more of that, and 3 of the other".
How to use: Bind to key, or put in a macro.
-- Announce the status of your quest items to your party
t={}
i=GetNumQuestLeaderBoards()
for j=1,i,1 do
a1,a2,a3=GetQuestLogLeaderBoard(j)
tinsert(t,a1)
end
SendChatMessage(table.concat(t,', '),"PARTY")