Calendar

<<February>>
MoTuWeThFrSaSu
1234567
891011121314
15161718192021
22232425262728

Craft DB WoW Addon

Sun, 11 Oct 2009 14:10 - Daniel - Other - Comments (0)




Craft DB keeps track of crafter on your server. Whenever you open a profession link, the skills and the name of the crafter will be saved and can be displayed when needed. If you are looking for that Blade Ward enchant and can't remember who has the recipe, you can use CraftDB to look who has it.



Craft DB will display names in different colors if they are online, offline, in your guild, on your friendlist or just some random guy who posted his profession into the trade channel

As soon as you open a profession window (either your own, or from a link), Craft DB will scan all the available recipes and saves them and the name of the person for later use.

Craft DB provides a LibDataBroker launcher to open the windows. If you don't have a LibDataBroker display addon installed, you can use /craftdb or /cdb to open Craft DB.

When you enter something into the search box, Craft DB will perform a search on the currently selected profession and only displays the matching spell names.

Here's the project on wowace.com: Craft DB
Here's the download on curse.com: Craft DB


Tags: curse wow world of warcraft wow addon lua ace wowace



Flame Turn In WoW Addon

Sun, 21 Jun 2009 19:22 - Daniel - Other - Comments (0)


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")



Tags: curse wow world of warcraft wow addon macro lua ace wowace



Perfect Screenshot WoW Addon

Tue, 05 May 2009 13:26 - Daniel - Other - Comments (0)


Perfect Screenshot is an addon for World of Warcraft to automatically set some graphic options prior to taking a screenshot. It disables viewports (like aperture), hides the UI and adjusts name display settings. After the screenshot has been taken everything is restored to the previous settings.

I wrote it because I didn't like to disable aperture, hide my UI, display all names etc. prior to taking a killshot (or any screenshot that is). Also, I wanted to try a bit of lua coding. Perfect Screenshot also uses Ace-3.0 for config, saved variables, profiles, etc.

Here's the project on wowace.com: Perfect Screenshot
Here's the download on curse.com: Perfect Screenshot



Tags: wow world of warcraft wow addon perfect screenshot lua ace wowace