1. Addons Not Working - Error Message

    Hi Guys,

    I am trying to install a co ordinates mod, I install the mod via Curse and enable the mod but it comes up with an error when I log in, for example:

    \Tom Tom\Here Be Dragons 1.0 attempt to call global 'wipe' (nill value)

    Any help would be appreciated!

  2. Function "wipe" doesnt exist in 2.4.3 by default. So you'll have to create it yourself

    Create Addon, let's call it !Compat

    ! is for loading it among first addons.

    Create folder Interface\AddOns\!Compat

    Create file in that folder named !Compat.toc with contents:

    ##Interface: 20400
    ##Title: Compat

    main.lua


    Next we create main.lua file in the addon folder. Contents for this would be


    local pairs = pairs

    function wipe(t)
    for k,v in pairs(t) do
    t[k] = nil
    end
    return t
    end


    And you are done. Alternatively you copy paste the function into addon and hope it is loaded before it is used. There are addons made by developers to make 3.3.5a addons compatible with tbc so I'd recommend finding one of those.

  3. be sure to click load out of date add ons.

Posting Permissions

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