Download
(20Kb)
Download
Updated: 11-23-14 10:12 AM
Pictures
File Info
Compatibility:
Warlords of Draenor (6.0.3)
Warlords of Draenor Pre-Patch (6.0.2)
Updated:11-23-14 10:12 AM
Created:09-13-09 12:05 PM
Downloads:11,968
Favorites:171
MD5:

Arcana's Experience Broker  Popular! (More than 5000 hits)

Version: 60000.3.1.1
by: Arcana [More]

Arcana's Experience Broker is a LibDataBroker addon that shows a large amount of experience-related information, including the current amount of experience you have acquired this session, the rate of XP, and the estimated time to level.

This addon requires a LibDataBroker Viewer (such as DockingStation) so the user can see the information.

I wrote this addon because I was accustomed to using FuBar_ExperienceFu and its information display while levelling, especially the distinction between XP gained this Level, and XP gained this Session. Because there was no appropriate LibDataBroker equivalent, I decided to write this as a replacement.

What's a LibDataBroker?

I've received this question a few times, so let me explain what a broker is and why I wrote a data broker addon.

if you've been playing WoW and using addons for some time you might be familiar with addons like TitanPanel or FuBar. These addons place a "panel" at the top of your screen where you can put information like how much gold you have or how much experience you need until you reach the next level.

However, if you wrote a plugin to work with TitanPanel or FuBar, you had to write your addon to work specifically for those systems and ended up having to write two addons (one to support TitanPanel and one to support FuBar). To get around this, some smart people wrote a library called LibDataBroker.

Basically, what the data broker library allows you to do is select the style and look of your UI using a viewer. You can then install the mods that provide data to the viewer (usually called data or data brokers). This provides two benefits. First, the player gets to select what the look and feel of the viewer is. You're no longer limited to something that looks like a bar, for example. Second, the addon author only has to write one addon.

So, what goes on is that you download and install a broker viewer like ChocolateBar, Fortress, DockingStation, or whatever suits the look and feel that you like, and then you install an addon like Arcana's Experience Broker in order to get the information about how much experience you're gaining.

v60000.3.1.1: 2014-11-23

- Updated TOC for compatibility with Warlords of Draenor.

v50001.3.1.1: 2012-09-05

- Added amount of XP remaining in the main view
- Updated TOC for compatibility with 5.0.4

v40000.3.1.0: 2010-11-20

- Added percentages in the tooltip
- Added a broker view for remaining percentage, in parentheses
- The broker view is saved on logout

v40000.3.0.1: 2010-10-14

- Minor bug fixes

v40000.3: 2010-10-13

- Updated addon for compatibility with 4.0
- Added a "Time to level" display on the toolbar (click the text four times to show it!)

v0.2: 2010-07-16

- Updated TOC file for compatibility with 3.3

v0.1: 2009-09-12

- I wanted an addon that displayed my current percentage into level, my rest XP, and on mouseover, details about
my XP rates. I really liked FuBar_ExperienceFu but there was no equivalent for Broker. I based this addon's
features heavily around FuBar_ExperienceFu's layout.
Optional Files (0)


Post A Reply Comment Options
Unread 08-16-19, 01:42 PM  
Vedma
A Kobold Labourer
AddOn Author - Click to view AddOns

Forum posts: 1
File comments: 15
Uploads: 1
Replacement

I was trying to fix this addon by looking into errors but then I found a replacement ElkExperience. It has nearly the same functionality.
https://www.curseforge.com/wow/addons/elkexperience
Report comment to moderator  
Reply With Quote
Unread 10-21-15, 02:35 PM  
donjon
A Kobold Labourer

Forum posts: 0
File comments: 9
Uploads: 0
Love this addon but hated the error.
So i looked at it an thought "why do i even need the number when im max lvl?" thus i just avoid the execution of the error causing code ^^


Replace the the two lines in the updateToolTip() function from
Code:
GameTooltip:AddDoubleLine("Time to level for this level"..":", fmttime(timeToLevelForLevel()), 1,1,0, 1,1,1)
GameTooltip:AddDoubleLine("Time to level for this session"..":", timeToLevelForSession_asStr(), 1,1,0, 1,1,1)
GameTooltip:AddDoubleLine(string.format("Mobs to kill till level (at %d XP)", xp.lastMob)..":", numMobsToLevel(), 1,1,0, 1,1,1)
GameTooltip:AddLine(" ")
to
Code:
if not currentLevel == GetMaxPlayerLevel() then
	GameTooltip:AddDoubleLine("Time to level for this level"..":", fmttime(timeToLevelForLevel()), 1,1,0, 1,1,1)
	GameTooltip:AddDoubleLine("Time to level for this session"..":", timeToLevelForSession_asStr(), 1,1,0, 1,1,1)
	GameTooltip:AddDoubleLine(string.format("Mobs to kill till level (at %d XP)", xp.lastMob)..":", numMobsToLevel(), 1,1,0, 1,1,1)
	GameTooltip:AddLine(" ")
