This site works best with JavaScript enabled. Please enable JavaScript to get the best experience from this site.
Doesn't appear anything exept mini-button2.3.1 - r167
******Date: 2011-10-02 13:41:22ID: 1Error occured in: GlobalCount: 1Message: ...Ons\ElkBuffBars\libs\LibAbacus-3.0\LibAbacus-3.0.lua line 118: Division by zeroDebug: [C]: ? ...Ons\ElkBuffBars\libs\LibAbacus-3.0\LibAbacus-3.0.lua:118: in main chunkAddOns: Swatter, v3.2.4 (<%codename%>) ElkBuffBars, v2.3.1-167 BlizRuntimeLib_enUS v4.3.0.40200 <public-test.logon.battle.net> (ck=7d)
******
Date: 2011-10-02 13:41:27ID: 2Error occured in: GlobalCount: 1Message: ..\AddOns\ElkBuffBars\EBB_Bar.lua line 625: attempt to call method 'FormatDurationCondensed' (a nil value)Debug: ...ddOns\ElkBuffBars\libs\AceAddon-2.0\AceAddon-2.0.lua:25: ...ddOns\ElkBuffBars\libs\AceAddon-2.0\AceAddon-2.0.lua:23 ...ddOns\ElkBuffBars\libs\AceAddon-2.0\AceAddon-2.0.lua:1051: ManualEnable() ...ddOns\ElkBuffBars\libs\AceAddon-2.0\AceAddon-2.0.lua:979: ...ddOns\ElkBuffBars\libs\AceAddon-2.0\AceAddon-2.0.lua:973 [C]: ? ...ddOns\ElkBuffBars\libs\AceEvent-2.0\AceEvent-2.0.lua:260: TriggerEvent() ...ddOns\ElkBuffBars\libs\AceEvent-2.0\AceEvent-2.0.lua:910: ...ddOns\ElkBuffBars\libs\AceEvent-2.0\AceEvent-2.0.lua:903AddOns: Swatter, v3.2.4 (<%codename%>) ElkBuffBars, v2.3.1-167 BlizRuntimeLib_enUS v4.3.0.40200 <public-test.logon.battle.net>**** (ck=7d)
Here is a working fix for the 4.3 PTR as of 10/18/11, taken from this thread: http://forums.wowace.com/showthread.php?t=5290&page=116
- Download and this modified version of LibAbacus-3.0: Link Removed: http://www.mediafire.com/?vdg6h3b6ex47fac
- Extract to \Interface\Addons\
The issue was with line 118 in LibAbacus-3.0.lua (the library EBB uses to display bars):
"local inf = 1/0"
To fix this, 1/0 simply gets replaced with some random massive number. eg:
"local inf = 9223372036854775807"
This solution can most likely be applied to a bunch of other 4.3-broken, non-updated addons - simply find any examples of "local inf = 1/0" in any lua file and replace it with a massive number like above.
To post a comment, please login or register a new account.