Category: TradeSkill Mods
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:
3.0 (beta)
Date:
12-02-2009 04:04 AM
Size:
17.92 Kb
Downloads:
2,075
Favorites:
62
MD5:
Pictures
Click to enlarge
Example SkillUp output (old screenshot)
SkillUp Options GUI
Click to enlarge
Example SkillUp output (gradient and color options enabled)
SkillUp
About SkillUp:
SkillUp replaces the default message recieved when a skill increases. The Blizzard UI uses the format "Your skill in [skill] has increased to [value]." SkillUp creates a new line in the format "Your skill in [skill] has increased to [value] out of [maxvalue]."

SkillUp options can be edited using the provided GUI. Type /skillup to access it.

SkillUp Extensions:
SkillUp now supports extension addons. Three examples are included with this release: SkillUp+Ding, SkillUp+MaxLineColor, and SkillUp+UCase (all three are disabled by default -- you must go enable them if you want to use them).

SkillUp+Ding plays a sound when you max out one of your skills.

SkillUp+MaxLineColor colors an entire skill message when the skill is maxed (rather than just the normal skill name and current skill value).

SkillUp+UCase makes the skill name display in all upper case. See the bottom of the SkillUp\SkillUp.lua file as well as the example extensions for more information on how to implement your own addons to extend SkillUp.


Version 3.0 Stability/Testing:
The current release is a beta version. Part of the new features implemented in this version have an incomplete GUI. There may be bugs in this release. If you would like the latest stable version, release 2.2 is available under Archived heading above.