end
All it does it hides the 3 lines Time To Level (2x) and the Mobs to kill till level.
As you are max level these should not interest you (and are also not calculatable theoretically as you are not gaining any xp).
This should also work if it gets updates in Legion
Last edited by donjon : 10-21-15 at 02:39 PM.
Report comment to moderator  
Reply With Quote
Unread 08-07-15, 04:47 PM  
Grizzly UK
A Black Drake
 
Grizzly UK's Avatar

Forum posts: 85
File comments: 143
Uploads: 0
Originally Posted by Glorian
The problem is that for level 100 the API "UnitXP("player")" give the value '0' since patch 6.2.
This can be corrected by replacing the line
Code:
xp.current = UnitXP("player")
by the line
Code:
xp.current = UnitXP("player") or 1
in function
Code:
updateExperience()
Thanks for the reply. I made that change but it made no difference, with a lvl 100 character I still get the error when I move the cursor over Arcana Experience Broker.

Must be some more changes required somewhere, sadly I have no clue what or where so I guess it's time to try sending the author a PM and hope for a reply!
Report comment to moderator  
Reply With Quote
Unread 07-30-15, 02:43 PM  
Glorian
A Kobold Labourer

Forum posts: 0
File comments: 1
Uploads: 0
Originally Posted by Grizzly UK
Logged in today for the first time since patch 6.2 released (which was yesterday for those of us in Europe) and when I moved the cursor over Arcana Experience Broker I got the following error and no tooltip display.

Code:
["message"] = "integer overflow attempting to store 1.#INF",
["count"] = 695,
["addons"] = "  MoncaiCompare, v6.1.0\n  Swatter, v5.14.5335 (KowariOnCrutches)\n  WowheadLooter, v60011\n  Achieved, v0.4\n  AckisRecipeList, v6.2.0.1\n  ACP, v3.4.15 \n  Adapt, v2.0.16\n  AllPlayed, v50400-2 $Revision: 296 $\n  AraBrokerReputations, vr18\n  ArcanaExperienceBroker, v60000.3.2\n  Armory, vv12.5.0\n  ArmoryGuildBank, vv12.5.0\n  Atlas, v1.31.01\n  AtlasBattlegrounds, v1.31.01\n  AtlasBurningCrusade, v1.31.01\n  AtlasCataclysm, v1.31.01\n  AtlasClassicWoW, v1.31.01\n  AtlasDungeonLocs, v1.31.01\n  AtlasMistsofPandaria, v1.31.01\n  AtlasOutdoorRaids, v1.31.01\n  AtlasScenarios, v1.31.01\n  AtlasTransportation, v1.31.03\n  AtlasWorldEvents, v3.12\n  AtlasWrathoftheLichKing, v1.31.01\n  AtlasLoot, vv8.00.20\n  AtlasMajorCitiesEnhanced, vv1.07\n  AtlasQuest, v4.9.3\n  BattlePetCount, v1.8.2\n  Bazooka, vv2.6.0\n  BrokerAFK, v2.8.2\n  BrokerCurrencyflow, vv1.5\n  BrokerGroup, v\n  BrokerPortals, v1.8.38\n  BrokerQC, v.70\n  BrokerRecount, v1.0\n  BrokerReloadUI, v1.0.0\n  BrokeruClock, v3.3.6\n  BrokerXPBar, v1.7 r047\n  BrokerMounts, v6.05\n  BrokerPets, v6.05\n  ButtonForge, v0.9.39\n  Castbars, v\n  CloakHelmToggle, v1.0.0.7\n  CloseUp, v6.0.001\n  CollectMe, v2.7.2\n  Cromulent, v60100-1\n  CTCore, v6.1.0.0\n  CTLibrary, v6.1.0.0\n  CTMailMod, v6.1.0.0\n  CTPartyBuffs, v6.1.0.0\n  EmoteLDB, v60200-1.0\n  Examiner, v14.10.16\n  FBBroker, v1.20g\n  FBOutfitDisplayFrame, v1.4e\n  FBTrackingFrame, v1.4w\n  FishingBuddy, v1.5.1\n  FlightMap, v6.1.0.0\n  FlyoutButtonCustom, v2.65\n  GatherMate2, v1.33.5\n  GatherMateSharing, vv1.9\n  GatherSage2, v20101207\n  GFWDisenchantPredictor, v5.2\n  HandyNotes, vv1.3.3\n  HandyNotesDraenorTreasures, v1.13\n  HandyNotesGuild, v1.8\n  HandyNotesTimelessIsleChests, v1.13\n  HunterPets, v1\n  HunterPetsOwned, v1\n  HunterPetsUI, v1\n  HunterStableInfo, v5.0a\n  InFlight, v6.0.001\n  InFlightLoad, v6.0.001\n  Juggler, v5.0.0.1\n  LightHeaded, vwowi:revision\n  LostTreasures, v3.06\n  MailNotifier, v\n  MailNotifierBroker, v\n  Mapster, v1.6.2\n  Mendeleev, v3.0\n  MobInfo2, v6.0.0\n  oGlow, v2.2.5\n  Overachiever, v0.82\n  OverachieverTabs, v0.82\n  OverachieverTrade, v0.82\n  PetBattleTeams, v3.2.9\n  PetJournalEnhanced, v2.9.16\n  PlayerLinkMenu, v1.10\n  Prat30, v3.5.15      \n  Prat30Libraries, v\n  QuestCompletist, v105\n  QuestProgressSound, v1.20\n  Recount, vv6.2.0c release\n  RepairBroker, v6.1.0\n  sct, v6.72\n  sctd, v6.72\n  sfbs, v6.0.3.0\n  shMem, v\n  shPerformance, v\n  SilverDragon, vv3.1.5\n  SocialState, v5.4-Release1\n  SwindlerPreventer, v5.0.1 (15799) BETA\n  TipTac, v15.03.04\n  TipTacItemRef, v15.03.04\n  TipTacTalents, v15.03.04\n  TomTom, vv60100-1.0.0\n  TravelAgent, v6.2.0.1\n  TrinketMenu, v6.0.1\n  VisualHeal, v\n  Volumizer, v6.2.0.1\n  BlizRuntimeLib_enUS v6.2.0.60200 <none>\n  (ck=a76)\n",
["locals"] = "(*temporary) = \"%dd \"\n(*temporary) = 1.#INF\n",
["timestamp"] = "2015-06-25 14:32:53",
["context"] = "Global",
["stack"] = "[C]: ?\n[C]: in function `format'\n...\\Arcana_ExperienceBroker\\Arcana_ExperienceBroker.lua:84: in function <...\\Arcana_ExperienceBroker\\Arcana_ExperienceBroker.lua:74>\n...\\Arcana_ExperienceBroker\\Arcana_ExperienceBroker.lua:304: in function `updateToolTip'\n...\\Arcana_ExperienceBroker\\Arcana_ExperienceBroker.lua:318: in function `OnEnter'\nInterface\\AddOns\\Bazooka\\Bazooka.lua:1576: in function `showTip'\nInterface\\AddOns\\Bazooka\\Bazooka.lua:1381: in function <Interface\\AddOns\\Bazooka\\Bazooka.lua:1372>\n",
All my other Broker addons seem to be working fine. As per usual for the first few days after a patch I'm updating addons as and when updates become available, so far I haven't seen an updated version of Bazooka, although I only mention that as I notice it's mentioned in the stack error section of the bug report. So, I guess the question is whether this is fixable and, if so, whether anyone knows how to fix it?

