Default theme customization 101 menu

User Tag List

Page 1 of 5 12345 LastLast
Results 1 to 15 of 67
  1. #1
    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)

    Default theme customization 101

    I don't want to touch any code :
    Use TCT by RealGsus (thread)
    If I find a .cs file in TurboHUD Approved Plugins, can I just copy and paste it in some folder to make it load/work?
    Each plugin thread as a path like this /plugins/{author}/{plugin}.cs
    Where {author} is the name of the plugin author and {plugin} the plugin name.
    This give you where to paste the content of the plugin.

    e.g. for [v7.2] [ENGLISH] [BM] HealthBarOnElitePlugin you paste the content of --> this pastebin <-- into {your hud installation folder}\plugins\BM\HealthBarOnElitePlugin.cs
    How can i use a useful snippet found in the forum ?
    Inside the body of Customize() method of \plugins\User\PluginEnablerOrDisablerPlugin.cs file.

    (if you have not configured any plugins yet, the file is a .txt, rename the extension to .cs if needed.)

    Example in a default PluginEnablerOrDisablerPlugin file :
    Default theme customization 101-smztjh1-gif
    I want to disable ThisAwesomePlugin :
    Hud.TogglePlugin<ThisAwesomePlugin>(false);
    I want to customize ThisAwesomePlugin :
    Hud.RunOnPlugin<ThisAwesomePlugin>(plugin => {
    // your customization code goes here
    });
    More concrete example :
    I'd like to resize the radius of the elite/minion marker on the minimap to 4. Its in the StandardMonsterPlugin:
    PHP Code:
    Hud.RunOnPlugin<StandardMonsterPlugin>(plugin => {
      
    plugin.EliteMinionDecorator = new WorldDecoratorCollection(
        new 
    MapShapeDecorator(Hud)
        {
          
    Brush Hud.Render.CreateBrush(18019292200),
          
    ShadowBrush Hud.Render.CreateBrush(960001),
          
    Radius 4,
          
    ShapePainter = new CircleShapePainter(Hud),
     });
    }); 
    I want to customize a brush inside this ThisAwesomePlugin :
    • a => alpha (0..255) (transparent to opaque)
    • r => red (0..255)
    • g => green (0..255)
    • b => blue (0..255)
    • strokeWidth => 0 mean filled, other values mean the 'border' thickness

    PHP Code:
    Hud.RunOnPlugin<ThisAwesomePlugin>(plugin => {
      
    plugin.brushYouWantToReplace Hud.Render.CreateBrush(argbstrokeWidth);
    }); 
    I search ThisAwesomePlugin to customize it :
    Name \default\ file
    Bounty table \ BountyTablePlugin.cs
    Damage bonus \ DamageBonusPlugin.cs
    Debug \ DebugPlugin.cs
    Experience over bar \ ExperienceOverBarPlugin.cs
    Game info \ GameInfoPlugin.cs
    Network latency \ NetworkLatencyPlugin.cs
    Notify at rift percentage \ NotifyAtRiftPercentagePlugin.cs
    Portrait bottom stats \ PortraitBottomStatsPlugin.cs
    Resource over globe \ ResourceOverGlobePlugin.cs
    Rift \ RiftPlugin.cs
    Chest \Actors\ ChestPlugin.cs
    Clickable chest gizmo \Actors\ ClickableChestGizmoPlugin.cs
    Cursed event \Actors\ CursedEventPlugin.cs
    Dead body \Actors\ DeadBodyPlugin.cs
    Globe \Actors\ GlobePlugin.cs
    Portal \Actors\ PortalPlugin.cs
    Rack \Actors\ RackPlugin.cs
    Shrine \Actors\ ShrinePlugin.cs
    Base \BasePlugin\ BasePlugin.cs
    Cheat death buff feeder \BuffLists\ CheatDeathBuffFeederPlugin.cs
    Convention of elements buff list \BuffLists\ ConventionOfElementsBuffListPlugin.cs
    Mini map left buff list \BuffLists\ MiniMapLeftBuffListPlugin.cs
    Mini map right buff list \BuffLists\ MiniMapRightBuffListPlugin.cs
    Player bottom buff list \BuffLists\ PlayerBottomBuffListPlugin.cs
    Player left buff list \BuffLists\ PlayerLeftBuffListPlugin.cs
    Player right buff list \BuffLists\ PlayerRightBuffListPlugin.cs
    Player top buff list \BuffLists\ PlayerTopBuffListPlugin.cs
    Top left buff list \BuffLists\ TopLeftBuffListPlugin.cs
    Top right buff list \BuffLists\ TopRightBuffListPlugin.cs
    Ground label decorator painter \Decorators\ GroundLabelDecoratorPainterPlugin.cs
    Blood shard \Inventory\ BloodShardPlugin.cs
    Inventory and stash \Inventory\ InventoryAndStashPlugin.cs
    Inventory free space \Inventory\ InventoryFreeSpacePlugin.cs
    Inventory kanai cubed items \Inventory\ InventoryKanaiCubedItemsPlugin.cs
    Inventory material count \Inventory\ InventoryMaterialCountPlugin.cs
    Stash preview \Inventory\ StashPreviewPlugin.cs
    Stash used space \Inventory\ StashUsedSpacePlugin.cs
    Cosmetic items \Items\ CosmeticItemsPlugin.cs
    Hovered item info \Items\ HoveredItemInfoPlugin.cs
    Items \Items\ ItemsPlugin.cs
    Pickup range \Items\ PickupRangePlugin.cs
    Attribute label list \LabelLists\ AttributeLabelListPlugin.cs
    Top experience statistics \LabelLists\ TopExperienceStatistics.cs
    Marker \Minimap\ MarkerPlugin.cs
    Scene hint \Minimap\ SceneHintPlugin.cs
    Dangerous monster \Monsters\ DangerousMonsterPlugin.cs
    Elite monster affix \Monsters\ EliteMonsterAffixPlugin.cs
    Elite monster skill \Monsters\ EliteMonsterSkillPlugin.cs
    Explosive monster \Monsters\ ExplosiveMonsterPlugin.cs
    Goblin \Monsters\ GoblinPlugin.cs
    Monster pack \Monsters\ MonsterPackPlugin.cs
    Monster rift progression coloring \Monsters\ MonsterRiftProgressionColoringPlugin.cs
    Standard monster \Monsters\ StandardMonsterPlugin.cs
    Top monster health bar \Monsters\ TopMonsterHealthBarPlugin.cs
    Banner \Players\ BannerPlugin.cs
    Head stone \Players\ HeadStonePlugin.cs
    Multiplayer experience range \Players\ MultiplayerExperienceRangePlugin.cs
    Other players \Players\ OtherPlayersPlugin.cs
    Player skill \Players\ PlayerSkillPlugin.cs
    Skill range helper \Players\ SkillRangeHelperPlugin.cs
    Original health potion skill \SkillBars\ OriginalHealthPotionSkillPlugin.cs
    Original skill bar \SkillBars\ OriginalSkillBarPlugin.cs
    Ui hidden portrait skill bar \SkillBars\ UiHiddenPortraitSkillBarPlugin.cs
    Last edited by JackCeparou; 05-31-2018 at 03:24 PM.
    Hide the Rum! --> Default theme customization 101 <--

    Default theme customization 101
  2. #2
    Vern1701's Avatar Active Member
    Reputation
    52
    Join Date
    Mar 2017
    Posts
    316
    Thanks G/R
    12/49
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Good guide to have out here, Jack.

  3. #3
    cherouvim13's Avatar Member
    Reputation
    14
    Join Date
    Mar 2017
    Posts
    212
    Thanks G/R
    258/13
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Very helpful for noobs like me

  4. #4
    migajo's Avatar Member
    Reputation
    1
    Join Date
    Jan 2012
    Posts
    27
    Thanks G/R
    8/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    So good guide
    Always thank you
    Jack is kind

  5. #5
    freak000's Avatar Member
    Reputation
    1
    Join Date
    Mar 2017
    Posts
    2
    Thanks G/R
    2/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    hey whats the plugin for the paragon thingie? its on the top middle position ?

    thank u

  6. #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)
    Plugin list updated.
    (added the missing TopExperienceStatistics)
    Hide the Rum! --> Default theme customization 101 <--

  7. Thanks freak000 (1 members gave Thanks to JackCeparou for this useful post)
  8. #7
    cherouvim13's Avatar Member
    Reputation
    14
    Join Date
    Mar 2017
    Posts
    212
    Thanks G/R
    258/13
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by JackCeparou View Post
    How can i use a useful snippet found in the forum ?]
    Jack, what program to use to get this view? (meh cannot quote the image you have in OP)

  9. #8
    PsychoPyro202's Avatar Active Member
    Reputation
    25
    Join Date
    Mar 2017
    Posts
    34
    Thanks G/R
    10/17
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by cherouvim13 View Post
    Jack, what program to use to get this view? (meh cannot quote the image you have in OP)
    That is visual studio 2015 there is a free version called Visual Studio 2015 Community.

  10. #9
    cherouvim13's Avatar Member
    Reputation
    14
    Join Date
    Mar 2017
    Posts
    212
    Thanks G/R
    258/13
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Thank you Psycho, cheers

  11. #10
    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)
    Well, i guess i need to rewrite my VS sln thread a third time xD
    Hide the Rum! --> Default theme customization 101 <--

  12. #11
    R00kie's Avatar Member
    Reputation
    1
    Join Date
    Aug 2012
    Posts
    5
    Thanks G/R
    1/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Hi, I need some help regarding this customization option. I succesfully can toggle plugins, but I've failed to customize them. For example, I'd like to resize the elite/minion marker on the minimap.
    Its in the StandardMonsterPlugin:
    EliteMinionDecorator = new WorldDecoratorCollection(
    new MapShapeDecorator(Hud)
    {
    Brush = Hud.Render.CreateBrush(180, 192, 92, 20, 0),
    ShadowBrush = shadowBrush,
    Radius = 8,
    ShapePainter = new CircleShapePainter(Hud),
    }
    );

    I'd like to set radius to 4, for my liking. Ive pasted this code few different ways into Pluginenabler, all unsuccessful.
    Im no programmer, and as to day, I couldnt wrap my head around this C.
    Need some advice, best regards.

  13. #12
    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 R00kie View Post
    Need some advice, best regards.
    I'll update OP.
    Last edited by JackCeparou; 03-29-2017 at 06:58 AM.
    Hide the Rum! --> Default theme customization 101 <--

  14. #13
    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 R00kie View Post
    Need some advice, best regards.
    OP updated with your request as an example

    Happy coding.
    Hide the Rum! --> Default theme customization 101 <--

  15. Thanks R00kie (1 members gave Thanks to JackCeparou for this useful post)
  16. #14
    RealGsus's Avatar Contributor
    Reputation
    104
    Join Date
    Mar 2017
    Posts
    114
    Thanks G/R
    85/99
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    this should be stickied btw
    Wanna customize THUD the easy way? Check out
    ..:: TCT | TurboHUD Customization Tool ::..
    in the TurboHUD Plugin Review Zone

  17. #15
    Shisha16's Avatar Member
    Reputation
    1
    Join Date
    Jun 2017
    Posts
    7
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Can someone help me. I cant find the folder or data to change the "greyed" leg items in my inventory. I can open config folder and then there are some ui folder. How can i create this with txt. into xml.

    Thanks

Page 1 of 5 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 09:43 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