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

  • Your Rating

  • Share
  • Report Abuse

FuBar_ProfessionsFu

  Download the Curse Client

Project Updated:
Files Updated: Sun, Nov 23 2008
Category: Professions
Tags:

, , , , , and [Edit Tags]

Project Manager: Anxarces
Current Version: 3.0.2
Downloads Today: 485
Downloads Total: 59,561
Favorites: 0
Comments: 16
  • 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 (7)
  •  
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.2 Release 3.0.3 8,591 11/23/2008
  FuBar_ProfessionsFu 3.0.1 Release 3.0.2 18,567 10/18/2008
  FuBar_ProfessionsFu 3.0.0b Release 3.0.2 4,447 10/17/2008
  FuBar_ProfessionsFu 3.0.0 Release 3.0.2 3,558 10/16/2008
  FuBar_ProfessionsFu 1.5.2 Release 2.4.2 5,087 5/21/2008
Advertisement
  • 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.
  • Estadon said 

    Thanks for the fix, dude! :)

    Reply Permalink
  • Estadon said 

    Of course I meant FuBar_ProfessionsBook.

    Reply 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?