EDIT: After checking on several characters this error only occurs on max level 100 characters, all the characters I've checked who are below lvl 100 do not get this error and the tooltip displays as normal.
The problem is that for level 100 the API "UnitXP("player")" give the value '0' since patch 6.2.
This can be corrected by replacing the line
Code:
xp.current = UnitXP("player")
by the line
Code:
xp.current = UnitXP("player") or 1
in function
Code:
updateExperience()
Report comment to moderator  
Reply With Quote
Unread 06-25-15, 08:24 AM  
Grizzly UK
A Black Drake
 
Grizzly UK's Avatar

Forum posts: 85
File comments: 143
Uploads: 0
Logged in today for the first time since patch 6.2 released (which was yesterday for those of us in Europe) and when I moved the cursor over Arcana Experience Broker I got the following error and no tooltip display.

Code:
["message"] = "integer overflow attempting to store 1.#INF",
["count"] = 695,
["addons"] = "  MoncaiCompare, v6.1.0\n  Swatter, v5.14.5335 (KowariOnCrutches)\n  WowheadLooter, v60011\n  Achieved, v0.4\n  AckisRecipeList, v6.2.0.1\n  ACP, v3.4.15 \n  Adapt, v2.0.16\n  AllPlayed, v50400-2 $Revision: 296 $\n  AraBrokerReputations, vr18\n  ArcanaExperienceBroker, v60000.3.2\n  Armory, vv12.5.0\n  ArmoryGuildBank, vv12.5.0\n  Atlas, v1.31.01\n  AtlasBattlegrounds, v1.31.01\n  AtlasBurningCrusade, v1.31.01\n  AtlasCataclysm, v1.31.01\n  AtlasClassicWoW, v1.31.01\n  AtlasDungeonLocs, v1.31.01\n  AtlasMistsofPandaria, v1.31.01\n  AtlasOutdoorRaids, v1.31.01\n  AtlasScenarios, v1.31.01\n  AtlasTransportation, v1.31.03\n  AtlasWorldEvents, v3.12\n  AtlasWrathoftheLichKing, v1.31.01\n  AtlasLoot, vv8.00.20\n  AtlasMajorCitiesEnhanced, vv1.07\n  AtlasQuest, v4.9.3\n  BattlePetCount, v1.8.2\n  Bazooka, vv2.6.0\n  BrokerAFK, v2.8.2\n  BrokerCurrencyflow, vv1.5\n  BrokerGroup, v\n  BrokerPortals, v1.8.38\n  BrokerQC, v.70\n  BrokerRecount, v1.0\n  BrokerReloadUI, v1.0.0\n  BrokeruClock, v3.3.6\n  BrokerXPBar, v1.7 r047\n  BrokerMounts, v6.05\n  BrokerPets, v6.05\n  ButtonForge, v0.9.39\n  Castbars, v\n  CloakHelmToggle, v1.0.0.7\n  CloseUp, v6.0.001\n  CollectMe, v2.7.2\n  Cromulent, v60100-1\n  CTCore, v6.1.0.0\n  CTLibrary, v6.1.0.0\n  CTMailMod, v6.1.0.0\n  CTPartyBuffs, v6.1.0.0\n  EmoteLDB, v60200-1.0\n  Examiner, v14.10.16\n  FBBroker, v1.20g\n  FBOutfitDisplayFrame, v1.4e\n  FBTrackingFrame, v1.4w\n  FishingBuddy, v1.5.1\n  FlightMap, v6.1.0.0\n  FlyoutButtonCustom, v2.65\n  GatherMate2, v1.33.5\n  GatherMateSharing, vv1.9\n  GatherSage2, v20101207\n  GFWDisenchantPredictor, v5.2\n  HandyNotes, vv1.3.3\n  HandyNotesDraenorTreasures, v1.13\n  HandyNotesGuild, v1.8\n  HandyNotesTimelessIsleChests, v1.13\n  HunterPets, v1\n  HunterPetsOwned, v1\n  HunterPetsUI, v1\n  HunterStableInfo, v5.0a\n  InFlight, v6.0.001\n  InFlightLoad, v6.0.001\n  Juggler, v5.0.0.1\n  LightHeaded, vwowi:revision\n  LostTreasures, v3.06\n  MailNotifier, v\n  MailNotifierBroker, v\n  Mapster, v1.6.2\n  Mendeleev, v3.0\n  MobInfo2, v6.0.0\n  oGlow, v2.2.5\n  Overachiever, v0.82\n  OverachieverTabs, v0.82\n  OverachieverTrade, v0.82\n  PetBattleTeams, v3.2.9\n  PetJournalEnhanced, v2.9.16\n  PlayerLinkMenu, v1.10\n  Prat30, v3.5.15      \n  Prat30Libraries, v\n  QuestCompletist, v105\n  QuestProgressSound, v1.20\n  Recount, vv6.2.0c release\n  RepairBroker, v6.1.0\n  sct, v6.72\n  sctd, v6.72\n  sfbs, v6.0.3.0\n  shMem, v\n  shPerformance, v\n  SilverDragon, vv3.1.5\n  SocialState, v5.4-Release1\n  SwindlerPreventer, v5.0.1 (15799) BETA\n  TipTac, v15.03.04\n  TipTacItemRef, v15.03.04\n  TipTacTalents, v15.03.04\n  TomTom, vv60100-1.0.0\n  TravelAgent, v6.2.0.1\n  TrinketMenu, v6.0.1\n  VisualHeal, v\n  Volumizer, v6.2.0.1\n  BlizRuntimeLib_enUS v6.2.0.60200 <none>\n  (ck=a76)\n",
["locals"] = "(*temporary) = \"%dd \"\n(*temporary) = 1.#INF\n",
["timestamp"] = "2015-06-25 14:32:53",
["context"] = "Global",
["stack"] = "[C]: ?\n[C]: in function `format'\n...\\Arcana_ExperienceBroker\\Arcana_ExperienceBroker.lua:84: in function <...\\Arcana_ExperienceBroker\\Arcana_ExperienceBroker.lua:74>\n...\\Arcana_ExperienceBroker\\Arcana_ExperienceBroker.lua:304: in function `updateToolTip'\n...\\Arcana_ExperienceBroker\\Arcana_ExperienceBroker.lua:318: in function `OnEnter'\nInterface\\AddOns\\Bazooka\\Bazooka.lua:1576: in function `showTip'\nInterface\\AddOns\\Bazooka\\Bazooka.lua:1381: in function <Interface\\AddOns\\Bazooka\\Bazooka.lua:1372>\n",
All my other Broker addons seem to be working fine. As per usual for the first few days after a patch I'm updating addons as and when updates become available, so far I haven't seen an updated version of Bazooka, although I only mention that as I notice it's mentioned in the stack error section of the bug report. So, I guess the question is whether this is fixable and, if so, whether anyone knows how to fix it?

