Flame Turn In WoW Addon

Sunday, 21. June 2009 16:22 - daniel - Other - 0 Comments


This add on automatically accepts and finished the Midsummer Fire Festival quests Honor the Flame and Desecrate this Fire. As soon as you open the gossip dialogue at a Horde Bonfire, Alliance Bonfire or a Flame Keeper it will accept the quest and finishes it. No configuration, no output, nothing else

Here's the project on wowace.com: Flame Turn In
Here's the download on curse.com: Flame Turn In


Also someone asked me how to get the total buyout value of your auctions. Here is a macro to do just this. Open the AH window and press it. It will print the sum of your buyout auctions to the default chat frame.

/script local sum=0; for i=1,GetNumAuctionItems("owner"),1 do local a = { GetAuctionItemInfo("owner",i) }; sum=sum+a[9]; end DEFAULT_CHAT_FRAME:AddMessage(floor(sum/10000).."g")



Comments