-
Active Member
[INT] [Extended] PersonalArcPlugin
Last edited by hakache; 03-31-2021 at 11:06 PM.
-
Post Thanks / Like - 4 Thanks
-
Active Member
Originally Posted by
hakache
PersonalArcPlugin
Its a plugin I made some time ago but Im not even using it myself, so I might as well share it

This plugin is a personal C# version of the XML Personal Arcs included in TurboHUD for a very long time. This has been made possible thanks to
Jack's work on a GroundArc Decorator, thanks to him !
The plugin will draw arcs under your character showing your life and your resource. Additionally, the plugin will draw your cooldowns around the arcs and is also showing your shield value around the life arc.
Customization :
Code:
// PersonalArcPlugin Configuration
Hud.RunOnPlugin<Extended.Addons.PersonalArcPlugin>(plugin =>
{
plugin.Enabled = true;
plugin.HealthBar = true;
plugin.ShieldBar = true;
plugin.ResourceBar = true;
plugin.Cooldowns = true;
});
Installation :
To install :
- Put PersonalArcPlugin.cs & CooldownPainter.cs files into --> TurboHUD / plugins / Extended / Addons /
- Put GroundArcDecorator.cs & WorldCoordinateExtension.cs files into --> TurboHUD / plugins / Extended / Resources /
Download :
Attachment 69796
Enjoy !
Nice plugin, helps a lot, at first glance, I thought it would show other players arcs. It should be good
-
Member
Hello, how to change the location on the screen of this plugin?
thanks.
-
Active Member
Originally Posted by
hakache
PersonalArcPlugin
Its a plugin I made some time ago but Im not even using it myself, so I might as well share it

This plugin is a personal C# version of the XML Personal Arcs included in TurboHUD for a very long time. This has been made possible thanks to
Jack's work on a GroundArc Decorator, thanks to him !
The plugin will draw arcs under your character showing your life and your resource. Additionally, the plugin will draw your cooldowns around the arcs and is also showing your shield value around the life arc.
Customization :
Code:
// PersonalArcPlugin Configuration
Hud.RunOnPlugin<Extended.Addons.PersonalArcPlugin>(plugin =>
{
plugin.Enabled = true;
plugin.HealthBar = true;
plugin.ShieldBar = true;
plugin.ResourceBar = true;
plugin.Cooldowns = true;
});
Installation :
To install :
- Put PersonalArcPlugin.cs & CooldownPainter.cs files into --> TurboHUD / plugins / Extended / Addons /
- Put GroundArcDecorator.cs & WorldCoordinateExtension.cs files into --> TurboHUD / plugins / Extended / Resources /
Download :
Attachment 69796
Enjoy !
Very useful plugin Hakache, I have a question, when I am using Necro, icons for Simulacrum and LotD are being displayed twice (2 icons for same skill) how do I turn off one of these to display only one of each skill ? Thank you
Edit: Oh, just found lines and commented. Thanks anyway =)
Last edited by Saico; 11-21-2019 at 05:19 PM.
-
Member
Originally Posted by
Saico
Very useful plugin Hakache, I have a question, when I am using Necro, icons for Simulacrum and LotD are being displayed twice (2 icons for same skill) how do I turn off one of these to display only one of each skill ? Thank you
Edit: Oh, just found lines and commented. Thanks anyway =)
I dont have that problem.
-
Active Member
Originally Posted by
Saico
Nice plugin, helps a lot, at first glance, I thought it would show other players arcs. It should be good
Posting this plugin and seeing answers made me willing to work abit more on it ! I completely refactored the plugin and mixed various ideas from other plugins to get to that result :

The health value is only showing in town - RNN idea (Actually good idea because the option to remove health numbers in D3 removes monsters and players at the same time and sometimes you do wanna know how much total HP have your mates before doing something). I also got heavily inspired by S4000 code for arc design and other players arcs. You can also show resources arcs for other players if you want.
As a result, the personal cooldowns function has been moved into my Cooldown Plugin to keep coherence. This definitely requires some more work (Code cleaning mostly) but Im happy with the result and happy to share with the community !
Last edited by hakache; 11-22-2019 at 08:41 AM.
-
Active Member
Originally Posted by
hakache
Posting this plugin and seeing answers made me willing to work abit more on it ! I completely refactored the plugin and mixed various ideas from other plugins to get to that result :
The health value is only showing in town - RNN idea (Actually good idea because the option to remove health numbers in D3 removes monsters and players at the same time and sometimes you do wanna know how much total HP have your mates before doing something). I also got heavily inspired by S4000 code for arc design and other players arcs. You can also show resources arcs for other players if you want.
As a result, the personal cooldowns function has been moved into my Cooldown Plugin to keep coherence. This definitely requires some more work (Code cleaning mostly) but Im happy with the result and happy to share with the community !

Hum, nice improvement Hakache, gonna help to check Sader Resource now. Thanks