EDIT: After checking on several characters this error only occurs on max level 100 characters, all the characters I've checked who are below lvl 100 do not get this error and the tooltip displays as normal.
Last edited by Grizzly UK : 06-26-15 at 02:04 PM.
Report comment to moderator  
Reply With Quote
Unread 11-26-14, 01:30 PM  
Grizzly UK
A Black Drake
 
Grizzly UK's Avatar

Forum posts: 85
File comments: 143
Uploads: 0
Originally Posted by Arcana
Originally Posted by Grizzly UK
I'm guessing this is no longer worked on or maintained, especially as the author's profile shows "Last Activity: 09-06-12 05:34 AM".
I exist and am alive, but you're correct in that I do not actively maintain this add-on anymore. I stopped playing WoW a number of years ago. However since there are still some active users I'll see if I can get some aspects back on track some time over the next few weeks. I'm guessing that the expansion was just released so a lot of people are back looking for XP mods

Edit: I've updated the TOC and the library files. Watch for a new version soon - the WoWInterface moderators have to approve the file.

Unfortunately, since I'm not an active subscriber or player, I'm unable to do testing on cases like Level Boost or whether 90-100 XP gains work properly... let me know if there's problems and I'll look into them.
What a pleasant surprise! Many thanks for not only posting (and sending the PM) to let us know what's happening but also for uploading an update!
Report comment to moderator  
Reply With Quote
Unread 11-21-14, 07:13 AM  
Arcana
A Defias Bandit
AddOn Author - Click to view AddOns

