[7.3] [ENGLISH] [Styckz] Plugin Theme Pack menu

User Tag List

Page 1 of 2 12 LastLast
Results 1 to 15 of 25
  1. #1
    Styckz's Avatar Member
    Reputation
    14
    Join Date
    Mar 2017
    Posts
    23
    Thanks G/R
    1/13
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)

    [7.3] [ENGLISH] [Styckz] Plugin Theme Pack

    Supported TurboHUD version: 7.3

    Summary:
    This is a group of plugins whose goal is to adjust the default theme to something I find more pleasing. This does include some tweaks to how some of the default plugins work. Plugins where I am changing something with the functionality are renamed something similar to the default plugin they are replacing. Those where I'm just doing edits of the default plugin all end in the word Override.

    Example Pictures:




    A few more pictures can be found here.

    Download/Install:
    Unzip this file into /plugins/ | Download From Google Drive

    [7.3] [ENGLISH] [Styckz] Plugin Theme Pack
  2. Thanks SeaDragon, cherouvim13, johnbl, Addixion (4 members gave Thanks to Styckz for this useful post)
  3. #2
    SeaDragon's Avatar Contributor
    Reputation
    321
    Join Date
    Aug 2016
    Posts
    1,041
    Thanks G/R
    140/299
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Great
    It's awesome

  4. #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)
    Seems nice, will test it, thanks!

  5. #4
    Addixion's Avatar Member
    Reputation
    2
    Join Date
    Jul 2007
    Posts
    7
    Thanks G/R
    2/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Looks great, thanks

  6. #5
    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)
    all fine, just got some questions :

    - how to put colors at other players cicle in the map? and/or add color'd circle under them
    - how to disable specific labels such as the death breaths one?
    - how to change the shape of the chests from rectangular to and "x"
    - how to disable the health bars from the elite packs, because i use the gigi's elite health bar
    - how to disable the dangerousmonsteraffix tags?
    Last edited by cherouvim13; 07-30-2017 at 03:55 PM.

  7. #6
    Styckz's Avatar Member
    Reputation
    14
    Join Date
    Mar 2017
    Posts
    23
    Thanks G/R
    1/13
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    - how to put colors at other players circle in the map? and/or add color'd circle under them
    You would probably want to use another plugin to do this. You could disable my OtherPlayerOverrides Plugin and use someone else's that marks them the way you want.

    - how to disable specific labels such as the death breaths one?
    You can disable the groundlabeldecorator on death's breath by using a line like the following in your PluginsEnableOrDisablePlugin file:

    PHP Code:
                Hud.GetPlugin<ItemsPlugin>().DeathsBreathDecorator.GetDecorators<StyckzGroundLabelDecorator>().ForEach(=> d.Enabled false); 
    - how to change the shape of the chests from rectangular to and "x"
    If you want to keep the other changes then you can use the below. If you like the way chests were in the default theme just disable the ChestsOverride plugin.

    PHP Code:
                Hud.RunOnPlugin<ChestPlugin>(plugin =>
                {
                    
    plugin.NormalChestDecorator.GetDecorators<MapShapeDecorator>().ForEach(=>
                    {
                        
    d.ShapePainter = new CrossShapePainter(Hud);
                    });
                    
    plugin.ResplendentChestDecorator.GetDecorators<MapShapeDecorator>().ForEach(=>
                    {
                        
    d.ShapePainter = new CrossShapePainter(Hud);
                    });
                }); 
    - how to disable the health bars from the elite packs, because i use the gigi's elite health bar
    If you just want the healthbars gone you can use the below.
    PHP Code:
                Hud.GetPlugin<Styckz.StyckzMonsterPackPlugin>().MiddleHealthBarWidth 0;
                
    Hud.GetPlugin<Styckz.StyckzMonsterPackPlugin>().MiddleHealthBarHeight 0
    - how to disable the dangerousmonsteraffix tags?
    I have honestly been thinking of having the file that generates them disabled or as a txt file in there as I don't personally find myself using them. But to disable them you can use the following:
    PHP Code:
                Hud.GetPlugin<Styckz.GRiftDangeriousMonsters>().Enabled false

  8. Thanks cherouvim13 (1 members gave Thanks to Styckz for this useful post)
  9. #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)
    Awesome thank u!

    edit : and to disable the plaged, arcane etc tags on elites?
    Last edited by cherouvim13; 07-30-2017 at 05:45 PM.

  10. #8
    Styckz's Avatar Member
    Reputation
    14
    Join Date
    Mar 2017
    Posts
    23
    Thanks G/R
    1/13
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by cherouvim13 View Post
    edit : and to disable the plaged, arcane etc tags on elites?
    PHP Code:
    Hud.GetPlugin<Styckz.StyckzMonsterPackPlugin>().AffixDecorators.Clear(); 

  11. Thanks cherouvim13 (1 members gave Thanks to Styckz for this useful post)
  12. #9
    smoochy84's Avatar Member
    Reputation
    10
    Join Date
    Jul 2017
    Posts
    44
    Thanks G/R
    1/9
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Hi Styckz,

    thank you very much for this pack. I really like it.

    May I ask for some modification? Would it be possible to remove the elite affixes from minions? So that these are only shown on all blue elite and the yellow elite leader?

    Thank you


    /Edit: Maybe a toggler like "showAffixesOnMinions = false;" or sth similar might be possible?
    Last edited by smoochy84; 07-31-2017 at 02:14 AM.

  13. #10
    Styckz's Avatar Member
    Reputation
    14
    Join Date
    Mar 2017
    Posts
    23
    Thanks G/R
    1/13
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by smoochy84 View Post
    Would it be possible to remove the elite affixes from minions? So that these are own only all blue elite and the yellow elite leader?
    I am not sure what you mean. If you are talking about tags on non elite monsters you would want to follow the directions above on how to disable the dangerous monster affixes.

  14. #11
    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 u very much Styckz, looking forward for further updates!

  15. #12
    smoochy84's Avatar Member
    Reputation
    10
    Join Date
    Jul 2017
    Posts
    44
    Thanks G/R
    1/9
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by Styckz View Post
    I am not sure what you mean. If you are talking about tags on non elite monsters you would want to follow the directions above on how to disable the dangerous monster affixes.
    Sorry for expressing me so unclear.

    Have a look at the picture:




    All the minions of this elite pack (the skeletons) do have this "Shd" for the shield affix on them.


    I was looking for a way to have only the "Elc, Jlr, Mtr, Plg" on the elite champion (the yellow guy).

    So to disable the display of affixes on minions.


    Of course of the elite is a blue pack, then I would need to have "Fzn, Jlr, PSn, Shd" on all of them. Like these 3 guys:




    Does this make sense?
    Last edited by smoochy84; 07-31-2017 at 03:22 PM.

  16. #13
    xudbux's Avatar Member
    Reputation
    1
    Join Date
    Apr 2010
    Posts
    2
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    where do i disable text to speech on legendary drops?
    nvm figured it out. great addon!
    Last edited by xudbux; 07-31-2017 at 04:03 PM.

  17. #14
    Styckz's Avatar Member
    Reputation
    14
    Join Date
    Mar 2017
    Posts
    23
    Thanks G/R
    1/13
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by smoochy84 View Post
    Sorry for expressing me so unclear.

    Have a look at the picture:

    All the minions of this elite pack (the skeletons) do have this "Shd" for the shield affix on them.


    I was looking for a way to have only the "Elc, Jlr, Mtr, Plg" on the elite champion (the yellow guy).

    So to disable the display of affixes on minions.


    Of course of the elite is a blue pack, then I would need to have "Fzn, Jlr, PSn, Shd" on all of them. Like these 3 guys:

    Does this make sense?
    Did you customize things already to get to this point? did you disable the MonsterPack Plugin and edit the EliteTagsPlugin? I don't know where by default that you would get to this point. If you want me to add a flag to not display on RareMinions to the Elite Tags plugin I should be able to. I just typically use the Monster Pack plugin which only lists the affixes once.

  18. #15
    smoochy84's Avatar Member
    Reputation
    10
    Join Date
    Jul 2017
    Posts
    44
    Thanks G/R
    1/9
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    I did not touch your both plugin files in any way.

    But I do have some other plugins running, of which I have some already disabled again.

    But I could try tonight with only your plugin running, and all others disabled, what do yellow and blue elite packs look like.

    Thanks for your effort.


    /edit: could do the testing a bit earlier.

    I removed all other plugins from the plugins folder except your plugin pack and somehow the minions did not have the affixes shown anymore.
    I put back my other plugins one by one and the affixes still were not shown on minions.
    I disabled some of your other plugins and it still worked.
    I disabled your FullDisables.cs and the affixes where now shown on minions.

    So I just enabled your FullDisables.cs (and disabled some stuff inside the file which I do not need) and it now looks like it is what I need
    Last edited by smoochy84; 08-01-2017 at 03:19 AM.

Page 1 of 2 12 LastLast

Similar Threads

  1. [7.3] [ENGLISH] [Styckz] RiftAndQuestsArrow
    By Styckz in forum TurboHUD Community Plugins
    Replies: 5
    Last Post: 08-02-2017, 11:15 PM
  2. MMOwned Windows XP MMOwned Theme Pack 0.3 Gloss Beta
    By Zore. in forum Community Chat
    Replies: 21
    Last Post: 02-23-2008, 11:20 PM
  3. MMOwned Windows XP Theme pack 1.0 almost here!
    By Zore. in forum Community Chat
    Replies: 1
    Last Post: 01-30-2008, 09:37 AM
  4. Windows XP MMOwned Theme Pack Beta
    By Zore. in forum Community Chat
    Replies: 15
    Last Post: 12-14-2007, 12:07 PM
  5. Replies: 2
    Last Post: 12-13-2007, 06:17 PM
All times are GMT -5. The time now is 12:15 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