• World of Warcraft Addons
  • World of Warcraft
  • Average Rating:

  • Your Rating

  • Share
  • Report Abuse

FuBar_ProfessionsFu

 
Project Updated:
Files Updated: Thu, Aug 27 2009
Supports Game Version: 3.2.0
Category: Professions
Tags:

, , , , , and [Edit Tags]

Project Manager: Anxarces
Additional Authors: No additional authors
Current Version: 3.0.5
License: All Rights Reserved
Development Site: WowAce.com
Avg Daily DL (last 30 days): 36
Downloads Total: 130,428
Favorites: 299
Comments: 19
  • About FuBar_ProfessionsFu
  •  

Overview

This plugin adds professions to a FuBar menu. It gives an overview of the skill level of each profession. Each profession entry in the menu can be clicked to open the corresponding profession window. Clicking on a gathering professions has no effect.

If you use TitanPanel please use TitanProfessions (http://www.curse.com/downloads/details/9963/) instead.

If you have ProfessionsBook installed (http://www-en.curse-gaming.com/downloads/details/8423/) an additional entry to open that addon is added to the menu.

Features

  • List all professions which open a professions window and open them
  • List skill levels of professions
  • Add a menu entry to ProfessionsBook if that addon is installed
  • Downloads (6)
  •  
File Name Release Type Game Version Downloads Date
Addon Curse.com Beta 2.3.3 0 9/29/2008
  File Name Release Type Game Version Downloads Date  
  FuBar_ProfessionsFu 3.0.5 Release 3.2.0 22,217 8/27/2009
  FuBar_ProfessionsFu 3.0.4 Release 3.0.8 34,215 2/2/2009
  FuBar_ProfessionsFu 3.0.3 Release 3.0.8 5,707 1/31/2009
  FuBar_ProfessionsFu 3.0.2 Release 3.0.3 16,964 11/23/2008
  FuBar_ProfessionsFu 3.0.1 Release 3.0.2 18,727 10/18/2008
  • Screenshots (1)
  •  
  • Comments

Add Comment  

Add

You need to login or register to post.

Benefits of Registration

  • Interact with hundreds of thousands of other gamers on an open social network.
  • Post your stories, news, images, videos, and other content to share.
  • Create a network with your fellow gamers or join an existing one.
  • Gain reputation for everything you do.
  • ch0mb0r said

    а есть аддон/скрипт который пишет уровень профы прямо на иконке?

    Reply Report Permalink
  • cremor said

    Oh and "Alchimie" was changed to "Alchemie".

    But the best would be if you get the translation from the WoW API with GetSpellInfo(spellId). Then your Addon would support all languages.

    Reply Report Permalink
  • cremor said

    @Anxarces
    In 3.0.8, the deDE translation for grandmaster cooking was changed back to the correct "Kochkunst". Could you please update ProfessionsFu?

    Reply Report Permalink
  • Sayrox said

    Translate this addon to russian please.

    Locale-ruRU.lua:
    ---------------------------------------------------------
    local L = AceLibrary("AceLocale-2.2"):new("ProfessionsFu")

    L:RegisterTranslations("ruRU", function() return {
    ["Professions"] = "Профессии",
    ["Alchemy"] = "Алхимия",
    ["Blacksmithing"] = "Кузнечное дело",
    ["Enchanting"] = "Наложение чар",
    ["Engineering"] = "Инжинерия",
    ["Jewelcrafting"] = "Ювелирное дело",
    ["Leatherworking"] = "Кожевничество",
    ["Mining"] = "Горное дело",
    ["Tailoring"] = "Портняжное дело",
    ["Cooking"] = "Кулинария",
    ["CookingCmd"] = "Кулинария",
    ["First Aid"] = "Первая помощь",
    ["Smelting"] = "Выплавка металлов",
    ["Main Professions"] = "Основные профессии",
    ["Secondary Professions"] = "Вторичные навыки",
    ["Gathering"] = "Собирательство",
    ["Poisons"] = "Яды",
    ["Runeforging"] = "Ковка рун",
    ["RuneforgingCmd"] = "Гравирование",
    ["Fishing"] = "Рыбная ловля",
    ["Herbalism"] = "Травничество",
    ["Skinning"] = "Снятие шкур",
    ["Inscription"] = "Начертание",
    ["Open ProfessionsBook"] = "Открыть ProfessionsBook",
    ["Hide title"] = "Скрывать название",
    ["Hide title and display icon only."] = "Скрывать название и отображать только иконку"
    } end)
    ---------------------
    Encoding: UTF-8

    Thank you!

    Reply Report Permalink
  • Estadon said

    Thanks for the fix, dude! :)

    Reply Report Permalink
  • Estadon said

    Of course I meant FuBar_ProfessionsBook.

    Reply Report Permalink
  • Estadon said

    I'm using the german client, too and Cooking won't open up anymore for me either. I think it's somehwat broken the way Alchemy is.
    As I have some programming skills (but not in LUA unfortunately) I tried to fix it like this:

    function ProfessionsFu:OpenProfession(prof)
    -- Opening alchemy is broken since 2.2.0. This is a work around.
    if prof == L["Alchemy"] then
    CastSpell(1, "spell")
    else if prof == L["Cooking"] then
    CastSpell(11, "spell")
    else
    CastSpellByName(prof)
    end
    end

    Cooking is the eleventh entry in my spell book and when replacing 1 by 11 without any other changes it will open the cooking window. With the above changes however ProfessionsBook disappears form FuBar after I reload my UI.
    So what's wrong with the changes I made, Anxarces?

    Reply Report Permalink
  • Rinnsal said

    On my German Client, Cooking doesn't open anymore...

    Reply Report Permalink
  • exdeath202 said

    Hello, this is a great addon, i would love having it in my language. I play in european version. When i play in english language it works great, but when i change the language to spanish, when i put the cursor on professions, the tab doesnt show my professions, it just says "professions". I seems easy to fix but i dont know how to do it, please explain me how to do it or make it spanish version friendly :D

    Reply Report Permalink
  • Anxarces said

    I assume you are using the french version of WoW. First Aid had been renamed. A fix will be included in the next release of ProfessionsFu.

    Disenchanting is not displayed because it shares the same skill level as enchanting. Or do you mean, that enchanting is not displayed? For me it works find, even in the french version of the game.

    Fishing is like all other 'gathering' professions. It does not open a profession window. It would result in an interaction with the character's environment. As far as I know, it is not possible to interact in such a way through FuBar. These gathering skills are listed for completeness only.

    Reply Report Permalink
  • Maybe one suggestion, dunno how it would work, but maybe on the gathering professions if clicking on it simply opened the skills frame. *shrugs* Dunno, just something I thought of.

    Reply Report Permalink
  • omer92 said

    I have few problems:

    desenchanting and First aid don't appear.

    Fishing appears but when I click on it, it happens nothing.

    Reply Report Permalink
  • Anxarces said

    @Butters: I think your comment is related to ProfessionsBook. Including unkown recipes is a feature that may be included at a later time. At the moment I have more urgent thinks to fix/include.

    Reply Report Permalink
  • Butters said

    Is it possible to get list of recipes you don't know yet.

    I have been using FGTradeLacker, but the creator stopped wow, and therefore stopped developing the mod. I have searched for a replacement ever since. Hope you can help me :)

    Thanks in advance.

    Reply Report Permalink
  • Anxarces said

    It is possible that you encountered an error in ProfessionsBook. There were a few things missing which I have corrected in version 1.01 of both ProfessionsBook and ProfessionsFu. Please download the new versions and hopefully your problem should be fxed.

    Reply Report Permalink
  • I do have ProfessionsBook installed. I did NOT click on a sub menu before, I will try this. En version

    Reply Report Permalink
  • Anxarces said

    Does the tooltip open and list your professions? Do you have ProfessionsBook installed? If yes, your tooltip should look like the screenshot provided above. Clicking on one of the entries should either open the approriate profession window or the ProfessionBook.

    Which language version of WoW do you use? I have tested the addon with the English and German versions only.

    Reply Report Permalink
  • I click the Fubar icon, doesn't do anything. from what I read on the tooltip all I needed to do was click on the tooltip and it would open up ProfessionsBook....not doing that for me, and no error either. Do you have a built in debugger code I can turn on?

    Reply Report Permalink
  • Anxarces said

    @justcallmefred: What exactly do you mean with "would not open ProfessionsBook"?

    Reply Report Permalink
  • Would not open ProfessionsBook .

    Reply Report Permalink
  • 1 page(s)
  • Addon Packs Containing FuBar_ProfessionsFu
  • Similar Addons
  •  

Average downloads per day

  1. 17,127 Atlasloot Enhanced Arena, Map & Minimap, Professions...
  2. 1,528 Altoholic Guild, Bags & Inventory, Mail...
  3. 1,374 Ackis Recipe List Professions, and Data Export
  4. 1,107 Fishing Buddy Professions, and Fishing
  5. 607 Armory Bags & Inventory, Guild, Professions...