Baldrick adds a button to your interface which automatically picks the best daily quest item to use based on all the information it can gather (location, status of the quest, etc).
Usage & Commands
The chat command is /baldrick or /br, however it's easier to configure from WoW's Interface->Addons configuration dialog.
Some options can only be set by using WoW's Interface->Addons dialog. These include the profile.
Baldrick supports ButtonFacade, use /bf to configure the skin and color settings for the button if you have it installed.
Baldrick supports LibKeyBound, use /kb to enter key binding mode.
Baldrick's button will stick to other frames that support LibStickyFrames
Baldrick outputs the current item it will use using LibDataBroker-1.1. Note that clicking on the item in a Broker addon will not activate the item. You must have Baldrick bound to a key to use it in a Broker addon and hide its own button.
Localisations
Many thanks to thrillseeker for the deDE localisation. :)
Quest Quirks
- To tell Baldrick you want to cook for Super Hot Stew, you need to target a dead Abyssal Flamebringer.
- To tell Baldrick you want to free some murlocks for Disrupt the Greengill Coast, you need to target a live Greengill Slave.
Handy Outfitter Scripts
A handy script for Outfitter to automatically equip and unequip your Multiphase Spectrographic Goggles is:
-- $EVENTS ZONE_CHANGED_INDOORS ZONE_CHANGED ZONE_CHANGED_NEW_AREA QUEST_LOG_UPDATE
-- $DESC Equips the outfit when you are in one of the zones or minimap sub-zones listed below and "The Multiphase Survey" is not already complete
-- $SETTING zoneList={Type="ZoneList", Label="Zones"}
-- $SETTING minimapZoneList={Type="ZoneList", ZoneType="MinimapZone", Label="Minimap zones"}
local currentZone = GetZoneText()
local Baldrick = Baldrick
for _, zoneName in ipairs(setting.zoneList) do
if zoneName == currentZone then
equip = ( Baldrick ~= nil ) and Baldrick.HasQuestAndNotComplete( 11880 )
break
end
end
if not equip then
currentZone = GetMinimapZoneText()
for _, zoneName in ipairs(setting.minimapZoneList) do
if zoneName == currentZone then
equip = ( Baldrick ~= nil ) and Baldrick.HasQuestAndNotComplete( 11880 )
break
end
end
end
if didEquip and equip == nil then
equip = false
end
Just set Minimap zones to be either just the localized name for "Spirit Fields" or that and "Nagrand" depending on your preference.
API to add a quest module
Baldrick includes a quest module for daily quests. An API is exposed to add new quest modules.
Baldrick:RegisterQuestModule( moduleName, questList, checkLoadFunc )
This function allows for the registration of a quest module.
Args
- "moduleName" : string - the name of your module, presented to the user on Baldrick's configuration screen
- questList : table of questInfos - see below for definition of a [[#questInfo]]
- [checkLoadFunc] : function - a function, that returns a boolean, to call to check if the module should be added to the list of quests
Example
Baldrick:RegisterQuestModule( "Daily Quests", dailyQuestList )
questInfo
A questInfo is a table of values which describe a quest.
These are the availiable fields; required fields are in bold:
- questIDs: Either a number with a questID or a table of numbers with questIDs.
- questItems: A table of items required for the quest. The one with an index of default is what will show on the button. The fields for items are:
- questItem: the itemID of the item
- questItemCount: the MINIMUM number required (the comparison will be >= )
- subZones: A string of subzones/zones this quest is valid for. Zone names will be checked if in a null subzone. Separate entries with |.
- target: String that has the name of a mob that must be the current target, in the player's locale.
- addionalEvents: Either a string with the name of an additional event that this quest should be checked when fired, or a table of strings with names. In addition to the WoW events, mounting and dismounting can be checked by using !Mounted and !Dismounted respectively.
- func: A function that takes two parameters. The first parameter is the quest data iself, the second parameter will hold the questID being used. If used this function must return a boolean, true if this quest is valid to show on the button.
Example
{
--Distraction at the Dead Scar
--The Air Strikes Must Continue
questIDs = { 11532, 11533, },
--Arcane Charges
questItems = { default = { questItem = 34475, questItemCount = 1, }, },
subZones = L["The Dead Scar"],
additionalEvents = { "PLAYER_CONTROL_LOST", "PLAYER_CONTROL_GAINED", "TAXIMAP_CLOSED" },
func = function() return UnitOnTaxi( "player" ) end,
},
Future Plans
- Possibly integration into quest addons?
Official Thread
------------------------------------------------------------------------
r135 | lordfarlander | 2009-09-28 17:52:22 +0000 (Mon, 28 Sep 2009) | 1 line
Changed paths:
A /tags/1.6.135-beta (from /trunk:134)
Tagging as 1.6.135-beta
------------------------------------------------------------------------
r134 | lordfarlander | 2009-09-28 17:48:50 +0000 (Mon, 28 Sep 2009) | 2 lines
Changed paths:
M /trunk/Baldrick.toc
Baldrick:
- TOC Version update
------------------------------------------------------------------------
r131 | LordFarlander | 2009-09-12 00:21:09 +0000 (Sat, 12 Sep 2009) | 2 lines
Changed paths:
M /trunk/Baldrick.lua
M /trunk/Baldrick_DailyQuests.lua
M /trunk/locals/localisation.lua
Baldrick:
- Updates for quests again
------------------------------------------------------------------------
Installation Guide
- Exit "World of Warcraft" completely
- Download the mod you want to install
- Make a folder on your desktop called "My Mods"
- Save the .zip/.rar files to this folder.
- If, when you try to download the file, it automatically "opens" it... you need to RIGHT click on the link and "save as..." or "Save Target As".
- Extract the file - commonly known as 'unzipping'
Do this ONE FILE AT A TIME!
- Windows
- Windows XP has a built in ZIP extractor. Double click on the file to open it, inside should be the file or folders needed. Copy these outside to the "My Mods" folder.
- WinRAR: Right click the file, select "Extract Here"
- WinZip: You MUST make sure the option to "Use Folder Names" is CHECKED or it will just extract the files and not make the proper folders how the Authors designed
- Mac Users
- StuffitExpander: Double click the archive to extract it to a folder in the current directory.
- Verify your WoW Installation Path
That is where you are running WoW from and THAT is where you need to install your mods.
- Move to the Addon folder
- Open your World of Warcraft folder. (default is C:\Program Files\World of Warcraft\)
- Go into the "Interface" folder.
- Go into the "AddOns" folder.
- In a new window, open the "My Mods" folder.
- The "My Mods" folder should have the "Addonname" folder in it.
- Move the "Addonname" folder into the "AddOns" folder
- Start World of Warcraft
- Make sure AddOns are installed
- Log in
- At the Character Select screen, look in lower left corner for the "addons" button.
- If button is there: make sure all the mods you installed are listed and make sure "load out of date addons" is checked.
- If the button is NOT there: means you did not install the addons properly. Look at the above screenshots. Try repeating the steps or getting someone who knows more about computers than you do to help.
Translations
When you download a mod, please be sure that the mod is compatible with your translation of wow. Some mods only work on the US versions, while some only work on some of the various European versions. These variations are called "Localizations".
TOC Numbers (Out of Date Mods)
When Blizzard patches WoW, they change the Interface number. This means that all mods will be "out of date" unless or until the author releases a new version for that interface. Some people go into the .toc files and update the numbers themselves, but this is STRONGLY advised against as it will cause problems locating possible incompatibilities addons. When you log into WoW after a patch, you DO NOT have to delete your interface directory. All you have to do is simply tell WoW to ignore the interface numbers and load all the mods anyway. All you have to do is, while at the "character select" screen, look in the lower left corner and click on the "addons" button. A window will pop up listing all your installed mods.
If you look in the upper left corner of that window there should be a box that says "Load Out of Date AddOns". You want to CHECK this box. Now simply go into WoW normally and all your mods should load. As of the 1.9 patch, you will have to do this after EVERY patch/update that Blizzard posts! If you encounter any problems with a mod after a patch, please be sure to let the author of the mod know so they can fix it.
See also: About "Out Of Date AddOns"
Mac Support
WoW addons are not platformed based. As such, they can be used on either Mac or PC. You can extract both .zip and .rar files on a Mac using StuffitExpander.
Directory Structure
World of Warcraft
|_ Interface
|_AddOns
|_*AddonName*
|_ *AddonName*.toc
|_ *AddonName*.xml
|_ *AddonName*.lua
|_ (possibly others as well)...