Filled circles menu

User Tag List

Results 1 to 13 of 13
  1. #1
    hurrikane's Avatar Member
    Reputation
    1
    Join Date
    Aug 2008
    Posts
    78
    Thanks G/R
    29/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)

    Filled circles

    Hello guys,

    Iam playing support Monk and its really hard to see the wizard i have to babysit if there are tons of monsters. My question is, is it possible to show a filled circle under the wizard and maybe the other classes with a filled circle as well to find them better in big monster packs?

    thank you in advance

    Filled circles
  2. #2
    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)
    PHP Code:
    Hud.RunOnPlugin<OtherPlayersPlugin>(plugin =>
                {
                    
    plugin.DecoratorByClass[HeroClass.Barbarian].Add(new GroundCircleDecorator(Hud)
                    {
                        
    Radius 5,
                        
    Brush Hud.Render.CreateBrush(20025010100),
                    });
                    
    plugin.DecoratorByClass[HeroClass.Crusader].Add(new GroundCircleDecorator(Hud)
                    {
                        
    Radius 5,
                        
    Brush Hud.Render.CreateBrush(24002002500),
                    });
                    
    plugin.DecoratorByClass[HeroClass.DemonHunter].Add(new GroundCircleDecorator(Hud)
                    {
                        
    Radius 5,
                        
    Brush Hud.Render.CreateBrush(255002000),
                    });
                    
    plugin.DecoratorByClass[HeroClass.Monk].Add(new GroundCircleDecorator(Hud)
                    {
                        
    Radius 5,
                        
    Brush Hud.Render.CreateBrush(24512002000),
                    });
                    
    plugin.DecoratorByClass[HeroClass.Necromancer].Add(new GroundCircleDecorator(Hud)
                    {
                        
    Radius 5,
                        
    Brush Hud.Render.CreateBrush(2551752382380),
                    });
                    
    plugin.DecoratorByClass[HeroClass.WitchDoctor].Add(new GroundCircleDecorator(Hud)
                    {
                        
    Radius 5,
                        
    Brush Hud.Render.CreateBrush(15501551250),
                    });
                    
    plugin.DecoratorByClass[HeroClass.Wizard].Add(new GroundCircleDecorator(Hud)
                    {
                        
    Radius 5,
                        
    Brush Hud.Render.CreateBrush(255250501800),
                    });
                }); 
    Change colors/radius to your liking ; )
    And if you don't know what to do with that code, look at my signature ;p
    Hide the Rum! --> Default theme customization 101 <--

  3. Thanks hurrikane (1 members gave Thanks to JackCeparou for this useful post)
  4. #3
    hurrikane's Avatar Member
    Reputation
    1
    Join Date
    Aug 2008
    Posts
    78
    Thanks G/R
    29/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Hello JackCeparou,

    thanks a lot for now but the only problem i have it looks like the circle is on the top of the head instead of on the ground xD
    please can you help me to fix that?

    thank you in advance

  5. #4
    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)
    lol, totally forgot this plugin has a ZOffset for the nameplate ^^'

    Save this gist as /plugins/Jack/OtherPlayerCirclesPlugin.cs

    And btw, there is an approved plugin doing this too
    Hide the Rum! --> Default theme customization 101 <--

  6. Thanks hurrikane (1 members gave Thanks to JackCeparou for this useful post)
  7. #5
    hurrikane's Avatar Member
    Reputation
    1
    Join Date
    Aug 2008
    Posts
    78
    Thanks G/R
    29/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Sorry man i have no idea about this coding stuff i need your help again :/

    should i create this "OtherPlayerCirclesPlugin.cs" file in my default folder or user folder? The first code you send me was easy i just put it into the PluginEnablerOrDisablerPlugin.cs and it worked fine but if i do this with your second code i get 4 exceptions and it doesnt work.

    thank you in advance

  8. #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)
    Save it as a new file {YourTurboHudPath}\plugins\Jack\OtherPlayerCirclesPlugin.cs (the raw code, not the html page.. don't laugh, we got the case ;p)

    Edit, btw, I just changed the radius to 2 because that 5 was way too huge.
    Last edited by JackCeparou; 04-16-2018 at 04:06 PM.
    Hide the Rum! --> Default theme customization 101 <--

  9. Thanks hurrikane (1 members gave Thanks to JackCeparou for this useful post)
  10. #7
    hurrikane's Avatar Member
    Reputation
    1
    Join Date
    Aug 2008
    Posts
    78
    Thanks G/R
    29/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Hello JackCeparou,

    thank you very much it works now! The only question i have is, what RGB code do you use? Is there any website for it? I want to change for example the color of the wizard into blue.

    thank you in advance
    Last edited by hurrikane; 04-16-2018 at 04:31 PM.

  11. #8
    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 hurrikane View Post
    The only question i have is, what RGB code do you use? Is there any website for it? I want to change for example the color of the wizard into blue.
    Hud use standard argb, that's pretty easy to understand once you know the ropes.

    In the code you will find something like
    PHP Code:
    Hud.Render.CreateBrush(255002000
    and that mean
    PHP Code:
    Hud.Render.CreateBrush(ALPHAREDGREENBLUESTROKE
    • ALPHA => 0 to 255 => transparency
    • RED => 0 to 255
    • GREEN => 0 to 255
    • BLUE => 0 to 255
    • STROKE => floating number for the 'border thickness' (0 mean filled)


    And to choose the value : just google 'color picker' ; )
    Hide the Rum! --> Default theme customization 101 <--

  12. Thanks hurrikane (1 members gave Thanks to JackCeparou for this useful post)
  13. #9
    hurrikane's Avatar Member
    Reputation
    1
    Join Date
    Aug 2008
    Posts
    78
    Thanks G/R
    29/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Hello JackCeparou,

    thank you very much for all your help! Have a great night! I really appreciate it your help

  14. #10
    hurrikane's Avatar Member
    Reputation
    1
    Join Date
    Aug 2008
    Posts
    78
    Thanks G/R
    29/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Hello Man,

    I have a problem with the circles, i play monk and the wizard has a blue circle and all good but sometimes he moves on but the circle get stuck on the old place where he was, happens in town as well. Do you have any clue how to fix that?

    thank you in advance

  15. #11
    bm206's Avatar Active Member
    Reputation
    73
    Join Date
    Mar 2017
    Posts
    285
    Thanks G/R
    57/64
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    I reported this and KJ answered and wanted Screenshots -> He knows the problem

  16. #12
    hurrikane's Avatar Member
    Reputation
    1
    Join Date
    Aug 2008
    Posts
    78
    Thanks G/R
    29/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Oh okay thanks man, does he still need screenshots?
    Did you found an alternative or do you just life with it?

    thanks in advance
    Last edited by hurrikane; 08-07-2018 at 06:37 AM.

  17. #13
    bm206's Avatar Active Member
    Reputation
    73
    Join Date
    Mar 2017
    Posts
    285
    Thanks G/R
    57/64
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    I live with it.

Similar Threads

  1. Filled Festive Mug v2.3
    By SockofBadKarma in forum World of Warcraft Exploits
    Replies: 3
    Last Post: 01-03-2008, 08:23 PM
  2. [Spell Swap] Consecration -> Scourge Rune Circle
    By Dead_Man in forum World of Warcraft Model Editing
    Replies: 4
    Last Post: 12-04-2007, 05:34 PM
  3. The Circle of Blood guide, how to conquer it.
    By cripling in forum World of Warcraft Guides
    Replies: 4
    Last Post: 10-22-2007, 09:37 AM
  4. Circle of beer (brewfest)
    By XinuX in forum World of Warcraft Exploits
    Replies: 3
    Last Post: 10-04-2007, 01:57 AM
  5. Circle Of Blood ( My Strategy )
    By matswurld in forum WoW PvP & Battlegrounds
    Replies: 6
    Last Post: 08-01-2007, 06:34 PM
All times are GMT -5. The time now is 05:44 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