Default theme customization 101 menu

User Tag List

Page 4 of 5 FirstFirst 12345 LastLast
Results 46 to 60 of 67
  1. #46
    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 Madara_55 View Post
    Can you please more details where to enter it?
    see my signature ;p
    basically you just copy/paste it in a customize method
    Last edited by JackCeparou; 09-04-2018 at 07:15 PM.
    Hide the Rum! --> Default theme customization 101 <--

    Default theme customization 101
  2. #47
    Madara_55's Avatar Member
    Reputation
    1
    Join Date
    Nov 2017
    Posts
    3
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Thanks It works. but this makes the solid color over the top. it's a bit not what I wanted. is there a chance to change the color of this beautiful button? and what about it?
    QIP Shot - Screen 088.png

  3. #48
    Saah's Avatar Member
    Reputation
    4
    Join Date
    Sep 2013
    Posts
    62
    Thanks G/R
    0/3
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    How can i disable Other Players' ground decorators (player names), i dont mind to keep on-minimap players names, i just wish to disable only on-ground names, that's why i dont disable whole plugin, If it is not as easy as to write a single line of code, then i probably should still disable that plugin, but copy it's code to my own plugin and keep it without that groud decorator section, or is it still possible with 1 line of code (customize) ?

    Upd.
    Can not make it to work, something wrong with the namespace:
    if i use "default", an exception says "i have to use my own namespace",
    if i use my namespace, it says "error CS0246: The type or namespace name 'BasePlugin' could not be found (are you missing a using directive or an assembly reference?)" and same error for the 'WorldDecoratorCollection'.

    I tried it in both, inside my own single file and as a separate .cs file (for that modded OtherPlayersPlugin code), how can i make it to work?

    Ok, i copied those files, that were referenced and replaced inside them "using namespace.." from "Default" to my own, and it finally worked. Those were 2 files from the BasePlugin folder (all of them) and 3 files from the Decorators folder (those, that were referenced from the Exceptions's log file). Copied files can stay inside their subfolders (not necessary to place them to root directory).
    This fixed it, finally.
    Last edited by Saah; 09-24-2018 at 10:13 PM.

  4. #49
    Saah's Avatar Member
    Reputation
    4
    Join Date
    Sep 2013
    Posts
    62
    Thanks G/R
    0/3
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    deleted post
    Last edited by Saah; 09-25-2018 at 09:54 PM. Reason: deleted

  5. #50
    Megalodon84's Avatar Member
    Reputation
    1
    Join Date
    Feb 2019
    Posts
    1
    Thanks G/R
    7/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Hi Jack, I absolutely love THud and luckily got it running on the first try with no issues whatsoever.

    My only problem is I want to disable three plugins only but I can't write code to save my life, and I don't have excel to get TCT to work.

    I know I have to edit the Plugindisabler file with Notepad++ and rename the file to .cs, I tried copying some of the presets you and others posted and change the code to the plugins I want to disable but to no avail.

    Can I please get some help on this? The plugins I want gone are:
    - EliteMonsterAffix (the text that hovers over them)
    - Paragon tracker (the paragon box at the top center of the screen)
    - Greyed out items


    edit: I managed to remove the three things I wanted just by tinkering with the plugin files themselves and turning values to false. Might not be optimal but it got the trick done!
    Last edited by Megalodon84; 02-04-2019 at 03:56 PM.

  6. #51
    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 Megalodon84 View Post
    Can I please get some help on this? The plugins I want gone are:
    - EliteMonsterAffix (the text that hovers over them)
    - Paragon tracker (the paragon box at the top center of the screen)
    - Greyed out items

    edit: I managed to remove the three things I wanted just by tinkering with the plugin files themselves and turning values to false. Might not be optimal but it got the trick done!
    If you want the configuration anyway :

    Save as /plugins/user/Megalodon84.cs :
    PHP Code:
    using Turbo.Plugins.Default;

    namespace 
    Turbo.Plugins.User
    {
        public class 
    Megalodon84 BasePluginICustomizer
        
    {
            public 
    Megalodon84()
            {
                
    Enabled true;
            }

            public 
    void Customize()
            {
                
    Hud.TogglePlugin<EliteMonsterAffixPlugin>(false);
                
    Hud.TogglePlugin<TopExperienceStatistics>(false);
                
    Hud.RunOnPlugin<InventoryAndStashPlugin>(plugin =>
                {
                    
    plugin.NotGoodDisplayEnabled false;
                });

            }
        }

    Note: I'm not totally sure about the last one ;p
    Hide the Rum! --> Default theme customization 101 <--

  7. Thanks Megalodon84 (1 members gave Thanks to JackCeparou for this useful post)
  8. #52
    amcentee85's Avatar Member
    Reputation
    1
    Join Date
    Mar 2017
    Posts
    9
    Thanks G/R
    3/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    i am having trouble with the doors plugin since season 17, anyone else have this problem or a fix?

  9. #53
    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 amcentee85 View Post
    i am having trouble with the doors plugin since season 17, anyone else have this problem or a fix?
    You should ask in the plugin thread.
    Anyway, no issue on my side, you maybe have an old version, try to redownload.
    Hide the Rum! --> Default theme customization 101 <--

  10. #54
    amcentee85's Avatar Member
    Reputation
    1
    Join Date
    Mar 2017
    Posts
    9
    Thanks G/R
    3/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by JackCeparou View Post
    You should ask in the plugin thread.
    Anyway, no issue on my side, you maybe have an old version, try to redownload.
    Yep, that was all it was an old version, sorry to waste your time!

  11. #55
    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, any quick way to show alert if I'm missing archon -> slow time?
    I just want one single alert for this, maybe someone already has a version fully configured which includes this too
    I will try to learn how to configure this nice plugin, I just don't want to spend hours to figure it out if someone can do it in a minute.
    Thank you .

    edit: I think I asked this in the wrong forum, trying the plugins section instead sorry
    Last edited by Mundzso; 08-27-2019 at 03:27 AM.

  12. #56
    nobotter's Avatar Member
    Reputation
    1
    Join Date
    Jul 2017
    Posts
    4
    Thanks G/R
    1/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    [QUOTE=JackCeparou;3711699]
    I want to disable ThisAwesomePlugin :


    So I copy this "Hud.TogglePlugin<ThisAwesomePlugin>(false);" and paste it somewhere in a file, correct? But which file...?

  13. #57
    Jembo's Avatar Active Member
    Reputation
    33
    Join Date
    Nov 2018
    Posts
    112
    Thanks G/R
    28/30
    Trade Feedback
    0 (0%)
    Mentioned
    3 Post(s)
    Tagged
    0 Thread(s)
    \plugins\User\PluginEnablerOrDisablerPlugin.cs

  14. #58
    nobotter's Avatar Member
    Reputation
    1
    Join Date
    Jul 2017
    Posts
    4
    Thanks G/R
    1/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by Jembo View Post
    \plugins\User\PluginEnablerOrDisablerPlugin.cs
    Thanks. I know nothing about coding but suppose there must be certain grammar to be followed, right? When I open the file, it reads like this:

    --------------------------------------------------------------------------
    using Turbo.Plugins.Default;

    namespace Turbo.Plugins.User
    {

    public class PluginEnablerOrDisablerPlugin : BasePlugin, ICustomizer
    {

    public PluginEnablerOrDisablerPlugin()
    {
    Enabled = true;
    }

    public override void Load(IController hud)
    {
    base.Load(hud);
    }

    // "Customize" methods are automatically executed after every plugin is loaded.
    // So these methods can use Hud.GetPlugin<class> to access the plugin instances' public properties (like decorators, Enabled flag, parameters, etc)
    // Make sure you test the return value against null!
    public void Customize()
    {
    // basic examples

    // turn on MultiplayerExperienceRangePlugin
    Hud.TogglePlugin<MultiplayerExperienceRangePlugin>(true);

    // turn off sell darkening
    Hud.GetPlugin<InventoryAndStashPlugin>().NotGoodDisplayEnabled = false;

    // disable arcane affix label
    Hud.GetPlugin<EliteMonsterAffixPlugin>().AffixDecorators.Remove(MonsterAffix.Arc ane);

    // override an elite affix's text
    Hud.GetPlugin<EliteMonsterAffixPlugin>().CustomAffixNames.Add(MonsterAffix.Desec rator, "DES");
    }

    }

    }
    --------------------------------------------------------------------------

    So for example, I wanted to disable this "ExperienceOverBarPlugin" plugin, what I did was replacing the name in the yellow text and change "true" to "false". Apparently that didn't work. So where in this file do we paste that line? And what to do if I want to disable more than one plugin?

    Appreciate any help!

  15. #59
    RNN's Avatar Legendary
    Reputation
    801
    Join Date
    Sep 2018
    Posts
    1,043
    Thanks G/R
    102/764
    Trade Feedback
    0 (0%)
    Mentioned
    15 Post(s)
    Tagged
    0 Thread(s)
    It is correct, you modify the text you have colored yellow. 3 examples:

    Hud.TogglePlugin<TopExperienceStatistics>(false);
    Hud.TogglePlugin<ExperienceOverBarPlugin>(false);
    Hud.TogglePlugin<MultiplayerExperienceRangePlugin>(false);

    If it does not work, it will probably be because you did not renamed the file to PluginEnablerOrDisablerPlugin.cs
    Check that the file name is not PluginEnablerOrDisablerPlugin.txt or PluginEnablerOrDisablerPlugin.cs.txt

  16. #60
    nobotter's Avatar Member
    Reputation
    1
    Join Date
    Jul 2017
    Posts
    4
    Thanks G/R
    1/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Finally got it working. Thank you all!

Page 4 of 5 FirstFirst 12345 LastLast

Similar Threads

  1. [Custom] SnowElf Theme Login & Character Creation! + BONUS
    By Xel in forum World of Warcraft Model Editing
    Replies: 26
    Last Post: 04-23-2017, 04:44 AM
  2. [New/3DS] Custom Paladin 3DS Theme
    By Hazzbazzy in forum World of Warcraft General
    Replies: 0
    Last Post: 08-08-2016, 01:52 AM
  3. [Selling] Wts xbox custom themes
    By Holyinc in forum General Trading Buy Sell Trade
    Replies: 0
    Last Post: 03-01-2012, 11:14 PM
  4. Custom Computer Build (opinions/comments?)
    By Matt in forum Community Chat
    Replies: 11
    Last Post: 07-23-2006, 12:57 PM
  5. New Custom Model Swapping Fix (1.11 Working)
    By Matt in forum World of Warcraft Exploits
    Replies: 5
    Last Post: 06-23-2006, 06:05 PM
All times are GMT -5. The time now is 07:57 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