Forum posts: 3
File comments: 16
Uploads: 2
Originally Posted by Grizzly UK
I'm guessing this is no longer worked on or maintained, especially as the author's profile shows "Last Activity: 09-06-12 05:34 AM".
I exist and am alive, but you're correct in that I do not actively maintain this add-on anymore. I stopped playing WoW a number of years ago. However since there are still some active users I'll see if I can get some aspects back on track some time over the next few weeks. I'm guessing that the expansion was just released so a lot of people are back looking for XP mods

Edit: I've updated the TOC and the library files. Watch for a new version soon - the WoWInterface moderators have to approve the file.

Unfortunately, since I'm not an active subscriber or player, I'm unable to do testing on cases like Level Boost or whether 90-100 XP gains work properly... let me know if there's problems and I'll look into them.
Last edited by Arcana : 11-23-14 at 10:18 AM.
Report comment to moderator  
Reply With Quote
Unread 11-21-14, 07:04 AM  
Grizzly UK
A Black Drake
 
Grizzly UK's Avatar

Forum posts: 85
File comments: 143
Uploads: 0
Originally Posted by Kyrgune
I don't have the same problem as you, I was just noticing that this addon wasn't updating the rest xp I was getting since the expansion came out. There is one that works pretty much the way that this addon does and I got it to look just like this one as far as the layout goes in Broker. Try out Broker: XPBar. It's been updated currently.
Thanks very much for your reply. The error I was getting on the boosted lvl 90 character started occuring on all of my lvl 90 characters, but worked fine with all characters under lvl 90, so I guess it wasn't a problem with the lvl 90 boost as I first suspected! However, once I was able to start earning XP again with each of my lvl 90's after WoD's launch the error went away and this addon started working normally (as far as I can tell) once again for all of my lvl 90's!
Report comment to moderator  
Reply With Quote
Unread 11-20-14, 02:39 PM  
Kyrgune
Premium Member
Premium Member
AddOn Author - Click to view AddOns

Forum posts: 14
File comments: 66
Uploads: 2
I don't have the same problem as you, I was just noticing that this addon wasn't updating the rest xp I was getting since the expansion came out. There is one that works pretty much the way that this addon does and I got it to look just like this one as far as the layout goes in Broker. Try out Broker: XPBar. It's been updated currently.


Originally Posted by Grizzly UK
I'm guessing this is no longer worked on or maintained, especially as the author's profile shows "Last Activity: 09-06-12 05:34 AM". However, just in case the author (or someone else with more knowledge than I possess is around), I'll add that the addon itself has been working fine up until I used a Level 90 character boost and now, for that particular character, whenever I cursor over Arcana's Experience Broker it generates an error and then fails to display anything at all. It still works just fine for all my other characters so I'm guessing that something about the character boost breaks whatever this addon uses to get the info to display.

Failing any possible fix, does anyone know of a suitable and working replacement?


