Download
(3 Kb)
Download
Updated: 06/27/14 02:31 PM
Pictures
File Info
Compatibility:
Veteran Crypt of Hearts (1.2.3)
Updated:06/27/14 02:31 PM
Created:04/11/14 01:52 PM
Monthly downloads:58
Total downloads:14,056
Favorites:43
MD5:
Rui's Ultimate Counter  Popular! (More than 5000 hits)
Version: 0.2.2
by: Ruimuuv [More]
Addon Overview

Rui's Ultimate Counter is a simple UI add-on that adds the amount of Ultimate charge you have above your ultimate ability on the action bar.

The readout should display whenever your action bar does, and it automatically detects if you have the "Always Show Action Bars" option enabled. (I.E. Your reticle is over an attackable unit, or you are currently in combat)

The number on the left is the amount of Ultimate charge you currently have, the one on the right is the minimum amount of charge required to activate your ultimate ability. When you have enough charge to activate your ultimate ability, the text will turn green.

Chat Commands
  • /ruc percent -- Toggles between using the exact readout (cur/cost) or a percentage readout (150%)
  • /ruc pos -- Toggles between positioning the display above the ultimate ability button or between the last normal ability and the ultimate ability.
New in Version 0.2
  • Chat commands
  • New optional position
  • Optional percentage readout
Version 0.2.2:
* Update API version number to 100007, updates coming soon!

Version 0.2.1:
* Update API version number to 100004

Version 0.2:
* Obeys the "Always show Action Bar" setting. Please use ESC Menu->Settings->Addons->Reload UI if you change the option while playing.
* Added chat command option to toggle whether the display uses percentages or exact readout. "/ruc percent"
* Added chat command option to toggle whether the display is located above the ultimate ability button
or between the ultimate ability button and the fifth normal ability button. "/ruc pos"
* Display no longer attempts to divide by zero if there is no ultimate ability on the action bar.
* No longer uses OnUpdate. Less CPU usage! :D

Version 0.1.1:
* Display should no longer show when targeting a non-hostile NPC.
* Display should no longer stop appearing after a while.
* Improved accuracy of fade in/out animations.
* Improved general reliability of the animations.

Version 0.1:
* Inital release
Archived Files (4)
File Name
Version
Size
Uploader
Date
0.2.1
3kB
Ruimuuv
05/22/14 03:38 PM
0.2
3kB
Ruimuuv
05/06/14 05:06 PM
0.1.1
2kB
Ruimuuv
04/13/14 11:57 PM
0.1
2kB
04/11/14 01:52 PM


Post A Reply Comment Options
Unread 04/11/14, 02:28 PM  
JadeKnightblazer

Forum posts: 24
File comments: 38
Uploads: 0
Been looking for an addon for this!!! Thanks very much!!

Now REQ feature time: I am asking this because I enjoy ESO simple ui style, which numbers on screen takes away.

Could you please also create a visual Bar that fills up? Here is what I have in mind for my preferred prefect Ult bar addon.

Create a bar that is under the health bar of the character, in the same style as the stam bar for the horse is under the character stam bar. This bar would fill and decrease much like the health bar does (both expanding/shrinking, not left to right or visversa)

I plan on playing as a werewolf, which the werewolf transformation timer is located under the characters Magicka bar. So have an ult bar under the characters health bar would feel like a prefect place.


Quick visual:

[Magicka_Bar].......[Health_Bar].......[Stam_Bar]
\[Werewolf_Bar]....\[Ultim_Bar]/.....[Horse_Bar]/

...............[Q].....[1][2][3][4][5].......[R]



What the Werewolf Timer bar looks like in game: http://oyster.ignimgs.com/wordpress/stg.ign.com/2014/03/tails-610x343.jpg
Last edited by JadeKnightblazer : 04/11/14 at 02:36 PM.
Report comment to moderator  
Reply With Quote
Unread 04/11/14, 03:38 PM  
Ruimuuv
AddOn Author - Click to view AddOns

Forum posts: 5
File comments: 4
Uploads: 1
Originally Posted by JadeKnightblazer
Could you please also create a visual Bar that fills up? Here is what I have in mind for my preferred prefect Ult bar addon.

Create a bar that is under the health bar of the character, in the same style as the stam bar for the horse is under the character stam bar. This bar would fill and decrease much like the health bar does (both expanding/shrinking, not left to right or visversa)
This is definitely a reasonable request for a UI mod, but it seems counterproductive to what my vision for this add-on is. Besides, the ultimate ability icon has a built-in progress bar.

My main purpose in creating this add-on is for the Nightblade ultimate ability Death Stroke (and morphs), which does increased damage depending on how much ultimate charge you earn over the base cost (50 charge). Bars are wonderful for demonstrating a range between two points (I.E. 0 to 50), but if you need to display values outside of that range they aren't generally the best choice, thus I went with the numerical display.

