Addon Information
Download Latest Version.
To add favorites please register for a free account. If you already have one you need to login. How do I install this? (FAQ)
Author:
Version:
1.01
Date:
08-13-2009 08:09 PM
Size:
7.49 Kb
Downloads:
3,835
Favorites:
54
MD5:
Pictures
Click to enlarge
nUI InfoPanel Profesions
this is Xrystal MagePorts addon modified to be used for profesions to save button space in your action bars


)
  Change Log - nUI InfoPanel Profesions
added two more buttons
1)runeforgeing -for dk
2)lockpicking -for rogue
and a third row so it didnt look so clutered

(also uploaded this one in .zip form for the ones who cant open .rar files
  Optional Files - nUI InfoPanel Profesions
Sorry, there are currently no optional files available.
  Archived Versions - nUI InfoPanel Profesions
File Name
Version
Size
Author
Date
1
7kB
lairdofdeath
08-10-2009 11:27 AM
  Comments - nUI InfoPanel Profesions
Post A Reply Comment Options
Old 12-26-2009, 12:52 PM  
Eliria516
A Deviate Faerie Dragon

Forum posts: 15
File comments: 1
Uploads: 0
Hmm this won't work for me. I put in mage portals and healbot without a problem.
Eliria516 is offline Report comment to moderator   Edit/Delete Message Reply With Quote
Old 10-05-2009, 03:12 PM  
jhahn201
A Kobold Labourer

Forum posts: 0
File comments: 1
Uploads: 0
Pally Buff Bar

How hard would it be to make an addon like this for all the Pally Buffs?
jhahn201 is offline Report comment to moderator   Edit/Delete Message Reply With Quote
Old 08-20-2009, 05:16 PM  
Petrah
nUI User & Supporter
 
Petrah's Avatar
Premium Member
Interface Author - Click to view interfaces

Forum posts: 2238
File comments: 175
Uploads: 10
Quote:
Originally posted by lairdofdeath
i rechecked the code and i cant find a reason for it to not work
I'll have him delete the addon and reinstall it. Hopefully that will work.
Petrah is offline Report comment to moderator   Edit/Delete Message Reply With Quote
Old 08-20-2009, 11:57 AM  
lairdofdeath
An Aku'mai Servant
Interface Author - Click to view interfaces

Forum posts: 38
File comments: 3
Uploads: 1
Quote:
Originally posted by Silenia
Yes, same version that I do, and mine works.
i rechecked the code and i cant find a reason for it to not work
lairdofdeath is offline Report comment to moderator   Edit/Delete Message Reply With Quote
Old 08-19-2009, 12:06 AM  
Petrah
nUI User & Supporter
 
Petrah's Avatar
Premium Member
Interface Author - Click to view interfaces

Forum posts: 2238
File comments: 175
Uploads: 10
Quote:
Originally posted by lairdofdeath
i dont why it wouldn't work i tested it on my lvl 80 my wifes lvl 75 and even started a new on a dif server and it works just fine so this is confusing

he does have ver 1.01 and not ver 1 rite
Yes, same version that I do, and mine works.

Last edited by Petrah : 08-19-2009 at 12:06 AM.
Petrah is offline Report comment to moderator   Edit/Delete Message Reply With Quote
Old 08-17-2009, 05:44 PM  
lairdofdeath
An Aku'mai Servant
Interface Author - Click to view interfaces

Forum posts: 38
File comments: 3
Uploads: 1
Quote:
Originally posted by Silenia
Question.. on my roommates computer, his Rune Forging isn't showing up on the panel for some reason. Any ideas as to why?
i dont why it wouldn't work i tested it on my lvl 80 my wifes lvl 75 and even started a new on a dif server and it works just fine so this is confusing

he does have ver 1.01 and not ver 1 rite
lairdofdeath is offline Report comment to moderator   Edit/Delete Message Reply With Quote
Old 08-17-2009, 03:00 PM  
Petrah
nUI User & Supporter
 
Petrah's Avatar
Premium Member
Interface Author - Click to view interfaces

Forum posts: 2238
File comments: 175
Uploads: 10
Question.. on my roommates computer, his Rune Forging isn't showing up on the panel for some reason. Any ideas as to why?
Petrah is offline Report comment to moderator   Edit/Delete Message Reply With Quote
Old 08-15-2009, 05:58 AM  
Depresjon
A Chromatic Dragonspawn
 
Depresjon's Avatar
Interface Author - Click to view interfaces

Forum posts: 194
File comments: 24
Uploads: 11
nice panel
__________________



New!!!
Depresjon's nUI corner : link

Depresjon is offline Report comment to moderator   Edit/Delete Message Reply With Quote
Old 08-14-2009, 12:55 AM  
Xrystal
nUI User and Supporter
 
Xrystal's Avatar
Premium Member
Interface Author - Click to view interfaces

Forum posts: 2409
File comments: 118
Uploads: 15
Just to let you know, you could adjust the DBs to only include the spell IDs. The only reason the MagePortals had quest and faction values was because the dalaran portal is gained via a quest and the portals and teleportal spells are faction specific.

You could cut alot of that code down by adjusting that side of things.

Code:
---------------------------------------------------
-- [v1.01.00] Initialise top Spell Database
---------------------------------------------------
local function Profesions_InittopDB()
	topDB = {};
	table.insert(topDB, { quest = false, spell =  7411, faction = _L["ALLIANCE"] } );
	table.insert(topDB, { quest = false, spell = 45359, faction = _L["ALLIANCE"] } );
	table.insert(topDB, { quest = false, spell = 31252, faction = _L["ALLIANCE"] } );
	table.insert(topDB, { quest = false, spell =  3908, faction = _L["ALLIANCE"] } );
	table.insert(topDB, { quest = false, spell =  4036, faction = _L["ALLIANCE"] } );
	table.insert(topDB, { quest = false, spell =  2259, faction = _L["ALLIANCE"] } );
	table.insert(topDB, { quest = false, spell =  7411, faction = _L["HORDE"] } );
	table.insert(topDB, { quest = false, spell = 45359, faction = _L["HORDE"] } );
	table.insert(topDB, { quest = false, spell = 31252, faction = _L["HORDE"] } );
	table.insert(topDB, { quest = false, spell =  3908, faction = _L["HORDE"] } );
	table.insert(topDB, { quest = false, spell =  4036, faction = _L["HORDE"] } );
	table.insert(topDB, { quest = false, spell =  2259, faction = _L["HORDE"] } );
end
---------------------------------------------------
-- [v1.01.00] Initialise bottom Spell Deatabase
---------------------------------------------------
local function Profesions_InitmiddleDB()	
	middleDB = {};
	table.insert(middleDB, { quest = false, spell = 13262, faction = _L["ALLIANCE"] } );
	table.insert(middleDB, { quest = false, spell = 51005, faction = _L["ALLIANCE"] } );
	table.insert(middleDB, { quest = false, spell =  2656, faction = _L["ALLIANCE"] } );
	table.insert(middleDB, { quest = false, spell =  2108, faction = _L["ALLIANCE"] } );
	table.insert(middleDB, { quest = false, spell =  3538, faction = _L["ALLIANCE"] } );
	table.insert(middleDB, { quest = false, spell = 25229, faction = _L["ALLIANCE"] } );
	table.insert(middleDB, { quest = false, spell = 13262, faction = _L["HORDE"] } );
	table.insert(middleDB, { quest = false, spell = 51005, faction = _L["HORDE"] } );
	table.insert(middleDB, { quest = false, spell =  2656, faction = _L["HORDE"] } );
	table.insert(middleDB, { quest = false, spell =  2108, faction = _L["HORDE"] } );
	table.insert(middleDB, { quest = false, spell =  3538, faction = _L["HORDE"] } );
	table.insert(middleDB, { quest = false, spell = 25229, faction = _L["HORDE"] } );
end

local function Profesions_InitbottomDB()	
	bottomDB = {};
	table.insert(bottomDB, { quest = false, spell =  2550, faction = _L["ALLIANCE"] } );
	table.insert(bottomDB, { quest = false, spell =  3273, faction = _L["ALLIANCE"] } );
	table.insert(bottomDB, { quest = false, spell = 51294, faction = _L["ALLIANCE"] } );
	table.insert(bottomDB, { quest = false, spell =   818, faction = _L["ALLIANCE"] } );
	table.insert(bottomDB, { quest = false, spell = 53428, faction = _L["ALLIANCE"] } );
	table.insert(bottomDB, { quest = false, spell =  1804, faction = _L["ALLIANCE"] } );
	table.insert(bottomDB, { quest = false, spell =  2550, faction = _L["HORDE"] } );
	table.insert(bottomDB, { quest = false, spell =  3273, faction = _L["HORDE"] } );
	table.insert(bottomDB, { quest = false, spell = 51294, faction = _L["HORDE"] } );
	table.insert(bottomDB, { quest = false, spell =   818, faction = _L["HORDE"] } );
	table.insert(bottomDB, { quest = false, spell = 53428, faction = _L["HORDE"] } );
	table.insert(bottomDB, { quest = false, spell =  1804, faction = _L["HORDE"] } );
end
Could then become :
Code:
---------------------------------------------------
-- [v1.01.00] Initialise top Spell Database
---------------------------------------------------
local function Profesions_InittopDB()
	topDB = {};
	table.insert(topDB, {spell =  7411} );
	table.insert(topDB, {spell = 45359} );
	table.insert(topDB, {spell = 31252} );
	table.insert(topDB, {spell =  3908} );
	table.insert(topDB, {spell =  4036} );
	table.insert(topDB, {spell =  2259} );
end
---------------------------------------------------
-- [v1.01.00] Initialise bottom Spell Deatabase
---------------------------------------------------
local function Profesions_InitmiddleDB()	
	middleDB = {};
	table.insert(middleDB, { spell = 13262} );
	table.insert(middleDB, { spell = 51005} );
	table.insert(middleDB, { spell =  2656} );
	table.insert(middleDB, { spell =  2108} );
	table.insert(middleDB, { spell =  3538} );
	table.insert(middleDB, { spell = 25229} );
end

local function Profesions_InitbottomDB()	
	bottomDB = {};
	table.insert(bottomDB, { spell =  2550 } );
	table.insert(bottomDB, { spell =  3273 } );
	table.insert(bottomDB, { spell = 51294 } );
	table.insert(bottomDB, { spell =   818 } );
	table.insert(bottomDB, { spell = 53428 } );
	table.insert(bottomDB, { spell =  1804 } );
end
Of course that is if the crafting abilities aren't quest earned. If they are, like I think maybe lock picking is unless they changed it in one of the last patches, then maybe keep in quest and set it to yes for professions that can only be learnt after a quest completion.

Once you have that part sorted it would simply be the case of removing the elements of the database search that you no longer need. Such as validating the faction of the player to get the right database spells.

Its not important, so maybe something you could work into an update later on as you get to understand the code somewhat more.
__________________
Have too many addons ? Try nUI and see if that helps relieve the situation.
Xrystal is offline Report comment to moderator   Edit/Delete Message Reply With Quote
Old 08-13-2009, 11:15 PM  
lairdofdeath
An Aku'mai Servant
Interface Author - Click to view interfaces

Forum posts: 38
File comments: 3
Uploads: 1
its ok i sent him a .zip copy and the new ver is in .zip file
lairdofdeath is offline Report comment to moderator   Edit/Delete Message Reply With Quote
Old 08-13-2009, 09:57 PM  
Carz
nUI User-Supporter
 
Carz's Avatar
Premium Member
Interface Author - Click to view interfaces

Forum posts: 135
File comments: 35
Uploads: 5
Quote:
Originally posted by Alpha Dog
I would love to try this addon, but I am not able to open a RAR file.

Is there a ZIP version?

Thanks
get 7zip it open just about ever thing.
__________________
Carz is offline Report comment to moderator   Edit/Delete Message Reply With Quote
Old 08-11-2009, 10:13 AM  
Alpha Dog
A Wyrmkin Dreamwalker
 
Alpha Dog's Avatar

Forum posts: 57
File comments: 5
Uploads: 0
I would love to try this addon, but I am not able to open a RAR file.

Is there a ZIP version?

Thanks
Alpha Dog is offline Report comment to moderator   Edit/Delete Message Reply With Quote
Old 08-10-2009, 06:57 PM  
Belszy
An Aku'mai Servant

Forum posts: 32
File comments: 8
Uploads: 0
THANK YOU

I want to say thank you so much this is so nice and easy to use. I love it and saves me a little room with icons. I greatly appreciate it.

V/r
Belszy
Belszy is offline Report comment to moderator   Edit/Delete Message Reply With Quote
Old 08-10-2009, 01:37 PM  
fred
A Chromatic Dragonspawn

Forum posts: 188
File comments: 377
Uploads: 0
really neat, ty!
fred is offline Report comment to moderator   Edit/Delete Message Reply With Quote
Old 08-10-2009, 12:13 PM  
Petrah
nUI User & Supporter
 
Petrah's Avatar
Premium Member
Interface Author - Click to view interfaces

Forum posts: 2238
File comments: 175
Uploads: 10
Thanks!

Awesome... thank you!!!
Petrah is offline Report comment to moderator   Edit/Delete Message Reply With Quote
Post A Reply



Category Jump:




The Network:
EQInterface | EQ2Interface | LoTROInterface | MMOInterface | War.MMOUI | WoWInterface | VGInterface | Allakhazam | Thottbot | Wowhead | Zam


©2009 MMOUI / ZAM Network
vBulletin - Copyright ©2000 - 2010, Jelsoft Enterprises Ltd.