• Dear Guest,

    You're browsing our forum as a Guest meaning you can only see a portion of the forum in read-only mode.
    To view all forum nodes and be able to create threads/posts please register or log-in with your existing account.

    TwinStar team

Meta Map Error message

Rockmaster

Authorized
Joined
Dec 25, 2014
Hey guys!

I am using MetaMap for a long time now without any problems.
Recently I installed FuBar and since then I get the following error message on every log in (I have improved error frame):

Count: 1
Error: Interface\AddOns\MetaMap\MetaMap.lua:3238: attempt to index global `TabletLib' (a nil value)


Both addons work properly but this error message + sound when logging in just annoys me to the max :(

Is any addon/programming expert here who can help me fix that?

Looking forward to your response!
 
Pretty sure this has to do with the fubar integration. I fixed it by commenting out lines 3228-3252 and 163-165 of metamap.lua

hope that helps

-- if (IsAddOnLoaded("FuBar")) then
-- MetaMap_FuBar_OnLoad();
-- end







----------------
-- FuBar Support
----------------
-- function MetaMap_FuBar_OnLoad()
-- local tablet = TabletLib:GetInstance('1.0')

-- MetaMapFu = FuBarPlugin:GetInstance("1.2"):new({
-- name = METAMAP_TITLE,
-- version = METAMAP_VERSION,
-- description = METAMAP_DESC,
-- aceCompatible = 103,
-- category = "map",
-- hasIcon = METAMAP_ICON,
-- hasNoText = TRUE,
-- })


-- function MetaMapFu:OnClick()
-- MetaMap_ToggleFrame(WorldMapFrame);
-- end
-- function MetaMapFu:UpdateTooltip()
-- MetaMapMenu_OnShow("FuBar");
-- end


-- MetaMapFu:RegisterForLoad();
-- end
 
Top Bottom