Now that being said, if I can figure out what the ultimate charge value for the highest amount of damage is (and if there are even any more abilities that work like Death Stroke for other classes/weapons), then I could potentially make a bar for that.

Thanks for your input!
Report comment to moderator  
Reply With Quote
Unread 04/12/14, 08:18 AM  
l3x0r

Forum posts: 13
File comments: 152
Uploads: 0
very simple addon! i've been waiting for something like this, anyway i noticed a small bug:

when i target a neutral enemy the indicator will pop up, see the screenshot to fully understand what i'm talking about



plz fix this, regards
Report comment to moderator  
Reply With Quote
Unread 04/13/14, 10:25 AM  
winiarus

Forum posts: 0
File comments: 1
Uploads: 0
Originally Posted by l3x0r
very simple addon! i've been waiting for something like this, anyway i noticed a small bug:

when i target a neutral enemy the indicator will pop up, see the screenshot to fully understand what i'm talking about



plz fix this, regards
I took the liberty of trying to fix it and it seems to work as it should now.

Open lua file and modify OnRetTargetChanged function like this:

Before:


After:



Lua Code:
  1. local function OnRetTargetChanged( eventCode )
  2.     local unitExists = DoesUnitExist("reticleover")
  3.     local unitIsAttackable = IsUnitAttackable("reticleover")
  4.    
  5.     local unitNeutral = false
  6.     if GetUnitReaction("reticleover") == UNIT_REACTION_NEUTRAL then
  7.         unitNeutral = true
  8.     end
  9.    
  10.     if unitExists and unitIsAttackable and not unitNeutral and not isFrameShowing then
  11.         animFadeInTimeline:Stop()
  12.         animFadeInTimeline:PlayForward()
  13.        
  14.         isFrameShowing = true
  15.     elseif not unitIsAttackable and isFrameShowing and not playerInCombat then
  16.         zo_callLater(HideFrame, 3000)
  17.     end
  18. end
Report comment to moderator  
Reply With Quote
Unread 04/13/14, 11:05 AM  
Ruimuuv
AddOn Author - Click to view AddOns

Forum posts: 5
File comments: 4
Uploads: 1
Originally Posted by winiarus
I took the liberty of trying to fix it and it seems to work as it should now.

Open lua file and modify OnRetTargetChanged function like this:
Thanks, but I have a fix for this and some other bugs in the pipeline and I will be submitting an update today barring any other last-minute bugs popping up. Also tweaked the fading in/out animations to be much more like the action bar, so my OCD should be happier.
Report comment to moderator  
Reply With Quote
Unread 04/14/14, 08:42 AM  
Myssy

Forum posts: 1
File comments: 3
Uploads: 0
Request/Problem

I have a problem on seeing the counter...Its maybe because i ALWAYS show my action bar.
Maybe you could fix this and if someone have this option on then always show the counter too?
Would be really great because its a really great addon!
Report comment to moderator  
Reply With Quote
Unread 04/14/14, 08:42 AM  
ThadOptimus

Forum posts: 4
File comments: 66
Uploads: 0
Nice simple addon

Thanks for this addon.

To maximize screen space, is there a way to put the numbers in the icon itself? and also an option to change it for a 50/100 to a %?
Report comment to moderator  
Reply With Quote
Unread 04/14/14, 07:42 PM  
Ruimuuv
AddOn Author - Click to view AddOns

Forum posts: 5
File comments: 4
Uploads: 1
Originally Posted by ThadOptimus
Thanks for this addon.

To maximize screen space, is there a way to put the numbers in the icon itself? and also an option to change it for a 50/100 to a %?
The percent should be pretty easy to do, even if I allow it on the button itself. Putting the current display style on the button might be a bit trickier, since the biggest value that could possibly be shown is "1000/1000" (I think). As far as I know, none of the ultimate abilities come close to this and the longest piece of text that would be used is 3 digits on each side of the slash. (123/123) Still, it may be a bit of a squeeze and I'd potentially have to use a smaller font. Though since I plan to make an options window, I could provide options for text size and font as well.
Originally Posted by Myssy
I have a problem on seeing the counter...Its maybe because i ALWAYS show my action bar.
Maybe you could fix this and if someone have this option on then always show the counter too?
Would be really great because its a really great addon!
For clarification, does the next not show up at all or does it still display when you point the reticle at a hostile (red glow) mob? Either way, thank you for the report; the next version should detect the "Always Shown" preference and display at all times if it is enabled.
Report comment to moderator  
Reply With Quote
Unread 04/15/14, 03:31 PM  
azacreel

Forum posts: 0
File comments: 5
Uploads: 0
Originally Posted by Ruimuuv
Originally Posted by ThadOptimus
Thanks for this addon.

