[INT] [Extended] PersonalArcPlugin menu

User Tag List

Results 1 to 7 of 7
  1. #1
    hakache's Avatar Active Member
    Reputation
    78
    Join Date
    Jun 2012
    Posts
    65
    Thanks G/R
    16/72
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)

    [INT] [Extended] PersonalArcPlugin

    PlayersArcPlugin

    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 initially possible thanks to Jack's work on a GroundArc Decorator, thanks to him !
    The plugin will draw arcs under players showing life and resource. Additionally, the plugin is also showing the shield value around the life arc. The health value will be shown for other players in town. Everything you see can be setup easily by variables in the code.

    To show the Cooldowns Arc and Cooldowns under other players, check out my PartyCooldownPlugin ([INT] [Extended] PartyCooldownPlugin).





    Customization :
    Code:
    	     	    	    // PlayersArcPlugin Configuration
    	    Hud.RunOnPlugin<Extended.Players.PlayersArcPlugin>(plugin =>
    			{
    	     		plugin.Enabled = true;
    
    	     		plugin.MeLife = true;
    	     		plugin.MeShield = true;
    			plugin.MeResource = true;
    
    	     		plugin.PlayersLife = true;
    	     		plugin.PlayersShield = true;
    			plugin.PlayersResource = false;
    			});
    Installation :
    To install :
    • Put PlayersArcPlugin.cs file into --> TurboHUD / plugins / Extended / Players /
    • Other files are no longer required.


    Download :
    PlayersAfgdgin.cs

    Enjoy !
    Last edited by hakache; 03-31-2021 at 11:06 PM.

    [INT] [Extended] PersonalArcPlugin
  2. Thanks TobiaSBooN, s4000, mois, BeeAntOS (4 members gave Thanks to hakache for this useful post)
  3. #2
    Saico's Avatar Active Member
    Reputation
    21
    Join Date
    Apr 2019
    Posts
    379
    Thanks G/R
    35/20
    Trade Feedback
    0 (0%)
    Mentioned
    2 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by hakache View Post
    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

  4. #3
    yuliaangel's Avatar Member
    Reputation
    1
    Join Date
    May 2019
    Posts
    24
    Thanks G/R
    3/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Hello, how to change the location on the screen of this plugin?
    thanks.

  5. #4
    Saico's Avatar Active Member
    Reputation
    21
    Join Date
    Apr 2019
    Posts
    379
    Thanks G/R
    35/20
    Trade Feedback
    0 (0%)
    Mentioned
    2 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by hakache View Post
    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.

  6. #5
    xratedownz's Avatar Member
    Reputation
    1
    Join Date
    Feb 2009
    Posts
    226
    Thanks G/R
    23/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by Saico View Post
    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.

  7. #6
    hakache's Avatar Active Member
    Reputation
    78
    Join Date
    Jun 2012
    Posts
    65
    Thanks G/R
    16/72
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by Saico View Post
    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.

  8. #7
    Saico's Avatar Active Member
    Reputation
    21
    Join Date
    Apr 2019
    Posts
    379
    Thanks G/R
    35/20
    Trade Feedback
    0 (0%)
    Mentioned
    2 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by hakache View Post
    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

Similar Threads

  1. [INT] [Extended] ExtendedOculusPlugin
    By hakache in forum TurboHUD Community Plugins
    Replies: 10
    Last Post: 03-19-2021, 12:45 AM
  2. [INT] [Extended] ExtendedMonsterHealthBarPlugin
    By hakache in forum TurboHUD Community Plugins
    Replies: 1
    Last Post: 03-17-2020, 11:31 PM
  3. [INT] [Extended] TriunesWillPlugin
    By hakache in forum TurboHUD Community Plugins
    Replies: 45
    Last Post: 10-15-2019, 07:44 PM
  4. [INT] [Extended] KeyTrackerPlugin
    By hakache in forum TurboHUD Community Plugins
    Replies: 0
    Last Post: 08-29-2019, 11:33 AM
  5. ~ Extended Duration items ~
    By jacca in forum World of Warcraft Exploits
    Replies: 1
    Last Post: 07-15-2006, 02:33 AM
All times are GMT -5. The time now is 12:48 AM. Powered by vBulletin® Version 4.2.3
Copyright © 2025 vBulletin Solutions, Inc. All rights reserved. User Alert System provided by Advanced User Tagging (Pro) - vBulletin Mods & Addons Copyright © 2025 DragonByte Technologies Ltd.
Google Authenticator verification provided by Two-Factor Authentication (Free) - vBulletin Mods & Addons Copyright © 2025 DragonByte Technologies Ltd.
Digital Point modules: Sphinx-based search