Levelator 3.3

  • Updated TOC to indicate compatibility with WoW Patch 3.3.
  • Re-added a space between the level tag and quest title (e.g. “[80] The Edge of Winter”, not “[80]The Edge of Winter”).

11 Responses to “Levelator 3.3”

  1. Jordicus Says:

    error as of patch 3.3.3

    [“message”] = “GFW_Levelator-3.3\\Levelator.lua:44: bad argument #2 to ‘SetFormattedText’ (number expected, got nil)\nGFW_Levelator-3.3\\Levelator.lua:44: in function `FLV_UpdateGossipQuests’\nGFW_Levelator-3.3\\Levelator.lua:12: in function <Interface\\AddOns\\GFW_Levelator\\Levelator.lua:5>\n\nLocals:|r\n(for index) = 4\n(for limit) = 4\n(for step) = 3\ni = 4\nbutton = GossipTitleButton2 {\n 0 = \n type = \”Active\”\n}\n\n —“,

  2. Onomatapia Says:

    Levelator is throwing up massive error messages now that the 3.3.3 patch has gone live.

  3. Arinbjörn Says:

    Getting the following error in Levelator:

    Date: 2010-03-26 09:01:36 ID: 2 Error occured in: Global Count: 1 Message: ..\AddOns\GFW_Levelator\Levelator.lua line 44: bad argument #2 to ‘SetFormattedText’ (number expected, got nil) Debug: (tail call): ? GFW_Levelator\Levelator.lua:44: FLV_UpdateGossipQuests() GFW_Levelator\Levelator.lua:8: GFW_Levelator\Levelator.lua:5

  4. Rick Says:

    Will there be a new version for patch 3.3.3? The current release is throwing an error whenever I talk with a quest giver that has more than one quest.

  5. Brad Morgan Says:

    I get the following error when turning in a quest where the NPC has multiple quests to be turned in.

    Date: 2010-03-27 13:07:23 ID: -1 Error occured in: Global Count: 2 Message: ..\AddOns\GFW_Levelator\Levelator.lua line 44: bad argument #2 to 'SetFormattedText' (number expected, got nil) Debug: (tail call): ? (tail call): ? GFW_Levelator\Levelator.lua:44: FLV_UpdateGossipQuests() GFW_Levelator\Levelator.lua:12: GFW_Levelator\Levelator.lua:5 AddOns: [ snipped for page readability -Gazmik ]

  6. Bronzeburn Says:

    Get the same. Something broke in when going from 3.3.2 to 3.3.3

  7. Jordicus Says:

    i have posted a quick kludge fix for 3.3.3 on wowinterface. http://www.wowinterface.com/downloads/info16314.html

  8. Xod Says:

    The problem is that the game is also returning unshown quests with the GetGossipAvailableQuests() call and they have “nil” for the level.

    One possible fix that I have tested is to add the following line above line 41 of Levelator.lua:

                if (not button:IsShown()) then return end;
    

    Afterwards it should look like this:

    function FLV_UpdateGossipQuests(…) for i = 1, select(“#”, …), 3 do local button = getglobal(“GossipTitleButton”..FLV_ButtonIndex); if (not button:IsShown()) then return end; if ( select(i+2, …) ) then

  9. Xod Says:

    Hmm, failed at that last part. Here’s another try at what it should look like.

    function FLV_UpdateGossipQuests(...)
            for i = 1, select("#", ...), 3 do
                    local button = getglobal("GossipTitleButton"..FLV_ButtonIndex);
                    if (not button:IsShown()) then return end;
                    if ( select(i+2, ...) ) then
    
  10. BethanyAnne Says:

    Yea, I get basically the same error. Not the list of addons, of course, but the actual error.

  11. Gazmik Fizzwidget Says:

    Sorry, I’ve been a bit overworked lately and unable to deal with this issue quickly. Thanks Xod and others for trying to help with the problem (actually, it wasn’t that the API was returning for nonexistent quests, but that it now returns more data fields than before). Levelator 3.3.1 is now available with a complete fix.

To leave feedback on a Fizzwidget Industries product, visit us on Github. There you can report bugs, contribute enhancements, or just live on the bleeding edge.