To maximize screen space, is there a way to put the numbers in the icon itself? and also an option to change it for a 50/100 to a %?
The percent should be pretty easy to do, even if I allow it on the button itself. Putting the current display style on the button might be a bit trickier, since the biggest value that could possibly be shown is "1000/1000" (I think). As far as I know, none of the ultimate abilities come close to this and the longest piece of text that would be used is 3 digits on each side of the slash. (123/123) Still, it may be a bit of a squeeze and I'd potentially have to use a smaller font. Though since I plan to make an options window, I could provide options for text size and font as well.
Originally Posted by Myssy
I have a problem on seeing the counter...Its maybe because i ALWAYS show my action bar.
Maybe you could fix this and if someone have this option on then always show the counter too?
Would be really great because its a really great addon!
For clarification, does the next not show up at all or does it still display when you point the reticle at a hostile (red glow) mob? Either way, thank you for the report; the next version should detect the "Always Shown" preference and display at all times if it is enabled.
I have the same issue, and I confirm, if I target a hostile, the counter appears. But I would really appreciate to see it all time.


And big thanks foe this mod, we so need that as nightblade
Last edited by azacreel : 04/15/14 at 03:32 PM.
Report comment to moderator  
Reply With Quote
Unread 05/04/14, 05:57 AM  
Highrisedrifter

Forum posts: 0
File comments: 13
Uploads: 0
Love this mod. Best Ultimate tracker so far. It would be useful if the information was available all the time. I run with my action bars showing all the time so it would be especially useful if the info from this addon showed whenever the action bar showed, rather than only when in combat.

I love the fact that it shows my 'over level' of Ulimate (Sorc using Overload which is a toggled ability with an activation cost of 125 and uses points from the built up Ult pool when the ability is used, so it can be switched off prior to falling below the 125 cost to reactivate).

it would also be very useful if it could be move to be slightly lower to the top of the icon too please as I feel it is a bit too high.

Overall, great mod though. Thank you.
Last edited by Highrisedrifter : 05/04/14 at 06:01 AM.
Report comment to moderator  
Reply With Quote
Unread 05/04/14, 05:33 PM  
SokarGoldberg

Forum posts: 2
File comments: 27
Uploads: 0
Could you add an option so that the ulti counter is always visible and doesn't vanish if you are out of battle? That would be awesome!
Report comment to moderator  
Reply With Quote
Unread 05/06/14, 01:47 AM  
[email protected]

Forum posts: 0
File comments: 2
Uploads: 0
cant get it to work :(

Its installed. Shows up on my addons list and have it checked. Even have out of date checked.
Please help i really need this addon and for some reason im the only one who sees no numbers over my ultimate icon!
Report comment to moderator  
Reply With Quote
Unread 05/06/14, 01:58 PM  
SokarGoldberg

Forum posts: 2
File comments: 27
Uploads: 0
Re: cant get it to work :(

Originally Posted by [email protected]
Its installed. Shows up on my addons list and have it checked. Even have out of date checked.
Please help i really need this addon and for some reason im the only one who sees no numbers over my ultimate icon!
Remember that at the moment it is only visible near or in the fight.
Report comment to moderator  
Reply With Quote
Unread 05/06/14, 05:13 PM  
Ruimuuv
AddOn Author - Click to view AddOns

Forum posts: 5
File comments: 4
Uploads: 1
Sorry for the slow update, the semester is drawing to a close and I have been busy. Version 0.2 should automatically detect whether you have the "Always Show Action Bar" setting enabled. Please let me know if you run into any more issues. Thanks!
Report comment to moderator  
Reply With Quote
Unread 05/06/14, 09:25 PM  
[email protected]

Forum posts: 0
File comments: 2
Uploads: 0
Re: Re: cant get it to work :(

Originally Posted by SokarGoldberg
Originally Posted by [email protected]
Its installed. Shows up on my addons list and have it checked. Even have out of date checked.
Please help i really need this addon and for some reason im the only one who sees no numbers over my ultimate icon!
Remember that at the moment it is only visible near or in the fight.
thx for reply. yes i definitely am in combat and everything. im usually good with details, but still nothing.

One thing....when i installed it, i created a new folder in the "addons folder for the game. Then unzipped the folder i download from here, then copy and paste the files themselves to the folder i created named "addon a"

could this be the problem? am i doing it wrong?


EDIT/UPDATE ...Yes that was it! Fixed. Thx for reply. It was the folder name. I didnt know that your not supposed to unzip the downloaded folder lol. Itll still show up in addons list in game, but wont work right.
Last edited by [email protected] : 05/06/14 at 10:08 PM.
Report comment to moderator  
Reply With Quote
Post A Reply



Category Jump: