Download
(15 Kb)
Download
Updated: 09/05/15 11:30 PM
Pictures
File Info
Compatibility:
Update 7 (1.7.0)
Update 6 (1.6.5)
Updated:09/05/15 11:30 PM
Created:04/01/15 01:36 AM
Monthly downloads:26
Total downloads:9,378
Favorites:20
MD5:
Categories:Discontinued & Outdated, Discontinued & Outdated
ChampionBar  Popular! (More than 5000 hits)
Version: 1.0.2
by: Sasky [More]
Outdated
When ZOS reworked the champion bar after removing Veteran Ranks, they also removed the secondary champion point bar. Part of why this addon looked so integrated was I used that bar to show enlightenment. That's no longer possible, as that part of the UI is gone.

Overview

When you're VR14, you don't need to see a bar telling you you're at 100%. Heck, you don't even care about the 14 anymore with the champion rank there. This addon replaces the main XP bar with the champion rank progress. The second bar is then used to show your enlightenment pool.

Features

The UI is wholly integrated with the native ZOS controls, so it behaves like the bar normally does: showing on major events and hiding when it's not needed.

The main bar changes colors depending on which champion point is next.

The tooltip shows how much enlightenment you have stored up.

Note: This only activates on VR16 characters. On lower levels it only replaces the tooltip to show enlightenment.

Localization
Thanks solaxx for the French translation.
Thanks Apokh for the German translation.
I added Spanish translation consistent with the Cervanteso terminology

Future
This is largely feature-complete. I probably won't add much to this, as I want it to be a simple drop-in replacement for the default bar.
1.0.2 - Fixes for Imperial City update
1.0.1 - Fix initialization
1.0.0 - Stable release
- Add Spanish translation
- Make new bar display on login
- Replace lower character tooltip to show enlightenment pool
- Fix "ENLIGHTENED" to use translated text
- Make bar glow with CP color
0.9.4 - Add German translation
0.9.3 - Make bar nonlinear, add FR translation
0.9.2 - Fix c+p issue
0.9.1 - Potential fix for skill xp
0.9.0 - Initial release
Archived Files (9)
File Name
Version
Size
Uploader
Date
1.0.1
15kB
Sasky
04/09/15 06:58 PM
1.0.0
15kB
Sasky
04/06/15 12:43 AM
1.0.0
14kB
Sasky
04/06/15 12:38 AM
0.9.4
14kB
Sasky
04/04/15 12:48 PM
0.9.3
14kB
Sasky
04/03/15 01:21 AM
0.9.2
12kB
Sasky
04/01/15 10:28 AM
0.9.1
12kB
Sasky
04/01/15 10:12 AM
0.9
12kB
Sasky
04/01/15 01:36 AM
0B
04/01/15 01:36 AM


Post A Reply Comment Options
Unread 10/21/15, 03:25 PM  
Enodoc
AddOn Author - Click to view AddOns

Forum posts: 52
File comments: 158
Uploads: 6
All Veterans?

Hey Sasky, any chance of rolling this out to all Veteran Ranks (not just VR16), and including a toggle switch to change between the CP bar and the VR bar? I realise that pre-VR16 it will already show the Enlightenment pool in the tooltip, but I really like the UI design too and don't want to have to wait 15 more VRs before I can use it :P Thanks!
Last edited by Enodoc : 10/21/15 at 04:02 PM.
Report comment to moderator  
Reply With Quote
Unread 09/07/15, 04:22 PM  
Haborym

Forum posts: 0
File comments: 56
Uploads: 0
ok sorry it works now ..i'm VR16
Last edited by Haborym : 09/07/15 at 04:23 PM.
Report comment to moderator  
Reply With Quote
Unread 09/06/15, 05:23 PM  
Sasky
AddOn Author - Click to view AddOns

Forum posts: 231
File comments: 87
Uploads: 4
Originally Posted by Haborym
Hey

unfortunately doesn't works
Do you have any error messages?

Also, keep in mind it doesn't show up unless you're on a max level character (now VR16).
Report comment to moderator  
Reply With Quote
Unread 09/06/15, 02:32 PM  
Haborym

Forum posts: 0
File comments: 56
Uploads: 0
Hey

unfortunately doesn't works
Report comment to moderator  
Reply With Quote
Unread 09/06/15, 06:56 AM  
Xorvivs

Forum posts: 1
File comments: 13
Uploads: 0
Waiting for approval by a file admin.
Last edited by Xorvivs : 09/06/15 at 06:57 AM.
Report comment to moderator  
Reply With Quote
Unread 09/05/15, 11:37 PM  
Sasky
AddOn Author - Click to view AddOns

Forum posts: 231
File comments: 87
Uploads: 4
Originally Posted by sarousse
Can you fix your addon for 2.1.3 please ?

Thanks !
Submitted update. It took a little longer than expected since some of the code for the PlayerProgressBar changed. One of the things I did when making this addon was to have it use the ESOUI code as much as possible. It looks and acts better, but it's also trickier and more likely to break from ZOS changes.
Report comment to moderator  
Reply With Quote
Unread 09/01/15, 12:10 AM  
sarousse

Forum posts: 16
File comments: 62
Uploads: 0
Can you fix your addon for 2.1.3 please ?

Thanks !
Report comment to moderator  
Reply With Quote
Unread 05/31/15, 03:41 AM  
Ayantir
 
Ayantir's Avatar
AddOn Author - Click to view AddOns

Forum posts: 1019
File comments: 1531
Uploads: 31
When you get the enlightment buff, you rank is changed by esoui.

I'm v14, 170 cp levels, the bar smoothly display 14 then 15 then 16
Report comment to moderator  
Reply With Quote
Unread 05/18/15, 07:45 PM  
Martan

Forum posts: 4
File comments: 76
Uploads: 0
Okey if you want to make the bar always show then you need to open up ChampionBar.lua and scroll down to the very bottom you will see

function ChampionBar.init()
--Only show for max VR characters
if GetUnitLevel("player") ~= 50 or GetUnitVeteranRank("player") ~= 14 then
ChampionBar.initLowerLevel()
else
ChampionBar.initMaxLevel()
end
EVENT_MANAGER:UnregisterForEvent("ChampionBar", EVENT_PLAYER_ACTIVATED)

end
If you insert this
-- Add the experience bar to the two hud displays so it always shows up
SCENE_MANAGER:GetScene("hud"):AddFragment(PLAYER_PROGRESS_BAR_FRAGMENT)
SCENE_MANAGER:GetScene("hudui"):AddFragment(PLAYER_PROGRESS_BAR_FRAGMENT)
SCENE_MANAGER:GetScene("hud"):AddFragment(PLAYER_PROGRESS_BAR_CURRENT_FRAGMENT)
SCENE_MANAGER:GetScene("hudui"):AddFragment(PLAYER_PROGRESS_BAR_CURRENT_FRAGMENT)
bellow
EVENT_MANAGER:UnregisterForEvent("ChampionBar", EVENT_PLAYER_ACTIVATED
then the bar will never fade.

Great addon by the way.
Last edited by Martan : 05/18/15 at 07:46 PM.
Report comment to moderator  
Reply With Quote
Unread 05/15/15, 05:22 AM  
Martan

Forum posts: 4
File comments: 76
Uploads: 0
The bar isn't showing for me other than inside menus. When questing or killing mobs that are around my level then it won't show at all. I've previously used Slightly Improved Experience Bar. Could that be the cause and if so, how do I fix it?
Report comment to moderator  
Reply With Quote
Unread 05/03/15, 10:13 AM  
OmniObsessed

Forum posts: 9
File comments: 70
Uploads: 0
Feature Request - Toggle to keep enabled

Would like option to toggle Champion XP on permanently. Low priority though.
Report comment to moderator  
Reply With Quote
Unread 04/28/15, 05:00 AM  
Ayantir
 
Ayantir's Avatar
AddOn Author - Click to view AddOns

Forum posts: 1019
File comments: 1531
Uploads: 31
Hello Sasky,

When I open a chest, I still got the my CP level instead of legerdemain one. (and the bar is 100% full which is not accurate with my current legerdemain xp bar).

Could you try to recheck this too ?

Many thanks.
Report comment to moderator  
Reply With Quote
Unread 04/18/15, 08:46 PM  
Belazarus

Forum posts: 0
File comments: 3
Uploads: 0
Question XP % on ChampionBar

Hi there

I totally love this addon, it's a brialliant idea and a nice neat slick design.
My suggestion is, would it be possible to have an optional setting to simply display the % to next level, on the bar. So for example: 25%.
Or maybe even have the xp and % - so like this: 132,000 xp 76%
You get the idea

This would make the addon perfect for me, as it's much easier to monitor our progress on the bar, if we can see a % indicator. I imagine it would be a fairly simple addition.

Any thoughts ?
Report comment to moderator  
Reply With Quote
Unread 04/10/15, 06:38 PM  
QuadroTony
Banned
 
QuadroTony's Avatar
AddOn Author - Click to view AddOns

Forum posts: 828
File comments: 3866
Uploads: 3
nvm - thanks for answer!
Report comment to moderator  
Reply With Quote
Unread 04/10/15, 06:37 PM  
Sasky
AddOn Author - Click to view AddOns

Forum posts: 231
File comments: 87
Uploads: 4
Originally Posted by QuadroTony
option to always show exp bar, pl s

for now i use Raetia info hub, and it has this feature, but its too buggy
- errors with mouseover
Raetia doesn't work because all it does is set the control to visible after it's faded. However, the progress bar expects the bar type to be set -- otherwise it doesn't know how to display the text. That's also why something like the Legerdemain skill line will persist there until opening a menu.

http://www.esoui.com/downloads/info7...rienceBar.html is something else that always shows. It looks like it might work, but I haven't checked yet.

Originally Posted by QuadroTony
- if i turn off this option it now show bar even on default events(character screen"C")
Huh? Don't understand what you're saying.
Report comment to moderator  
Reply With Quote
Post A Reply



Category Jump: