Today i installed all my addons new without any SV and every Login i become this error
(BI is the only addon running)
[2008/04/29 16:46:06-6-x1]: BankItems-24001\BankItems.lua:695: attempt to compare number with nil
BankItems-24001\BankItems.lua:2641: in function <Interface\AddOns\BankItems\BankItems.lua:2588>
followed by this one when i click ok by the first
[2008/04/29 16:46:06-6-x102]: BankItems-24001\BankItems.lua:1055: attempt to index upvalue 'selfPlayer' (a nil value)
BankItems-24001\BankItems.lua:2652: in function <Interface\AddOns\BankItems\BankItems.lua:2649>
---
i can not open BI
when i copy my old SV back i become no error and it works
i have a special question to the "export items" feature of BankItems.
I use this tool to copy&paste our Raidbank into our forum, which uses [wowitem][/wowitem] tag to link items with database of "thottbot" i think.
So my question: Is it possible for me in any way, that the export tool automaticaly adds this tags to the text with the items?
Example (sorry, german text here but it would be the same problem in english):
Verbrauchbar
1 Fl?schchen des unerbittlichen Angriffs
15 Erstklassiger Heiltrank
3 Fl?schchen der St?rkung
4 Fl?schchen des reinen Todes
1 Fl?schchen des blendenden Lichts
4 Rechtschaffene Waffenbeschichtung
4 Fl?schchen der destillierten Weisheit
Change in:
Verbrauchbar
1 [wowitem]Fl?schchen des unerbittlichen Angriffs[/wowitem]
15 [wowitem]Erstklassiger Heiltrank[/wowitem]
3 [wowitem]Fl?schchen der St?rkung[/wowitem]
4 [wowitem]Fl?schchen des reinen Todes[/wowitem]
1 [wowitem]Fl?schchen des blendenden Lichts[/wowitem]
4 [wowitem]Rechtschaffene Waffenbeschichtung[/wowitem]
4 [wowitem]Fl?schchen der destillierten Weisheit[/wowitem]
The board Version is the same as here, SMF Board 1.1.5
Hope you can help me. :-) I really dont understand how to code^^
If this is not possible, is there an addon for wow (or perhaps forum) which does this?
Not sure if this is the place to post a request or not, but here it goes.
What would be the chance that this mod could work with OneBank? I go to the bank and using OneBank, I have everything in order, just like I want it. But then I open up BankItems and everything is spread out over all of the bags and I'm not sure where stuff is. I looked at OneView and I like BankItems better. When I mouse over something, it tells me how many each of my 9 toons have of that item. It would be nice to have the option of showing the bank items in the OneBank version.
Is this possible? Is this a BankItems problem or a OneBank problem?
Not sure if this is the place to post a request or not, but here it goes.
What would be the chance that this mod could work with OneBank? I go to the bank and using OneBank, I have everything in order, just like I want it. But then I open up BankItems and everything is spread out over all of the bags and I'm not sure where stuff is. I looked at OneView and I like BankItems better. When I mouse over something, it tells me how many each of my 9 toons have of that item. It would be nice to have the option of showing the bank items in the OneBank version.
Is this possible? Is this a BankItems problem or a OneBank problem?
James
BankItems is designed for use with the default Blizzard bags, with the same default UI bag style. As such, support for bag addons such as Combuctor, OneBag, ArkInventory, AllInOneInventory, and similar addons will not be considered.
i have a special question to the "export items" feature of BankItems.
...
<snip>
...
If this is not possible, is there an addon for wow (or perhaps forum) which does this?
The feature you have requested is currently not being considered for addition.
However, you can modify line 3417 of BankItems.lua from
text = text..count.." "..itemName.."\n"
to
text = text..count.." [wowitem]"..itemName.."[/wowitem]\n"
and line 3436 from
text = text..prefix..(theBag[bagItem].count or 1).." "..BankItems_ParseLink(theBag[bagItem].link).."\n"
to
text = text..prefix..(theBag[bagItem].count or 1).." [wowitem]"..BankItems_ParseLink(theBag[bagItem].link).."[/wowitem]\n"
I've tested the change of the lua as you told me but i still have one problem.
It works only for normal Banks, not Guildbanks. Is there any way to get this work for guild banks too?
Edit: OK. Ive found another two lines called as they are in your post, but in other lines. Ive also changed them as you told me. Now it works just fine for both normal banks and guild banks. ;-)
Okay after hours of testing I found the Mod wich kills BankItem's Tooltips:
Book of Crafts (http://wow.curse.com/downloads/details/1014/) anyone knows a replacement for BoC that works together with BI ?
Thanks in Advance!
Hi, the error is because of outdated code in Book Of Crafts. The last update to the addon was 4.5 months ago, indicating that it might no longer be in development.
Lines 1637-1645 of the code in BookOfCrafts.lua need to be updated from
function hookBOC_BankItems_BagItem_OnEnter()
Original.BankItems_BagItem_OnEnter()
BoC_AnalyseTooltip( GameTooltip )
end
function hookBOC_BankItems_Button_OnEnter()
Original.BankItems_Button_OnEnter()
BoC_AnalyseTooltip( GameTooltip )
end
to
function hookBOC_BankItems_BagItem_OnEnter(this)
Original.BankItems_BagItem_OnEnter(this)
BoC_AnalyseTooltip( GameTooltip )
end
function hookBOC_BankItems_Button_OnEnter(this)
Original.BankItems_Button_OnEnter(this)
BoC_AnalyseTooltip( GameTooltip )
end
in order to comply with new coding standards, particularly with the upcoming WotLK base code, which BankItems 24002 can be used with. Good luck.
On WotLK beta build 8970 (and a couple before that probably) occurrences of
"InterfaceOptionsSliderTemplate" need to be changed to "OptionsSliderTemplate".
hmm InterfaceOptionsFrame_OpenToCategory is not working in 20400
if someone downloads the new BankItems r97 (toc 20400) and use it on live server it errors
you should change the toc to 30000 if using InterfaceOptionsFrame_OpenToCategory too :)
30000: InterfaceOptionsFrame_OpenToCategory
20400: InterfaceOptionsFrame_OpenToFrame
Rollback Post to RevisionRollBack
To post a comment, please login or register a new account.
Today i installed all my addons new without any SV and every Login i become this error
(BI is the only addon running)
followed by this one when i click ok by the first
i can not open BI
when i copy my old SV back i become no error and it works
mfg rza
i have a special question to the "export items" feature of BankItems.
I use this tool to copy&paste our Raidbank into our forum, which uses [wowitem][/wowitem] tag to link items with database of "thottbot" i think.
So my question: Is it possible for me in any way, that the export tool automaticaly adds this tags to the text with the items?
Example (sorry, german text here but it would be the same problem in english):
Verbrauchbar
1 Fl?schchen des unerbittlichen Angriffs
15 Erstklassiger Heiltrank
3 Fl?schchen der St?rkung
4 Fl?schchen des reinen Todes
1 Fl?schchen des blendenden Lichts
4 Rechtschaffene Waffenbeschichtung
4 Fl?schchen der destillierten Weisheit
Change in:
Verbrauchbar
1 [wowitem]Fl?schchen des unerbittlichen Angriffs[/wowitem]
15 [wowitem]Erstklassiger Heiltrank[/wowitem]
3 [wowitem]Fl?schchen der St?rkung[/wowitem]
4 [wowitem]Fl?schchen des reinen Todes[/wowitem]
1 [wowitem]Fl?schchen des blendenden Lichts[/wowitem]
4 [wowitem]Rechtschaffene Waffenbeschichtung[/wowitem]
4 [wowitem]Fl?schchen der destillierten Weisheit[/wowitem]
The board Version is the same as here, SMF Board 1.1.5
Hope you can help me. :-) I really dont understand how to code^^
If this is not possible, is there an addon for wow (or perhaps forum) which does this?
Willi
What would be the chance that this mod could work with OneBank? I go to the bank and using OneBank, I have everything in order, just like I want it. But then I open up BankItems and everything is spread out over all of the bags and I'm not sure where stuff is. I looked at OneView and I like BankItems better. When I mouse over something, it tells me how many each of my 9 toons have of that item. It would be nice to have the option of showing the bank items in the OneBank version.
Is this possible? Is this a BankItems problem or a OneBank problem?
James
BankItems is designed for use with the default Blizzard bags, with the same default UI bag style. As such, support for bag addons such as Combuctor, OneBag, ArkInventory, AllInOneInventory, and similar addons will not be considered.
The feature you have requested is currently not being considered for addition.
However, you can modify line 3417 of BankItems.lua from
text = text..count.." "..itemName.."\n"
to
text = text..count.." [wowitem]"..itemName.."[/wowitem]\n"
and line 3436 from
text = text..prefix..(theBag[bagItem].count or 1).." "..BankItems_ParseLink(theBag[bagItem].link).."\n"
to
text = text..prefix..(theBag[bagItem].count or 1).." [wowitem]"..BankItems_ParseLink(theBag[bagItem].link).."[/wowitem]\n"
to achieve what you want.
It works only for normal Banks, not Guildbanks. Is there any way to get this work for guild banks too?
Edit: OK. Ive found another two lines called as they are in your post, but in other lines. Ive also changed them as you told me. Now it works just fine for both normal banks and guild banks. ;-)
Anyone else having the same problem ?
Book of Crafts (http://wow.curse.com/downloads/details/1014/) anyone knows a replacement for BoC that works together with BI ?
Thanks in Advance!
Lines 1637-1645 of the code in BookOfCrafts.lua need to be updated from
to
in order to comply with new coding standards, particularly with the upcoming WotLK base code, which BankItems 24002 can be used with. Good luck.
Thanks for that fix!!! :D
"InterfaceOptionsSliderTemplate" need to be changed to "OptionsSliderTemplate".
Sorry if it's been reported/fixed already.
"BankItems:1050: attempt to call global 'InterfaceOptionsFrame_OpenToFrame' (a nil value)"
2) Are there plans to create a LDB plugin for BankItems?
http://www.wowace.com/projects/bank-items/files/
if someone downloads the new BankItems r97 (toc 20400) and use it on live server it errors
you should change the toc to 30000 if using InterfaceOptionsFrame_OpenToCategory too :)
30000: InterfaceOptionsFrame_OpenToCategory
20400: InterfaceOptionsFrame_OpenToFrame