|
|
Last edited by BlacRyu; 03-07-2010 at 04:33 PM.
S2 Games: Dedicated employees serving dedicated gamers. Continuous development. Never-ending improvement.
-----------------------------
Updated for HoN 0.3.x and new mod options framework
[[Mods]] by me: StatusBar+ # Gold/Min (movable frame)
Awesome mod, very handy in checking overall regeneration per second.. it may not sound much but it helps a lot in my support hero gameplay ^^
One question though is it possible to have something similar working for the display on Diablo Ui? Right now for me to check the regeneration either I have to look at the tooltip on the orbs, or have the Mini UI bars on below them to check the regen rate with the use of this mod... just wondering if it is possible and how to do it.
Otherwise, awesome work, keep it up ^^
Maybe you could add a dps information somewhere
Nice mod, keep up the good work!
Could you make the Experience bar to be show in numbers? For regular UI? Or something like that?
an idea about the mp regen, is it possible to make it so that you get a timer on abilities you don't have enough mana for as to when they will be up? :O
+1 rep blah blah, excellent little addon
I'd like to request an update to this mod please. It was a great addition to any UI
The only thing you see; You know its gonna be...
The Ace of Spades.
[[Mods]] by me: StatusBar+ # Gold/Min (movable frame)
Something is wrong again, I see the gardient effects on statusbars...
I have MiniUI 1.2.9 and Movable Frames v1.32
[[Mods]] by me: StatusBar+ # Gold/Min (movable frame)
[[Mods]] by me: StatusBar+ # Gold/Min (movable frame)
Although it might be beyond the scope of what you want to do with the mod, I think it might be cool to also make your mod give options for making the health and mana bars alot more customizable. For instance, having options to choose whether health and mana should be aligned left, right or center, and then also having options for also showing the current health and mana as percentages (like MiniUI), also with customizable positions.
I also wanted to ask for the option of showing the regen values as percentages, but I realized that their values will then usually be less than 1% so I'm not sure how useful that would be.
BTW, I made a mod to do that, called Mana Cooldown Timers. I can't remember exactly, but I think the original idea for it was actually your post!
[Silv3ri's Mods]
Please vote for this useful dropbox feature!Original version of signature image is by www,annestokes,com
ui/ui_items.package, line 1519
still want the regen for a selected unit shown =(
Mod isn't working as of the new Tundra update. Would be sweet if you could update it <3
[[Mods]] by me: StatusBar+ # Gold/Min (movable frame)
@biomass; I made your mod work again by using the below XML. Clearly all credit goes to you, thanks for this nice mod! I kept the flowing energy through the bars, I think it looks nice.
Code:<editfile name="ui/game.interface"> <!-- Line 2619 --> <find><![CDATA[<image align="center" texture="/ui/elements/bar_highlight.tga"/>]]></find> <delete/> <!-- Line 2620 --> <find><![CDATA[<label font="dyn_10" color="white" shadow="1" width="100%" height="100%" textalign="center" textvalign="center" watch="ActiveHealth" ontrigger="SetText(Ceil(param0) # '/' # Ceil(param1));" />]]></find> <replace><![CDATA[ <label font="dyn_10" color="white" shadow="1" width="100%" height="100%" textalign="center" textvalign="center" watch="ActiveHealth" ontrigger="CreateString('_healthstatus', Ceil(param0) # '/' # Ceil(param1));" watch0="ActiveHealthRegen" ontrigger0="CreateString( '_healthregen', ' ^!v[' # FtoA2(param1, 0, 2) # ']');" watch1="ActiveHealth ActiveHealthRegen" ontrigger1="SetText(_healthstatus # _healthregen);"/> ]]> </replace> <!-- Line 2639 --> <find><![CDATA[<image align="center" texture="/ui/elements/bar_highlight.tga" rendermode="additive"/>]]></find> <delete/> <!-- Line 2646 --> <find><![CDATA[<image align="center" texture="/ui/elements/bar_highlight.tga"/>]]></find> <delete/> <!-- Line 2647 --> <find><![CDATA[<label font="dyn_10" color="white" shadow="1" width="100%" height="100%" textalign="center" textvalign="center" watch="ActiveMana" ontrigger="If(param1 == 0, ClearText(), SetText(Ceil(param0) # '/' # Ceil(param1)));"/>]]></find> <replace><![CDATA[ <label font="dyn_10" color="white" shadow="1" width="100%" height="100%" textalign="center" textvalign="center" watch="ActiveMana" ontrigger="CreateString('_manastatus', Ceil(param0) # '/' # Ceil(param1)));" watch0="ActiveManaRegen" ontrigger0="CreateString( '_manaregen', ' ^!v[' # FtoA2(param1, 0, 2) # ']');" watch1="ActiveMana ActiveManaRegen" ontrigger1="If(param1 == 0, ClearText(), SetText(_manastatus # _manaregen));"/> ]]> </replace> </editfile>
Last edited by dani; 06-14-2010 at 01:08 PM.