Help

Broker_MicroMenu

Data Broker Login to Add Favorites
  • 4 Likes
  • Project Manager: yess
  • World of Warcraft
  • 26,171 Downloads
  • Supports: 4.2
  • 12 Average Daily Downloads
  • Comments
  • Created 11/23/2009 1:49:39 PM
  • Updated 11/1/2011 11:12:35 AM
  • 241 Favorites
  • Project Site
  • License: All Rights Reserved
  • Release Type: Release
  • Newest File: v1.3.1
or
Support development! **
Donate

About Broker_MicroMenu

Shows the micro menu and game menu in a clickable broker tooltip. Also shows your fps and latency.

Broker_MicroMenu does not provide it’s own display, you will need a LDB-based display addon.

Known Problems:
When opening the spellbook via Broker MicroMenu, the spells can not be clicked. You can still drag them to your actionbars. This is a problem related to secure code and can not be fixed because of how the data broker system works. (Just use your hotkey for the spellbook if you want to click the spells there).

------------------------------------------------------------------------
r23 | yess | 2011-11-01 16:10:59 +0000 (Tue, 01 Nov 2011) | 1 line
Changed paths:
   A /tags/v1.3.1 (from /trunk:22)

Tagging as v1.3.1
------------------------------------------------------------------------
r22 | yess | 2011-11-01 16:04:38 +0000 (Tue, 01 Nov 2011) | 2 lines
Changed paths:
   M /trunk/.pkgmeta
   M /trunk/Broker_MicroMenu.lua
   M /trunk/Broker_MicroMenu.toc
   M /trunk/Options.lua
   M /trunk/localization.lua

Added option to hide fps.
Fixed libs.
------------------------------------------------------------------------
r20 | yess | 2011-10-29 14:09:35 +0000 (Sat, 29 Oct 2011) | 3 lines
Changed paths:
   M /trunk/.pkgmeta
   M /trunk/Broker_MicroMenu.lua
   M /trunk/Broker_MicroMenu.toc
   A /trunk/Options.lua
   A /trunk/localization.lua
   A /trunk/media/journal.tga
   A /trunk/media/raid.tga

Added options to show/hide home/world latency. World latency is now the default one. Ticket #13
Added options to show fps first. Ticket #6
Added localization.
------------------------------------------------------------------------
r18 | yess | 2011-10-02 12:49:57 +0000 (Sun, 02 Oct 2011) | 1 line
Changed paths:
   M /trunk/Broker_MicroMenu.lua
   M /trunk/Broker_MicroMenu.toc

Added dungeon jornal.
------------------------------------------------------------------------

Comments

