What are these numbers at the top?   If not useful, which plugin do I need to disable menu

User Tag List

Results 1 to 12 of 12
  1. #1
    koolkaracter's Avatar Member
    Reputation
    1
    Join Date
    Jan 2019
    Posts
    5
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)

    What are these numbers at the top? If not useful, which plugin do I need to disable

    I almost have the layout how I want it, but there are these random numbers on top that I can't figure out what they are for the life of me. See Image.

    Capture.PNG

    First off, what are they? Second, which plugin do I need to disable or which property, to disable these?

    What are these numbers at the top?   If not useful, which plugin do I need to disable
  2. #2
    JarJarD3's Avatar Contributor
    Reputation
    106
    Join Date
    Oct 2017
    Posts
    395
    Thanks G/R
    41/101
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    1 Thread(s)
    The number you are referring are your paragon points and experience per hour (if I'm correct).
    It seems that they can be turned off.

    I disable all these plugins to get rid of data that is useless to me. See HotA Barbarian - Album on Imgur.
    Code:
                // disable numbers over skillbar 
                Hud.TogglePlugin<AttributeLabelListPlugin>(false);
                // disable latency numbers 
                Hud.TogglePlugin<NetworkLatencyPlugin>(false);
                // disable elemental numbers under hp ball 
                Hud.TogglePlugin<DamageBonusPlugin>(false);
                // turn off Experience Statistics on the right 
                Hud.TogglePlugin<TopExperienceStatistics>(false);
                // Don't know if this draws anything but disable it anyway!
                Hud.TogglePlugin<UiHiddenPlayerSkillBarPlugin>(false);
                // Disable *multiplayer* "DPS dealt to monsters" graphic label under player portraits.
                Hud.TogglePlugin<PortraitBottomStatsPlugin>(false);
    
                //   @ Turn off the Automated Paragon Screen captured saved to disc
                Hud.TogglePlugin<ParagonCapturePlugin>(false);
                //   @Turn off the Paragon and experience boxes at the center top of the screen
                Hud.TogglePlugin<PlayerTopBuffListPlugin>(false);
                //   @ Turn off the Paragon and Experience boxes at the center top of the screen
                Hud.TogglePlugin<TopExperienceStatistics>(false);
    
                //   @ Turns off the "Strength in Numbers" buff in multiplayer games
                Hud.TogglePlugin<MultiplayerExperienceRangePlugin>(false);
    
                // Disable some default UI plugins.
                Hud.TogglePlugin<GameInfoPlugin>(false);
                Hud.TogglePlugin<NotifyAtRiftPercentagePlugin>(false);
                Hud.TogglePlugin<PickupRangePlugin>(false);
    
                // Disable labels under monsters
                Hud.TogglePlugin<StandardMonsterPlugin>(false);
                Hud.TogglePlugin<EliteMonsterAffixPlugin>(false);
                Hud.TogglePlugin<DangerousMonsterPlugin>(false);
    
                // Turn off the weapon rack minimap location dots - we seldom open them.
                Hud.TogglePlugin<RackPlugin>(false);
    
                // Checsts with Harrington Waistguard on minimap - for fun!
                Hud.TogglePlugin<ClickableChestGizmoPlugin>(false);
                // Dead bodies white rectangle on minimap.
                Hud.TogglePlugin<DeadBodyPlugin>(false);
    
                // Hide most extras - draws buf icons to left side of mini map.
                Hud.RunOnPlugin<MiniMapLeftBuffListPlugin>(plugin =>
                {
                    // You could also remove: \config\ui_default\ui_default_buffs.xml
                    // See: https://www.diablowiki.net/Pylons
                    // See: https://www.diablowiki.net/Shrine
                    plugin.RuleCalculator.Rules.Clear();
                    // Greater Rift only.
                    plugin.RuleCalculator.Rules.Add(new BuffRule(266254) { MinimumIconCount = 1 }); // Shield - invincible
                    plugin.RuleCalculator.Rules.Add(new BuffRule(262935) { MinimumIconCount = 1 }); // Power - 5x damage
                });
                // Disable - draws buf icons to right side of mini map.
                Hud.TogglePlugin<CheatDeathBuffFeederPlugin>(false);
    
                // Just (sub optimization?) for performance.
                Hud.TogglePlugin<SkillRangeHelperPlugin>(false);
    
                Hud.TogglePlugin<ConventionOfElementsBuffListPlugin>(false);    // Not needed.
    
                // Fix Sentry minimap icon
                Hud.RunOnPlugin<PlayerSkillPlugin>(plugin =>
                {
                    List<IWorldDecorator> decorators = new List<IWorldDecorator>();
                    decorators.AddRange(plugin.SentryDecorator.Decorators);
                    decorators.AddRange(plugin.SentryWithCustomEngineeringDecorator.Decorators);
    
                    foreach (var decorator in decorators)
                    {
                        if (decorator is MapShapeDecorator)
                        {
                            ((MapShapeDecorator)decorator).Brush = Hud.Render.CreateBrush(255, 255, 255, 255, 2);   // White.
                            ((MapShapeDecorator)decorator).ShapePainter = new PlusShapePainter(Hud);
                        }
                    }
                });

  3. Thanks s4000 (1 members gave Thanks to JarJarD3 for this useful post)
  4. #3
    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)
    You have removed many things, but if you want to remove more ...
    You were missing the statistics graph on the right
    Modify the enabled to 0 on Lines 30 and 39 of
    config \ ui_default \ ui_default_labels_run_stats.xml

    And for the numbers 0 0 0 of the portrait
    Modify the enabled to 0 on lines 64, 67 and 70 of
    config \ ui_default \ ui_default_main.xml

  5. Thanks JarJarD3 (1 members gave Thanks to icheck for this useful post)
  6. #4
    koolkaracter's Avatar Member
    Reputation
    1
    Join Date
    Jan 2019
    Posts
    5
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by icheck View Post
    You have removed many things, but if you want to remove more ...
    You were missing the statistics graph on the right
    Modify the enabled to 0 on Lines 30 and 39 of
    config \ ui_default \ ui_default_labels_run_stats.xml

    And for the numbers 0 0 0 of the portrait
    Modify the enabled to 0 on lines 64, 67 and 70 of
    config \ ui_default \ ui_default_main.xml
    Is there a way to do this from within the PluginEnablerorDiablerPlugin? I ask because I assume I would have to change this every time I updateo otherwise.

  7. #5
    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)
    As far as I know ... no, but these files do not usually change from one version to another of the TH, you can simply overwrite them.

  8. #6
    JarJarD3's Avatar Contributor
    Reputation
    106
    Join Date
    Oct 2017
    Posts
    395
    Thanks G/R
    41/101
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    1 Thread(s)
    Originally Posted by icheck View Post
    You have removed many things, but if you want to remove more ...
    You were missing the statistics graph on the right
    Modify the enabled to 0 on Lines 30 and 39 of
    config \ ui_default \ ui_default_labels_run_stats.xml

    And for the numbers 0 0 0 of the portrait
    Modify the enabled to 0 on lines 64, 67 and 70 of
    config \ ui_default \ ui_default_main.xml
    Thank you very much for the info.
    I had totally forgotten XML config as I prefer to do everything in C# code.

    BTW, does portraits/performance/real_dps really work and show something useful during GR runs for example?

  9. #7
    Yozi's Avatar Member
    Reputation
    1
    Join Date
    Apr 2019
    Posts
    4
    Thanks G/R
    1/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Hello,
    do you know is there is way to start: ui_default_labels_run_stats
    as hidden?

    thanks

  10. #8
    Mundzso's Avatar Member
    Reputation
    14
    Join Date
    Feb 2018
    Posts
    84
    Thanks G/R
    28/6
    Trade Feedback
    0 (0%)
    Mentioned
    1 Post(s)
    Tagged
    0 Thread(s)
    Guys anyone know how to turn off those green lines at the left of the portraits?
    green lines - Album on Imgur

  11. #9
    s4000's Avatar Contributor
    Reputation
    285
    Join Date
    Oct 2018
    Posts
    489
    Thanks G/R
    18/272
    Trade Feedback
    0 (0%)
    Mentioned
    3 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by Mundzso View Post
    Guys anyone know how to turn off those green lines at the left of the portraits?
    green lines - Album on Imgur

    edit config\ui_default\ui_default_main.xml as follow

    <portraits enabled="1">
    ....
    <bars>
    <ehp enabled="0" />
    <activity enabled="0" />
    <total_dmg enabled="0" />
    </bars>

  12. Thanks Mundzso (1 members gave Thanks to s4000 for this useful post)
  13. #10
    s4000's Avatar Contributor
    Reputation
    285
    Join Date
    Oct 2018
    Posts
    489
    Thanks G/R
    18/272
    Trade Feedback
    0 (0%)
    Mentioned
    3 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by koolkaracter View Post
    I almost have the layout how I want it, but there are these random numbers on top that I can't figure out what they are for the life of me. See Image.

    Capture.PNG

    First off, what are they? Second, which plugin do I need to disable or which property, to disable these?

    turn off by adding the following code into PluginEnablerOrDisablerPlugin.cs

    Hud.TogglePlugin<TopExperienceStatistics>(false);

  14. #11
    Mundzso's Avatar Member
    Reputation
    14
    Join Date
    Feb 2018
    Posts
    84
    Thanks G/R
    28/6
    Trade Feedback
    0 (0%)
    Mentioned
    1 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by s4000 View Post
    edit config\ui_default\ui_default_main.xml as follow

    <portraits enabled="1">
    ....
    <bars>
    <ehp enabled="0" />
    <activity enabled="0" />
    <total_dmg enabled="0" />
    </bars>
    Thank you very much
    Was looking somewhere here, but didn't know what this does.

  15. #12
    Yozi's Avatar Member
    Reputation
    1
    Join Date
    Apr 2019
    Posts
    4
    Thanks G/R
    1/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by s4000 View Post
    edit config\ui_default\ui_default_main.xml as follow

    <portraits enabled="1">
    ....
    <bars>
    <ehp enabled="0" />
    <activity enabled="0" />
    <total_dmg enabled="0" />
    </bars>
    Hello, maybe you u know how to solve my problem as:
    is there is way to start: ui_default_labels_run_stats as hidden? the stat table on the left,
    don't wanna disable, but, is a bit annoying that I need to keep hiding it.

    thanks

Similar Threads

  1. What emulator do the Top 50 Servers use?
    By advertiser103 in forum WoW EMU Questions & Requests
    Replies: 14
    Last Post: 02-15-2010, 11:12 AM
  2. What are these addons ?
    By Krazzee in forum WoW UI, Macros and Talent Specs
    Replies: 7
    Last Post: 05-05-2009, 05:11 PM
  3. What Are you Listening At The Moment Thread
    By Aliv3 in forum Community Chat
    Replies: 35
    Last Post: 11-19-2007, 04:56 PM
  4. what are you playing on the wii?
    By Adrenalin3 in forum Gaming Chat
    Replies: 13
    Last Post: 05-01-2007, 01:16 AM
  5. A Download tab at the top of mmowned
    By xkisses in forum Suggestions
    Replies: 5
    Last Post: 03-18-2007, 12:56 PM
All times are GMT -5. The time now is 02:53 AM. 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