This release has not been tested on the 3.3 PTR to confirm compatibility (but I don't expect it will break with the upcoming patch).
  Change Log - SkillUp
3.0 beta
- *** THIS IS A BETA RELEASE *** Patch notes listed below may not be 100% implemented or bug-free
- Added profile settings (GUI for this specifically isn't done -- see post in Comments for a way around it and discovered bugs)
- Saved variables switched to account rather than per character (any existing settings were reset)
- Changed the way the command line is parsed (should be no difference to the player)
- Added two hookable functions: one before SkillUp generates its output message and one after it generates the message but before it is displayed
- Updated GUI to have an option to reset settings to defaults
- Added confirmation prompt before settings are reset to default
- Updated TOC for 3.2

2.2
- Added a few more localization variables that should have been used before
- Added alternate "gradient" coloring mode
- Updated the options GUI
- Updated TOC for 3.1


2.1
- Reworked how SkillUp skill messages are displayed. SkillUp now modifies the original message, rather than preventing the original and displaying its own.
- Updated TOC for 3.0

2.0
- Finished options GUI (accessible via /skillup)
- Added additional color options
- Default colors changed to have red as low and green as high
- SkillUpColor.lua removed
- Updated TOC for 2.4

1.3
- Fixed bug regarding "this" introduced in one of the WoW 2.1.x patches (enable/disable works again now)
- Updated TOC for 2.2

1.2
- Additional ChatFrame support (not always the default chat frame)
- Code redone to allow for future localization
- Updated TOC for 2.1

1.1
- "Coloring" for current skill value available
- Enable/disable the addon from the command line
- /skillup slash command added w/ help list
- Settings saved per character

1.0
- Auto-unchecks "Skill" from the default chat window's options upon loading
- Messages use "Skill" color instead of always blue

0.1
- Initial Release
  Optional Files - SkillUp
File Name
Version
Size
Author
Date
Type
2.0
23kB
08-02-2008 04:50 PM
Addon
  Archived Versions - SkillUp
File Name
Version
Size
Author
Date
2.2
9kB
Nephaliana
04-16-2009 11:53 PM
2.1
6kB
Nephaliana
12-28-2008 01:04 AM
  Comments - SkillUp
Post A Reply Comment Options
Old 12-02-2009, 11:40 PM  
Nephaliana
A Kobold Labourer
 
Nephaliana's Avatar
Interface Author - Click to view interfaces

Forum posts: 0
File comments: 5
Uploads: 3
Re: 3 beta

Quote:
Originally posted by Jaim Sandar
I'm happy with version 2.2, also, but I am going to try 3 beta. One question: will 3 have an option to change the skillup message? I have always edited SkillUp.lua to change it because I don't like it saying "x out of x". I'd rather just have "x of x". Piddly, I know, but that's what I want

Thank you.
There is not currently an option to do it in game, but the method to change it in the file hasn't change. Edit line 68 (in 3.0 beta) to remove "out" from the string.

Alternatively, you could write an extension addon to remove "out" from the final message (some sample code below). It may be overkill in this case, but it would let you not have to worry about editing any future versions you may install.

Code:
local originalSkillUpPostHookFunc = SkillUp.PostHook
function SkillUp.PostHook(self, suppress, msg)
	suppress, msg = originalSkillUpPostHookFunc(self, suppress, msg)
	msg = string.gsub(msg, " out ", " ")
	return suppress, msg
end
Nephaliana is offline Report comment to moderator   Edit/Delete Message Reply With Quote
Old 12-02-2009, 05:52 PM  
Jaim Sandar
A Deviate Faerie Dragon
Interface Author - Click to view interfaces

Forum posts: 13
File comments: 302
Uploads: 1
3 beta

I'm happy with version 2.2, also, but I am going to try 3 beta. One question: will 3 have an option to change the skillup message? I have always edited SkillUp.lua to change it because I don't like it saying "x out of x". I'd rather just have "x of x". Piddly, I know, but that's what I want

Thank you.
Jaim Sandar is offline Report comment to moderator   Edit/Delete Message Reply With Quote
Old 12-01-2009, 11:19 AM  
Nephaliana
A Kobold Labourer
 
Nephaliana's Avatar
Interface Author - Click to view interfaces

Forum posts: 0
File comments: 5
Uploads: 3
Re: Re: Re: Seeking max-skill notification

Quote:
Originally posted by Jaim Sandar
I'm happy with Skillup 2.2, but just curious if 3.0 will ever happen. It sounds interesting.

Thank you.
I've been slacking so much.

Right now I believe everything is done except the GUI for a feature added.. and it's been that way basically since I made my last post here. I'm not really fond of doing GUI layouts for addons (earlier versions of this addon were delayed or released without the GUI because I really didn't want to do it).

I really should go finish it though... maybe tonight I'll work on it, or at the very least toss up a "beta" release.

--

Edit: Version 3.0 is uploaded in a beta state. It's basically missing the GUI for its profile settings. You can use /skillup profile use ProfileName to change which profile your character is using** and /skillup profile copy ProfileName to copy another profile's settings to your current profile. Since I haven't finished it 100%, I haven't done complete testing and therefore cannot guarantee it is bug free.

** Bug discovered here. Some of the code for that is loaded in the GUI, which isn't loaded till you try to show the options ( /skillup ), which means if you attempt to change your profile before showing the options, you will likely generate an error. Furthermore, the prompt that shows when you attempt to switch to a profile that doesn't exist does not go away when you click yes, but it does function. After clicking Yes, click No to hide the dialog.

Last edited by Nephaliana : 12-02-2009 at 04:23 AM.
Nephaliana is offline Report comment to moderator   Edit/Delete Message Reply With Quote
Old 11-27-2009, 09:51 PM  
Jaim Sandar
A Deviate Faerie Dragon
Interface Author - Click to view interfaces

Forum posts: 13
File comments: 302
Uploads: 1
Re: Re: Seeking max-skill notification

Quote:
Originally posted by Nephaliana
SkillUp 3.0 will include a few minor addon extras. One of which is my own version of "SkillUp+Ding" that will then work for all future versions of SkillUp.
I'm happy with Skillup 2.2, but just curious if 3.0 will ever happen. It sounds interesting.

Thank you.
Jaim Sandar is offline Report comment to moderator   Edit/Delete Message Reply With Quote
Old 04-17-2009, 02:06 PM  
Nephaliana
A Kobold Labourer
 
Nephaliana's Avatar
Interface Author - Click to view interfaces

Forum posts: 0
File comments: 5
Uploads: 3
Re: Seeking max-skill notification

Quote:
Originally posted by Jaim Sandar
Could you please share your modification with us?
Thank you!
Archippus' change should be available under the "optional files" for SkillUp (think he called it "SkillUp + Ding").

Note, however, that it's based off older code, so you won't get the latest features/fixes.

---

Edit: SkillUp 3.0 will include a few minor addon extras. One of which is my own version of "SkillUp+Ding" that will then work for all future versions of SkillUp.

Last edited by Nephaliana : 06-21-2009 at 04:05 AM.
Nephaliana is offline Report comment to moderator   Edit/Delete Message Reply With Quote
Old 04-17-2009, 12:48 PM  
Jaim Sandar
A Deviate Faerie Dragon
Interface Author - Click to view interfaces

Forum posts: 13
File comments: 302
Uploads: 1
Re: Seeking max-skill notification

Quote:
Originally posted by Archippus
This mod is very close to what I'm looking for with one shortcoming... I'm hoping for some stand-out notification when I max out on a skill for my current level. ie: If I'm level 39 and my Mace skill hits 195/195, if I could get some kind of audible or (unobtrusive) on-screen alert, that would be perfect. That means it's time to switch to rotate to a new weapon.

[edit] Never mind. I played around with it and figured out how to add a "ding" noise when current == max. That's all I wanted, and it works just fine :-) [/edit]
Could you please share your modification with us?
Thank you!
Jaim Sandar is offline Report comment to moderator   Edit/Delete Message Reply With Quote
Old 12-29-2008, 07:51 AM  
fred
A Chromatic Dragonspawn

Forum posts: 188
File comments: 377
Uploads: 0
looking good!

Last edited by fred : 12-29-2008 at 08:00 AM.
fred is offline Report comment to moderator   Edit/Delete Message Reply With Quote
Old 07-28-2008, 03:48 PM  
Archippus
A Cyclonian
Interface Author - Click to view interfaces

Forum posts: 48
File comments: 8
Uploads: 5
Seeking max-skill notification

This mod is very close to what I'm looking for with one shortcoming... I'm hoping for some stand-out notification when I max out on a skill for my current level. ie: If I'm level 39 and my Mace skill hits 195/195, if I could get some kind of audible or (unobtrusive) on-screen alert, that would be perfect. That means it's time to switch to rotate to a new weapon.

[edit] Never mind. I played around with it and figured out how to add a "ding" noise when current == max. That's all I wanted, and it works just fine :-) [/edit]

Last edited by Archippus : 07-28-2008 at 10:56 PM.
Archippus 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.