1. Carbonite LUA errors

    Hello,

    I'm using Carbonite and found that LUA endless errors appears when you mouseover Northrend and Outland

    I've found a solution, so i share it :
    Delete the 18256st line in Carbonite.lua file in "addon/Carbonite" Folder (using a text editor) :
    return format("%s%s %d/%d",col2,nam,cnt,nee)

    Deleting this may affect something else... but for now on, no problems occured!

    (FYI: The error seems to come from (for what I understand) that the "format" should be "string" but it's returning "nil" instead, so errors keep infinitely happening cause it always and repetitly return "nil" values. By deleting this line, the script do not try to "return" in the specific function of the line : function Nx.Que:GZA(alw))

    Carbonite it's so a musthave in terms of maps and quests with all it's features... i'm glad i've found a way to keep it ^^

  2. Ok i've found a better way to keep script to triggering in non extension locations
    So i share you the entire addon, now working without the bug :
    https://mega.nz/file/ohJTXB6A#AD3Rz8...AaP2o4NAd2SxK0

    If you wanna use, copy paste all carbonites folders in your Wow/interface/addons folder.
    When instaled, right clic on the carbonite icon, on your minimap, then "options", then go in "Privacy & Com" and uncheck :
    To friend
    To guild
    To zone
    (it ll prevent the "unable to speak caused by spamming msg" problem)

    Enjoy ;)

    For those interested with what is modified :
    I've replaced this :
    Spoiler: Show

    function Nx.Que:GZA(alw)
    local mId=Nx.Map:GCMI()
    local a=Nx.Map.MWI[mId].QAI
    if a then
    local id,nam,_,don=GetAchievementInfo(a)
    if alw or not don then
    local _,_,don,cnt,nee=GetAchievementCriteriaInfo(a,1)
    local col2=don and "|cff808080" or "|cff8080ff"
    return format("%s%s %d/%d",col2,nam,cnt,nee)
    end
    end
    end

    With this :
    Spoiler: Show

    function Nx.Que:GZA(alw)
    local mId=Nx.Map:GCMI()
    local a=Nx.Map.MWI[mId].QAI
    if a then
    local id,nam,_,don=GetAchievementInfo(a)
    if alw or not don then
    local _,_,don,cnt,nee=GetAchievementCriteriaInfo(a,1)
    local col2=don and "|cff808080" or "|cff8080ff"
    if s or d ~= nil then
    return format(" ",col2,nam,cnt,nee)
    else
    return format("%s%s %d/%d",col2,nam,cnt,nee)
    end
    end
    end
    end

  3. Forgot to mention :
    in "Privacy & Com" , check
    -Disable global channel
    -Disable zone channel

    (it ll prevent the irritatings passwords asking popups that launches at each start of game and different zones entering)

  4. Old link is dead, here the new link, sorry I don't know how to edit msgs ^^'

    https://mega.nz/file/doBEnChZ#YIxMEF...orpKZn3BrDjyJI

  5. Tested the addon and its working. thanks for the share! ;)

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •