Ever been questing and had to find all those usable quest items in your bags all the time, then this addon is for you. No longer will you have to keep your bags open to do daily bombing quests!
This addon will automatically create a dynamic buttonbar for all those usable quest items, it also checks if your equipped gear for usable quest items.
Command Line Parameters
/qb toggle
Toggles QBar being enabled or not
/qb scale <value>
Sets the scale of the buttons, default is 1.
/qb padding <value>
Configures the padding between the buttons, default is 1.
/qb tips
Determines if item tips are shown when you move your mouse over the buttons.
/qb vertical
Toggles between horizontal and vertical button bar
/qb lock
Toggles the button frame being locked, use this command to move the buttons around.
/qb clearignore
Clears the ignore list, and shows all items again. You can shift click an item to ignore it for the reminder of the session.
/qb bind
Use this command to set the key binding for the last item used, this is vital for all the dailies.
Lacking Features, Problems & Ideas
- Manage the update of keybinding, no need to unbind and rebind if it stays the same as before.
QBar Changes | 2008 May 01
- Added an "update throttle" to avoid lag when receiving several events at the same time.
- New slash command to lock and unlock the button frame. The border which used to show before is now only visible when unlocked. Use "/qb lock" to toggle the lock.
- You can now link items into chat as well as trying out the item in the dress up frame by using the normal modifier keys for those actions.
- Added back the "UNIT_INVENTORY_CHANGED" event, otherwise equipable items would not get removed from the button bar when you completed or abandoned the quest.
- Previously, not all quest items got included on the bar, this was due to some items not having the text "Quest Item" in the tooltip. Now it should properly include all items as one would expect.
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 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)...
- +0
- Thumbs Down
- Thumbs Up
CYPSYAN said"Gordawg's Boulder" is an item quest for "Shattering the Veil" in Nagrand wich is not detectec by Qbar
"Warmaul Ogre Banner" from ruthless cunning in nagrqnd too
"Kil'sorrow banner" et "Damp Woolen blanket " from same chain quest
- +0
- Thumbs Down
- Thumbs Up
CYPSYAN saidmissing some more quest item dont have the name here but seen it on an friends alt
- +0
- Thumbs Down
- Thumbs Up
CYPSYAN saidits doesnt take the children weeks quest item :p
- +0
- Thumbs Down
- Thumbs Up
Littledude saidLove the addon cept for not being able to lock it in place so i wrote this little sniplet to fix that. I am in no way a professional programmer, i just know enough to make things do little things that i want or need. Im sure this wasnt the best way to do it either but it does seem to work.
First thing i did was change a line to make qbar locked in place from the start:
You will find, under the heading Main:
f:SetMovable(1);
Just change the 1 to 0:
f:SetMovable(0);
And it will be locked in place.
Then scroll down till you find the heading Command Line.
You can copy and paste this in there between any of the / commands. They begin with --
-- Lock
elseif (param1 == "lock") then
AzMsg("Qbar is now |1"..(cfg.lock and "locked").."|r.");
f:SetMovable(0);
-- unlock
elseif (param1 == "unlock") then
AzMsg("Qbar is now |1"..(cfg.unlock and "unlocked").."|r.");
f:SetMovable(1);
Now use /qb unlock to be able to move it around to where you want it. Then use /lock to lock it in place
Like i said this is just an easy temp fix till Aezay does some real coding and puts a lock function in qbar him/her self.
Littledude
- +0
- Thumbs Down
- Thumbs Up
Aezay saidCYPSYAN, which usable quest item does not have the text "Quest Item" on the second line of the tip?
thegriff, that item is not usable.
- +0
- Thumbs Down
- Thumbs Up
CYPSYAN saiditems like Chrono Beacon from black morass...such a pain to add it in bar each time i run it...that but many item quest i got on my alts (i can remember names) i'll send you some example as sson as i got some on my alts
- +0
- Thumbs Down
- Thumbs Up
thegriff saidok thanks!
- +0
- Thumbs Down
- Thumbs Up
CYPSYAN saidit seems this addon check for item with "quest item" in tooltip but could you add a item database option we could filled ourself with item name coz lot of item quest dont have the "itel quest" tag in ther tooltip
- +0
- Thumbs Down
- Thumbs Up
thegriff saidI think I have found a quest item that didn't get picked up. I will upload a screen cap. I can verify that Qbar was enabled and working as it picked up the next quest items I received. No I had not set it on ignore or at least to the best of my knowledge I had not set it on ignore. screen cap and again here.
- +0
- Thumbs Down
- Thumbs Up
ChWolfgang saidThank for adding those options. I had another idea of something that would be nice. Could you please put in an option to turn off the border?
Thanks!!
Oh, and if possible be able to lock the position?
- +0
- Thumbs Down
- Thumbs Up
Aezay saidSpectre7, there is not a direct way to see which quest item belongs to which quest, so that request will most likely never happen. Maybe some shift click on a button to hide it would be a good alternative.
- +0
- Thumbs Down
- Thumbs Up
ChWolfgang saidFantastic Idea for an addon! Thank you. This may be a bit much, but would it be possible to add some other bar-type things? Scaling. Locking. Transparency. Switching the bar vertical. Reversing the order (the side it builds from). That kind of thing. (some of these have been said, so I second those)
Thanks again!
- +0
- Thumbs Down
- Thumbs Up
Spectre7 saidThis is a good addon one thing i'd like to see as well as the ones rlenny said would be that items are removed from the bar when you have completed the quest, like the objectives i mean not hand it in
Thx lol :D
- +0
- Thumbs Down
- Thumbs Up
Aezay saidrlenny, this addon has no options at the moment, so you aren't missing anything :P They are some good ideas, and I will add some at least, when I get some time.
- +0
- Thumbs Down
- Thumbs Up
rlenny saidHey,
Youve got a good thing goin, in the past i used a hidden bar with Trinity bars 2.0
Some ideas though (these may be implmented already and i just cant figure it out)
-Change the alpha of the bar
-Scale,Rezise
-Keybindable (very necessary for the bombing quests)
-Hidden till mouseover
-Filter for unwanted quest items on bar.
hehe im asking alot eh?