Code:
["message"] = "integer overflow attempting to store 1.#INF",
["count"] = 1,
["addons"] = "  MoncaiCompare, v5.4.0\n  Swatter, v5.14.5335 (KowariOnCrutches)\n  WowheadLooter, v60004\n  Corpse, v5.0.0.1\n  Achieved, v0.4\n  AckisRecipeList, v3.0.5\n  AckisRecipeListCooking, v5.4.8.2\n  ACP, v3.4.9 \n  Adapt, v2.0.11\n  AllPlayed, v50400-2 $Revision: 296 $\n  AraBrokerReputations, vr18\n  AraBrokerTradeskills, vr540.1\n  ArcanaExperienceBroker, v50001.3.2\n  Armory, vv11.2.0\n  ArmoryGuildBank, vv11.2.0\n  Atlas, v1.26.02\n  AtlasBattlegrounds, v1.26.00\n  AtlasBurningCrusade, v1.26.00\n  AtlasCataclysm, v1.26.00\n  AtlasClassicWoW, v1.26.00\n  AtlasDungeonLocs, v1.26.00\n  AtlasOutdoorRaids, v1.26.00\n  AtlasScenarios, v1.26.00\n  AtlasTransportation, v1.26.04\n  AtlasWorldEvents, v3.07\n  AtlasWrathoftheLichKing, v1.26.00\n  AtlasLoot, vv7.07.03\n  AtlasLootCataclysm, vv7.07.03\n  AtlasLootClassicWoW, vv7.07.03\n  AtlasLootLoader, vv7.07.03\n  AtlasLootMistsofPandaria, vv7.07.03\n  AtlasMajorCitiesEnhanced, vv1.02\n  AtlasQuest, v4.8.8\n  BagEnds, v1.1.5\n  BattlePetCount, v1.7.4\n  Bazooka, vv2.4.0\n  BrokerAFK, v2.7.6\n  BrokerCurrencyflow, vv1.4-1\n  BrokerGroup, v\n  BrokerPortals, v1.8.36\n  BrokerQC, v.70\n  BrokerRecount, v1.0\n  BrokerReloadUI, v1.0.0\n  BrokeruClock, v3.3.6\n  BrokerXPBar, v1.7 r045\n  BrokerMounts, v5.07\n  BrokerPets, v5.10\n  ButtonForge, v0.9.32\n  Castbars, v\n  CloseUp, v5.4.002\n  CollectMe, v2.4.13\n  Cromulent, v50400-1\n  CTCore, v5.4.7.0\n  CTLibrary, v5.4.7.0\n  CTMailMod, v5.4.7.0\n  CTPartyBuffs, v5.4.7.0\n  EmoteLDB, v50400-1.0\n  Examiner, v14.05.24\n  FBBroker, v1.19n\n  FBOutfitDisplayFrame, v1.3\n  FBTrackingFrame, v1.2p\n  FishingBuddy, v1.4c\n  FlightMap, v5.4.0.0\n  FlyoutButtonCustom, v2.61\n  GatherMate2, v1.27\n  GatherMateSharing, v1.3\n  GatherSage2, v20101207\n  GFWDisenchantPredictor, v5.2\n  HandyNotes, v1.2.0\n  HandyNotesCityGuide, v1.6.3\n  HandyNotesFlightMasters, v1.0.4\n  HandyNotesGuild, v1.7\n  HandyNotesMailboxes, v1\n  HandyNotesTimelessIsleChests, v1.10\n  HandyNotesTrainers, v1.6.3\n  HandyNotesVendors, v1.6.3\n  InFlight, v5.4.001\n  InFlightLoad, v5.4.001\n  Jobsagoodn, v1.32\n  Juggler, v5.0.0.1\n  LightHeaded, v371\n  LostTreasures, v3.06\n  MailNotifier, v\n  MailNotifierBroker, v\n  Mapster, v1.5.6.1\n  Mendeleev, v3.0\n  MobInfo2, vr71\n  MoncaiQuestTracker, v5.3.0\n  oGlow, v2.2.3\n  Overachiever, v0.73\n  OverachieverTabs, v0.73\n  OverachieverTrade, v0.73\n  PetBattleTeams, v3.2.5\n  PetJournalEnhanced, v2.9.10\n  PlayerLinkMenu, v1.10\n  Prat30, v3.5.8      \n  Prat30Libraries, v\n  QuestCompletist, v100.0\n  Recount, vr1269\n  RepairBroker, v5.4.0\n  sct, v6.65\n  sctd, v6.65\n  shMem, v\n  shPerformance, v\n  SilverDragon, vv3.0.10\n  SocialState, v5.4-Release1\n  SwindlerPreventer, v5.0.1 (15799) BETA\n  TipTac, v14.05.24\n  TipTacItemRef, v14.05.24\n  TipTacTalents, v13.09.21\n  TomTom, vv50400-1.0.0\n  TravelAgent, v5.4.0-1.1.4\n  TrinketMenu, v5.0.4\n  VisualHeal, v\n  Volumizer, v5.3.0-2.2\n  YurysRuneDisplay, vv3.2.1 (90)\n  BlizRuntimeLib_enUS v5.4.8.50400 <eu>\n  (ck=b51)\n",
["locals"] = "(*temporary) = \"%dd \"\n(*temporary) = 1.#INF\n",
["timestamp"] = "2014-10-08 22:28:20",
["context"] = "Global",
["stack"] = "[C]: ?\n[C]: in function `format'\n...\\Arcana_ExperienceBroker\\Arcana_ExperienceBroker.lua:80: in function <...\\Arcana_ExperienceBroker\\Arcana_ExperienceBroker.lua:70>\n...\\Arcana_ExperienceBroker\\Arcana_ExperienceBroker.lua:300: in function `updateToolTip'\n...\\Arcana_ExperienceBroker\\Arcana_ExperienceBroker.lua:314: in function `OnEnter'\nInterface\\AddOns\\Bazooka\\Bazooka.lua:1529: in function `showTip'\nInterface\\AddOns\\Bazooka\\Bazooka.lua:1334: in function <Interface\\AddOns\\Bazooka\\Bazooka.lua:1325>\n",
Last edited by Kyrgune : 11-20-14 at 02:43 PM.
Report comment to moderator  
Reply With Quote
Unread 10-07-14, 11:59 AM  
Grizzly UK
A Black Drake
 
Grizzly UK's Avatar

