This project is abandoned and its default file will likely not work with the most recent version of World of Warcraft. Whether this project is out of date or its author has marked it as abandoned, this project is no longer maintained.
Tabs are getting a persistant increase in size whenever I click on them. Also, my default bags are opening as well as the addon, but trying to close the default bags just brings up the addon.
I found a fix for it. It's not perfect, as the tabs no longer resize to fit the bag window, but it stops the size increase.
In the Bags_UI folder, open FBoH_ViewTabTemplate.lua.
Find the line
PanelTemplates_TabResize(self,10);
change it to
--PanelTemplates_TabResize(self,10);
There's a bit of lag when you're swapping bags, but not enough to become a major issue and it may have something to do with sorting as opposed to this being commented out.
So the question now is, is this addon still in active development or has feithar dropped it?
The easiest fix is just to change your Key Bindings...simply unbind the "Open All Bags" and set the "Open Backpack" to "B". Problem fixed. I tested it on several machines and accounts, works fine.
Alright gents. For those of you annoyed with the tooltip addition of how many hearthstones you have in all your other characters' bags, here's how to remove it!
1. In the World of Warcraft/Interface/Addons/FbagofHolding find FbagofHolding.lua 2. Make a backup copy of this file. 3. Open the original file in a text editor and search for this section of code:
function _GetItemCounts(self, itemLink) local itemKey = self.items:GetItemKey(itemLink); local realm = GetRealmName();
local results = self.items:FindItems(self:GetFilter("And").filter, f);
local rVal = {};
local counters = {}; local resultCount = 0; local totalCount = 0; for _, data in ipairs(results) do counters[data.character] = counters[data.character] or {}; counters[data.character][data.bagType] = counters[data.character][data.bagType] or 0; counters[data.character][data.bagType] = counters[data.character][data.bagType] + data.itemCount; end
for cName, cData in pairs(counters) do local str = cName .. ":"; local subCounters = {}; for bType, cnt in pairs(cData) do table.insert(subCounters, " [" .. bType .. ": " .. cnt .. "]"); resultCount = resultCount + 1; totalCount = totalCount + cnt; end table.sort(subCounters); for _, v in ipairs(subCounters) do str = str .. v; end table.insert(rVal, str); end
if resultCount > 1 then table.sort(rVal); table.insert(rVal, "Total: " .. totalCount); end
return rVal; end
4. Remove the "guts" of the function so that when you're done, it looks like this:
I have some "ghost"-items in my bank, on various characters. They dont exist in my bank, but FBoH displays them. They cant me move or deleted. This problem persists now for many weeks, and the number of ghost-items grows from week to week.
I have the same issue. I can't reproduce it reliably, though. However: When I switch a bag from my bank to the char (like the angling bag), I get double icons... sometimes. Seems to happen more often, when the FBoH-Window is closed. When I then close the bank and switch my bags inbetween the slots of my char several times, the ghost-icons disappear again.
New Bug: If you switch bags from one slot to another, the addon doesn't clean up properly. It leaves duplicate images of some items in the display that have no tooltip and cannot be moved.
Nevermind. Problem is there, but I'm having problems reproducing the bug. I was also trying to replace an old bag in my bag bar from one in my inventory, but I can't seem to reproduce it that way either. The junk data was cleared with a /reloadui.
I'd really like to know how to remove the total count tooltip. I don't really need to know that there is 1 hearthstone on each of my characters. It even lists some characters that don't exist anymore.
Try downloading it again. Seems that the Curse packager didn't want to build the package correctly, but it seems to have built it correctly the second time through. Strangely enough, the file always downloaded correctly from the WoWAce site, so it's not the file itself that was bad - just the link from Curse. :-(
Just posted a fix (which should be up in a few minutes) that should fix both off the issues reported by Zettek72 and frsty13. Let me know if that doesn't do the trick! :-)
Hey, thanks a lot for so quickly taking care of this. However, the download .zip-file seems to be empty. Installing via curse client does not work, manual download downloads a 0-Byte-size Zip-file.
Rollback Post to RevisionRollBack
To post a comment, please login or register a new account.
In the Bags_UI folder, open FBoH_ViewTabTemplate.lua.
Find the line
PanelTemplates_TabResize(self,10);
change it to
--PanelTemplates_TabResize(self,10);
There's a bit of lag when you're swapping bags, but not enough to become a major issue and it may have something to do with sorting as opposed to this being commented out.
So the question now is, is this addon still in active development or has feithar dropped it?
It just dont opens anything.
Is FBOH broken for everyone?
All still good.
1. In the World of Warcraft/Interface/Addons/FbagofHolding find FbagofHolding.lua
2. Make a backup copy of this file.
3. Open the original file in a text editor and search for this section of code:
function _GetItemCounts(self, itemLink)
local itemKey = self.items:GetItemKey(itemLink);
local realm = GetRealmName();
local f = {
{
filter = self:GetFilter("Item Key").filter;
arg = itemKey;
},
{
filter = self:GetFilter("Character").filter;
arg = realm .. ".*"
}
};
local results = self.items:FindItems(self:GetFilter("And").filter, f);
local rVal = {};
local counters = {};
local resultCount = 0;
local totalCount = 0;
for _, data in ipairs(results) do
counters[data.character] = counters[data.character] or {};
counters[data.character][data.bagType] = counters[data.character][data.bagType] or 0;
counters[data.character][data.bagType] = counters[data.character][data.bagType] + data.itemCount;
end
for cName, cData in pairs(counters) do
local str = cName .. ":";
local subCounters = {};
for bType, cnt in pairs(cData) do
table.insert(subCounters, " [" .. bType .. ": " .. cnt .. "]");
resultCount = resultCount + 1;
totalCount = totalCount + cnt;
end
table.sort(subCounters);
for _, v in ipairs(subCounters) do
str = str .. v;
end
table.insert(rVal, str);
end
if resultCount > 1 then
table.sort(rVal);
table.insert(rVal, "Total: " .. totalCount);
end
return rVal;
end
4. Remove the "guts" of the function so that when you're done, it looks like this:
function _GetItemCounts(self, itemLink)
end
5. Save and run wow!
They dont exist in my bank, but FBoH displays them. They cant me move or deleted.
This problem persists now for many weeks, and the number of ghost-items grows from week to week.
However:
When I switch a bag from my bank to the char (like the angling bag), I get double icons... sometimes. Seems to happen more often, when the FBoH-Window is closed.
When I then close the bank and switch my bags inbetween the slots of my char several times, the ghost-icons disappear again.
The double angling-icons are gone, but now I have double herb-icons.
I'd really like to know how to remove the total count tooltip. I don't really need to know that there is 1 hearthstone on each of my characters. It even lists some characters that don't exist anymore.
However, the download .zip-file seems to be empty. Installing via curse client does not work, manual download downloads a 0-Byte-size Zip-file.