View Single Post
03-30-06, 03:36 AM   #10
Ixje
A Kobold Labourer
Join Date: Mar 2006
Posts: 1
For the first error do go into to BibBagMods.xml to line 19 and replace

Code:
<OnLoad>
 local parent = this:GetParent();
 local parentNum = strsub(parent:GetName(), 15)
 parent:SetMovable(true);
 if(not parent:IsUserPlaced()) then
  parent:SetPoint("TOPLEFT", "UIParent", "BOTTOMRIGHT",
-(180 + parentNum * 25), 340 + parentNum * 25);
 end
</OnLoad>
into
Code:
<OnLoad>
 local parent = this:GetParent();
 if (parent) then
  local parentNum = strsub(parent:GetName(), 15)
  parent:SetMovable(true);
  if(not parent:IsUserPlaced()) then
   parent:SetPoint("TOPLEFT", "UIParent", "BOTTOMRIGHT",
-(180 + parentNum * 25), 340 + parentNum * 25);
  end
 end
</OnLoad>
For the BibBagMods.lua:75 error change (at line 73 of BibBagMods.lua)
Code:
function CloseBag(id)
 local containerFrame = getglobal("ContainerFrame"..(id+1));
 if (containerFrame:IsVisible()) then
  containerFrame:Hide();
 end
end
into
Code:
function CloseBag(id)
 local containerFrame = getglobal("ContainerFrame"..(id+1));
 if (containerFrame) then
   if (containerFrame:IsVisible()) then
     containerFrame:Hide();
   end
 end
end
all credits go to the ones who posted this on WoWWiki page. Just figured I'd help people out just looking here
  Reply With Quote