Forum posts: 85
File comments: 143
Uploads: 0
I'm guessing this is no longer worked on or maintained, especially as the author's profile shows "Last Activity: 09-06-12 05:34 AM". However, just in case the author (or someone else with more knowledge than I possess is around), I'll add that the addon itself has been working fine up until I used a Level 90 character boost and now, for that particular character, whenever I cursor over Arcana's Experience Broker it generates an error and then fails to display anything at all. It still works just fine for all my other characters so I'm guessing that something about the character boost breaks whatever this addon uses to get the info to display.

Failing any possible fix, does anyone know of a suitable and working replacement?


Code:
["message"] = "integer overflow attempting to store 1.#INF",
["count"] = 1,
["addons"] = "  MoncaiCompare, v5.4.0\n  Swatter, v5.14.5335 (KowariOnCrutches)\n  WowheadLooter, v60004\n  Corpse, v5.0.0.1\n  Achieved, v0.4\n  AckisRecipeList, v3.0.5\n  AckisRecipeListCooking, v5.4.8.2\n  ACP, v3.4.9 \n  Adapt, v2.0.11\n  AllPlayed, v50400-2 $Revision: 296 $\n  AraBrokerReputations, vr18\n  AraBrokerTradeskills, vr540.1\n  ArcanaExperienceBroker, v50001.3.2\n  Armory, vv11.2.0\n  ArmoryGuildBank, vv11.2.0\n  Atlas, v1.26.02\n  AtlasBattlegrounds, v1.26.00\n  AtlasBurningCrusade, v1.26.00\n  AtlasCataclysm, v1.26.00\n  AtlasClassicWoW, v1.26.00\n  AtlasDungeonLocs, v1.26.00\n  AtlasOutdoorRaids, v1.26.00\n  AtlasScenarios, v1.26.00\n  AtlasTransportation, v1.26.04\n  AtlasWorldEvents, v3.07\n  AtlasWrathoftheLichKing, v1.26.00\n  AtlasLoot, vv7.07.03\n  AtlasLootCataclysm, vv7.07.03\n  AtlasLootClassicWoW, vv7.07.03\n  AtlasLootLoader, vv7.07.03\n  AtlasLootMistsofPandaria, vv7.07.03\n  AtlasMajorCitiesEnhanced, vv1.02\n  AtlasQuest, v4.8.8\n  BagEnds, v1.1.5\n  BattlePetCount, v1.7.4\n  Bazooka, vv2.4.0\n  BrokerAFK, v2.7.6\n  BrokerCurrencyflow, vv1.4-1\n  BrokerGroup, v\n  BrokerPortals, v1.8.36\n  BrokerQC, v.70\n  BrokerRecount, v1.0\n  BrokerReloadUI, v1.0.0\n  BrokeruClock, v3.3.6\n  BrokerXPBar, v1.7 r045\n  BrokerMounts, v5.07\n  BrokerPets, v5.10\n  ButtonForge, v0.9.32\n  Castbars, v\n  CloseUp, v5.4.002\n  CollectMe, v2.4.13\n  Cromulent, v50400-1\n  CTCore, v5.4.7.0\n  CTLibrary, v5.4.7.0\n  CTMailMod, v5.4.7.0\n  CTPartyBuffs, v5.4.7.0\n  EmoteLDB, v50400-1.0\n  Examiner, v14.05.24\n  FBBroker, v1.19n\n  FBOutfitDisplayFrame, v1.3\n  FBTrackingFrame, v1.2p\n  FishingBuddy, v1.4c\n  FlightMap, v5.4.0.0\n  FlyoutButtonCustom, v2.61\n  GatherMate2, v1.27\n  GatherMateSharing, v1.3\n  GatherSage2, v20101207\n  GFWDisenchantPredictor, v5.2\n  HandyNotes, v1.2.0\n  HandyNotesCityGuide, v1.6.3\n  HandyNotesFlightMasters, v1.0.4\n  HandyNotesGuild, v1.7\n  HandyNotesMailboxes, v1\n  HandyNotesTimelessIsleChests, v1.10\n  HandyNotesTrainers, v1.6.3\n  HandyNotesVendors, v1.6.3\n  InFlight, v5.4.001\n  InFlightLoad, v5.4.001\n  Jobsagoodn, v1.32\n  Juggler, v5.0.0.1\n  LightHeaded, v371\n  LostTreasures, v3.06\n  MailNotifier, v\n  MailNotifierBroker, v\n  Mapster, v1.5.6.1\n  Mendeleev, v3.0\n  MobInfo2, vr71\n  MoncaiQuestTracker, v5.3.0\n  oGlow, v2.2.3\n  Overachiever, v0.73\n  OverachieverTabs, v0.73\n  OverachieverTrade, v0.73\n  PetBattleTeams, v3.2.5\n  PetJournalEnhanced, v2.9.10\n  PlayerLinkMenu, v1.10\n  Prat30, v3.5.8      \n  Prat30Libraries, v\n  QuestCompletist, v100.0\n  Recount, vr1269\n  RepairBroker, v5.4.0\n  sct, v6.65\n  sctd, v6.65\n  shMem, v\n  shPerformance, v\n  SilverDragon, vv3.0.10\n  SocialState, v5.4-Release1\n  SwindlerPreventer, v5.0.1 (15799) BETA\n  TipTac, v14.05.24\n  TipTacItemRef, v14.05.24\n  TipTacTalents, v13.09.21\n  TomTom, vv50400-1.0.0\n  TravelAgent, v5.4.0-1.1.4\n  TrinketMenu, v5.0.4\n  VisualHeal, v\n  Volumizer, v5.3.0-2.2\n  YurysRuneDisplay, vv3.2.1 (90)\n  BlizRuntimeLib_enUS v5.4.8.50400 <eu>\n  (ck=b51)\n",
["locals"] = "(*temporary) = \"%dd \"\n(*temporary) = 1.#INF\n",
["timestamp"] = "2014-10-08 22:28:20",
["context"] = "Global",
["stack"] = "[C]: ?\n[C]: in function `format'\n...\\Arcana_ExperienceBroker\\Arcana_ExperienceBroker.lua:80: in function <...\\Arcana_ExperienceBroker\\Arcana_ExperienceBroker.lua:70>\n...\\Arcana_ExperienceBroker\\Arcana_ExperienceBroker.lua:300: in function `updateToolTip'\n...\\Arcana_ExperienceBroker\\Arcana_ExperienceBroker.lua:314: in function `OnEnter'\nInterface\\AddOns\\Bazooka\\Bazooka.lua:1529: in function `showTip'\nInterface\\AddOns\\Bazooka\\Bazooka.lua:1334: in function <Interface\\AddOns\\Bazooka\\Bazooka.lua:1325>\n",
Last edited by Grizzly UK : 10-09-14 at 03:08 AM.
Report comment to moderator  
Reply With Quote
Unread 09-05-12, 11:01 PM  
keLston
A Deviate Faerie Dragon

