[v7.3] [ENGLISH] [ZX] NecromancerSkeletonIndicatorPlugin menu

User Tag List

Page 1 of 2 12 LastLast
Results 1 to 15 of 26
  1. #1
    Zerious's Avatar Active Member
    Reputation
    27
    Join Date
    Mar 2017
    Posts
    15
    Thanks G/R
    3/20
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)

    [v7.3] [ENGLISH] [ZX] NecromancerSkeletonIndicatorPlugin

    Hello guys,

    It's been a while since I was last active playing Diablo 3. But the arrival of Season 11 and the new class the Necromancer piqued my interest again.

    Playing a Pet Skeleton build with the Necromancer, especially the Rathma set, I feel the need to monitor the pet count in the top left part of the screen is tiring, so I made this little simple plugin to make the pet count stay near my character.

    There is one configurable (sort-of) variable in the plugin
    Code:
    CombinedCountEnabled = true/false; // modify this to make the count combined
    to alter the display to be like this (the 7 and 4 part)

    or this


    Whichever you find best

    Code is at Pastebin
    For Installation:
    save as THUD/plugin/ZX/NecromancerSkeletonIndicatorPlugin.cs

    I tried to look for the pet count but could not find any better way other than having to iterate the whole actors on screen and check if these are the actor SNOs and pets or not. If someone has a better way of doing this please let me know.

    As always, input and suggestions are welcome

    Hope that helps!

    Z
    Last edited by Zerious; 07-28-2017 at 09:38 PM.

    [v7.3] [ENGLISH] [ZX] NecromancerSkeletonIndicatorPlugin
  2. Thanks FullmetalEnvy, TobiaSBooN, everknown, rambo99jose, (Sarge), cherouvim13 (6 members gave Thanks to Zerious for this useful post)
  3. #2
    itsmylife's Avatar Active Member
    Reputation
    23
    Join Date
    Jun 2012
    Posts
    232
    Thanks G/R
    32/22
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Welcome back @Z

  4. #3
    FullmetalEnvy's Avatar Member CoreCoins Purchaser
    Reputation
    8
    Join Date
    Mar 2017
    Posts
    21
    Thanks G/R
    16/7
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    That could indeed be very useful. Thank you
    For easier "installation" of your plugin, it would be really appreciated if you post the name of the Folder plus .cs file as the other contributors do.

    For Installation:

    /plugin/ZX/NecromancerSkeletonIndicatorPlugin.cs
    Last edited by FullmetalEnvy; 07-28-2017 at 12:38 PM.

  5. #4
    Zerious's Avatar Active Member
    Reputation
    27
    Join Date
    Mar 2017
    Posts
    15
    Thanks G/R
    3/20
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by FullmetalEnvy View Post
    That could indeed be very useful. Thank you
    For easier "installation" of your plugin, it would be really appreciated if you post the name of the Folder plus .cs file as the other contributors do.

    For Installation:

    /plugin/ZX/NecromancerSkeletonIndicatorPlugin.cs
    Ah yes, I didn't think that far. That is an excellent suggestion, added to the main post. Thank you very much.

  6. #5
    JohnWick's Avatar Member
    Reputation
    12
    Join Date
    Mar 2017
    Posts
    102
    Thanks G/R
    82/7
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    there is a problem with this plugin:
    if you take another character after necromancer - you still see this plugin no matter what - restart of THUD is solve the problem


    [v7.3] [ENGLISH] [ZX] NecromancerSkeletonIndicatorPlugin-o-o-gif

  7. #6
    JackCeparou's Avatar Savvy ? 🐒
    Reputation
    534
    Join Date
    Mar 2017
    Posts
    588
    Thanks G/R
    51/490
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Add
    PHP Code:
    if (Hud.Game.Me.HeroClassDefinition.HeroClass != HeroClass.Necromancer) return; 
    inside PaintTopInGame :

    PHP Code:
    public void PaintTopInGame(ClipState clipState)
            {
                if (
    clipState != ClipState.BeforeClip) return;
    ...... 
    =>
    PHP Code:
    public void PaintTopInGame(ClipState clipState)
            {
                if (
    Hud.Game.Me.HeroClassDefinition.HeroClass != HeroClass.Necromancer) return;
                if (
    clipState != ClipState.BeforeClip) return;
    ...... 
    Hide the Rum! --> Default theme customization 101 <--

  8. Thanks JohnWick, Zerious (2 members gave Thanks to JackCeparou for this useful post)
  9. #7
    JohnWick's Avatar Member
    Reputation
    12
    Join Date
    Mar 2017
    Posts
    102
    Thanks G/R
    82/7
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by JackCeparou View Post
    Add
    PHP Code:
    if (Hud.Game.Me.HeroClassDefinition.HeroClass != HeroClass.Necromancer) return; 
    inside PaintTopInGame :

    PHP Code:
    public void PaintTopInGame(ClipState clipState)
            {
                if (
    clipState != ClipState.BeforeClip) return;
    ...... 
    =>
    PHP Code:
    public void PaintTopInGame(ClipState clipState)
            {
                if (
    Hud.Game.Me.HeroClassDefinition.HeroClass != HeroClass.Necromancer) return;
                if (
    clipState != ClipState.BeforeClip) return;
    ...... 
    thank you, Сaptain !

  10. #8
    pipon2323's Avatar Member
    Reputation
    1
    Join Date
    Jul 2017
    Posts
    6
    Thanks G/R
    1/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    sorry for being a bit slow, but could u post the final pastebin for this with the fix on it? just not sure where to put the very first line if (Hud.Game.Me.HeroClassDefinition.HeroClass != HeroClass.Necromancer) return;

  11. #9
    JackCeparou's Avatar Savvy ? 🐒
    Reputation
    534
    Join Date
    Mar 2017
    Posts
    588
    Thanks G/R
    51/490
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by pipon2323 View Post
    sorry for being a bit slow, but could u post the final pastebin for this with the fix on it? just not sure where to put the very first line if (Hud.Game.Me.HeroClassDefinition.HeroClass != HeroClass.Necromancer) return;
    Well, i guess "Give a man a fish and you feed him for a day; teach a man to fish and you feed him for a lifetime." doesn't apply here ;p

    /plugin/ZX/NecromancerSkeletonIndicatorPlugin.cs
    Hide the Rum! --> Default theme customization 101 <--

  12. #10
    Zerious's Avatar Active Member
    Reputation
    27
    Join Date
    Mar 2017
    Posts
    15
    Thanks G/R
    3/20
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    I have updated the Pastebin a couple of days ago with Jack's excellent fix, but I forgot to post here saying so.

  13. #11
    Zerious's Avatar Active Member
    Reputation
    27
    Join Date
    Mar 2017
    Posts
    15
    Thanks G/R
    3/20
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Minor update to the Pastebin code, no new feature, just tidying up codes and adding up a bunch of comments

  14. #12
    rambo99jose's Avatar Member
    Reputation
    4
    Join Date
    Nov 2007
    Posts
    26
    Thanks G/R
    20/3
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Thank you for the work you put in
    Last edited by rambo99jose; 08-18-2017 at 10:35 PM.

  15. #13
    Pe1a0's Avatar Member
    Reputation
    6
    Join Date
    Mar 2017
    Posts
    58
    Thanks G/R
    3/4
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    i want to move the indicator to the minimap as well any chance to copy it and move it ?

  16. #14
    marczinko's Avatar Member
    Reputation
    1
    Join Date
    Feb 2018
    Posts
    3
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    does anyone have an updated version?

  17. #15
    icheck's Avatar Banned
    Reputation
    6
    Join Date
    Jan 2019
    Posts
    36
    Thanks G/R
    11/5
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    I made the necessary modifications so that the plugin works, while the author adapts it you can use this one:

    [C#] NecromancerSkeletonIndicatorPlugin - Pastebin.com

  18. Thanks rambo99jose (1 members gave Thanks to icheck for this useful post)
Page 1 of 2 12 LastLast

Similar Threads

  1. [7.2] [ENGLISH] [ZX] BuffSideBarPlugin
    By Zerious in forum TurboHUD Community Plugins
    Replies: 21
    Last Post: 08-29-2019, 09:52 AM
  2. [v7.2] [ENGLISH] [Csavo] LegendaryCountPlugin
    By Csavo in forum TurboHUD Community Plugins
    Replies: 21
    Last Post: 04-06-2018, 08:24 AM
  3. [v7.2] [ENGLISH] [DM] DisplayCraftingMaterialPlugin
    By deadmarine in forum TurboHUD Community Plugins
    Replies: 1
    Last Post: 04-12-2017, 05:07 PM
  4. [7.2][ENGLISH][ZX] BountyCacheIndicatorPlugin
    By Zerious in forum TurboHUD Community Plugins
    Replies: 7
    Last Post: 04-11-2017, 10:57 AM
  5. [v7.2] [ENGLISH] [Gigi] RiftTrackerPlugin
    By d3gigi in forum TurboHUD Community Plugins
    Replies: 13
    Last Post: 04-07-2017, 06:29 AM
All times are GMT -5. The time now is 06:37 PM. Powered by vBulletin® Version 4.2.3
Copyright © 2024 vBulletin Solutions, Inc. All rights reserved. User Alert System provided by Advanced User Tagging (Pro) - vBulletin Mods & Addons Copyright © 2024 DragonByte Technologies Ltd.
Digital Point modules: Sphinx-based search