First Previous Page 1 of 4 Next Last
  • #47

    Latency information is showing as 0 ms, for both World and Home latency, since patch 4.3. I tried to see if there was a new setting in the standard WoW settings, which can sometimes interact unpredictably with an addon's feature set, but didn't find anything to help correct this issue. Any thoughts on how to correct this?

  • #48

    If you have a mac, the latency is a known mac issue and nothing to do with this addon.

    http://us.battle.net/wow/en/forum/topic/3657275821?page=1

  • #46

    Hi

    there seems to be some kind of problem with campatibility with EPGP.  as soon as my guild was dishing out loot in our raid last night, i got an error message and then a forced reload of my ui.  when the reload was done, Broker_MicroMenu was disabled.  

    Any chance of a fix?

  • #44

    I get errors with the latest update.

    With just bugsack, buggrabber, buttonbin and broker_microMenu running:

     

    1x Broker_MicroMenu-v1.0\Broker_MicroMenu.lua:4: Cannot find a library instance of "AceLocale-3.0".
    Broker_MicroMenu-v1.0\libs\LibStub\LibStub.lua:38: in function `LibStub'
    Broker_MicroMenu-v1.0\Broker_MicroMenu.lua:4: in main chunk

    Locals:
    self = <table> {
    NewLibrary = <function> @ Broker_MicroMenu\libs\LibStub\LibStub.lua:20:
    minors = <table> {}
    minor = 2
    IterateLibraries = <function> @ Broker_MicroMenu\libs\LibStub\LibStub.lua:46:
    GetLibrary = <function> @ Broker_MicroMenu\libs\LibStub\LibStub.lua:36:
    libs = <table> {}
    }
    major = "AceLocale-3.0"

    Last edited by EkaterinaR on 11/1/2011 7:03:49 AM
  • #45

    Do you have the nolib version of Broker_MicroMenu?

  • #40
    Any plans on an update for WoW 4.2? The spellbook icon does not work correctly, please fix it! Thanks!
  • #43

    This can not be fixed because of how data broker works. Use a key binding for your spell book if you want to click the spells directly in the spell book instead of dragging them to an action bar.

  • #39
    Sorry for my bad english i'm french ^^

    I have knock something up can display Dungeon journal but it can't close window and display the small icon...

    ps: I don't know anything about lua so save your file and pray to not have a blue screen of the death :p, finaly i've try that only on a french version.

    Add this text at line 229:

    local y, x = tooltip:AddLine()
    tooltip:SetCell(y, 1, "", myProvider)
    tooltip:SetCell(y, 2, ENCOUNTER_JOURNAL)
    tooltip:SetLineScript(y, "OnMouseUp", MouseHandler, function() EncounterJournal_OpenJournal(nil) end)
  • #38
    Can we get the new Raid and Dungeon Journal buttons added? I really like this mod.

    Also on a side not the icon for guild on the game button displays your tabard, that would be cool to update this also.
  • #41

    Added in v1.3.

  • #37
    If you want both World and Home latency, replace the UpdateText() function at line 82 with the following:

    local function UpdateText()
    local fps = floor(GetFramerate())
    local bandwidthIn, bandwidthOut, latencyHome, latencyWorld = GetNetStats()

    local fpsColor, latencyHomeColor, latencyWorldColor

    30 then
    fpsColor = "|cff00ff00"
    20 then
    fpsColor = "|cffffd200"
    else
    fpsColor = "|cffdd3a00"
    end

    if latencyHome
    latencyHomeColor = "|cff00ff00"
    dataobj.icon = path.."green.tga"
    elseif latencyHome
    latencyHomeColor = "|cffffd200"
    dataobj.icon = path.."yellow.tga"
    else
    latencyHomeColor = "|cffdd3a00"
    dataobj.icon = path.."red.tga"
    end

    if latencyWorld
    latencyWorldColor = "|cff00ff00"
    dataobj.icon = path.."green.tga"
    elseif latencyWorld
    latencyWorldColor = "|cffffd200"
    dataobj.icon = path.."yellow.tga"
    else
    latencyWorldColor = "|cffdd3a00"
    dataobj.icon = path.."red.tga"
    end

    dataobj.text = string.format("H:%s%4i|r ms W:%s%4i|r ms %s%3i|r fps", latencyHomeColor, latencyHome, latencyWorldColor, latencyWorld, fpsColor, fps )
    end
  • #42

    Added in v1.3.

  • #36
    AWESOME MOD! I made a small hack to switch around the latency and FPS. Thanks for posting this mod!
  • #34
    Ups sorry, I already had a fix that worked with 4.06 and 4.1 (PTR) but completely forgot to release it;)
  • #35
    Is there anyway you could incorporate the World/Server Latency in the addon. As of right now it shows the old server latency only.
  • To post a comment, please login or register a new account.
Learn how to disable ads
Learn how to disable ads
Login to Curse

Don't have an account? Create One.

Get an epic experience with Curse Premium
  • Faster Addon Downloads
  • Premium-Only Beta Giveaways
  • Ad-Free Curse.com Experience
  • Premium Curse Client
  • and many More Features
  • Learn More »

Minecraft 3D Print Giveaway

Enter Now!