Forum posts: 11
File comments: 174
Uploads: 0
Re: Re: Re: Re: 5.0.4 Update

Originally Posted by Arcana
Originally Posted by keLston
Thanks for the update on this and thanks for having written the addon in the first place. Was the best one. It's one of those things you so easily forget when you hit max level and then finally realize you need an xp bar again to find out your XP bar addon no longer functions that you really miss it.
Since you've spent time posting here and asking for an update I decided to go ahead and update this addon for 5.0.4!

It basically works the same as it used to, but I did add in the "display remaining XP" that a few commenters requested a few years ago.

Enjoy!
Wow, that was unexpected! Thank you so much
Report comment to moderator  
Reply With Quote
Unread 09-05-12, 10:34 PM  
Arcana
A Defias Bandit
AddOn Author - Click to view AddOns

Forum posts: 3
File comments: 16
Uploads: 2
Re: Re: Re: 5.0.4 Update

Originally Posted by keLston
Thanks for the update on this and thanks for having written the addon in the first place. Was the best one. It's one of those things you so easily forget when you hit max level and then finally realize you need an xp bar again to find out your XP bar addon no longer functions that you really miss it.
Since you've spent time posting here and asking for an update I decided to go ahead and update this addon for 5.0.4!

It basically works the same as it used to, but I did add in the "display remaining XP" that a few commenters requested a few years ago.

Enjoy!
Report comment to moderator  
Reply With Quote
Unread 09-05-12, 06:12 PM  
keLston
A Deviate Faerie Dragon

Forum posts: 11
File comments: 174
Uploads: 0
Re: Re: 5.0.4 Update

Originally Posted by Arcana
Originally Posted by twestman79
I'm VERY picky about my addons, and find that I absolutely love this addon. Please tell me that it will be updated for 5.0.4. Any info would be appreciated.
Unfortunately I've quit WoW about a year ago and I don't have any plans to further update or maintain this addon. I also unfortunately don't have any recommendations for similar addons. I'm sorry
Thanks for the update on this and thanks for having written the addon in the first place. Was the best one. It's one of those things you so easily forget when you hit max level and then finally realize you need an xp bar again to find out your XP bar addon no longer functions that you really miss it.
Report comment to moderator  
Reply With Quote
Unread 09-03-12, 09:51 AM  
Arcana
A Defias Bandit
AddOn Author - Click to view AddOns

Forum posts: 3
File comments: 16
Uploads: 2
Re: 5.0.4 Update

Originally Posted by twestman79
I'm VERY picky about my addons, and find that I absolutely love this addon. Please tell me that it will be updated for 5.0.4. Any info would be appreciated.
Unfortunately I've quit WoW about a year ago and I don't have any plans to further update or maintain this addon. I also unfortunately don't have any recommendations for similar addons. I'm sorry
Report comment to moderator  
Reply With Quote
Unread 09-03-12, 09:45 AM  
twestman79
A Kobold Labourer

Forum posts: 0
File comments: 1
Uploads: 0
5.0.4 Update

I'm VERY picky about my addons, and find that I absolutely love this addon. Please tell me that it will be updated for 5.0.4. Any info would be appreciated.
Report comment to moderator  
Reply With Quote
Post A Reply



Category Jump: