[INTERNATIONAL][Psycho] ClassMarkersPlugin menu

User Tag List

Page 1 of 3 123 LastLast
Results 1 to 15 of 35
  1. #1
    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)

    [INTERNATIONAL][Psycho] ClassMarkersPlugin




    Place in Plugins/Psycho/ClassMarkersPlugin.cs


    Code:
                Hud.RunOnPlugin<Psycho.ClassMarkersPlugin>(plugin =>
                {
                    //Example To Disable Only Your Ground Circle Decorator
                    plugin.MyPlayerCircle = false;
    
                    //Example To Disable Other Player Ground Circle Decorators
                    plugin.OtherPlayersCircles = false;
    
                    //Example To Change Class Circle Decorators
                    //Ground Circle Decorator
                    plugin.MyGroundCirleDecorator[HeroClass.Barbarian] = plugin.CreateGroundCircleDecorators(255,255,0,0,5,4);
                    //Map Circle Decorator
                    plugin.MyMapCircleDecorator[HeroClass.Barbarian] = plugin.CreateMapCircleDecorators(255,25,0,0,0,2);
                });

    [INTERNATIONAL][Psycho] ClassMarkersPlugin
  2. Thanks bm206, Khildrax, greatscott (3 members gave Thanks to PsychoPyro202 for this useful post)
  3. #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)


    Just a remark : there is no need to have two dictionnaries.
    PHP Code:
    public Dictionary<HeroClassWorldDecoratorCollectionMyDecorator getset; } 

  4. Thanks PsychoPyro202 (1 members gave Thanks to JackCeparou for this useful post)
  5. #3
    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)
    Yeah it was a dirty hack on top of the original I need to update it when I get some time.

  6. #4
    odin99's Avatar Member
    Reputation
    2
    Join Date
    Mar 2017
    Posts
    19
    Thanks G/R
    3/1
    Trade Feedback
    0 (0%)
    Mentioned
    1 Post(s)
    Tagged
    0 Thread(s)
    i changed the colors of map and minimap circles, can you tell me the lines for changing the character name colors from map and minimap too pls?

  7. #5
    techdough71's Avatar Member
    Reputation
    2
    Join Date
    May 2014
    Posts
    13
    Thanks G/R
    1/1
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    public ClassMarkersPlugin()
    {
    Enabled = true;
    MyPlayerCircle = true;
    OtherPlayersCircles = false;
    MyPlayerCircleColorOverride = false;
    }

    if i use this it wont show circles on myself why? myplayercircle is true and others is false. i Have to enable otehrsplayerscircle true to see cricles on myself.
    Last edited by techdough71; 04-07-2017 at 01:07 PM.

  8. #6
    polyssman's Avatar Member
    Reputation
    1
    Join Date
    Apr 2017
    Posts
    4
    Thanks G/R
    3/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    And can I use the code from the old plugin? It changes the radius, which makes it easier to recognize the player in large piles of mobs!
    Code:
    WitchdoctorDecorator = new WorldDecoratorCollection(
    	        new GroundCircleDecorator(Hud) {
                        Brush = Hud.Render.CreateBrush(255, 0, 0, 0, 12),
                        RadiusTransformator = new StandardPingRadiusTransformator (Hud, 500),
                        Radius = 1f,
    		},
                    new GroundCircleDecorator(Hud) {
                        Brush = Hud.Render.CreateBrush(255, 0, 255, 65, 8),
    		    RadiusTransformator = new StandardPingRadiusTransformator (Hud, 500),
                        Radius = 1f					
                    }
                    );
    Link to all code
    Last edited by polyssman; 04-28-2017 at 03:05 AM.

  9. #7
    agas's Avatar Member
    Reputation
    1
    Join Date
    Jan 2010
    Posts
    8
    Thanks G/R
    1/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    cant get this to work, I copied it under plugins\psycho\ClassMarkersPlugin.cs

    Hud doesnt give any exception error but cant see any circle , not in town or combat area.

  10. #8
    MrOne's Avatar Contributor
    Reputation
    163
    Join Date
    Mar 2017
    Posts
    322
    Thanks G/R
    66/141
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Just add 2 lines and work with necro

    Code:
    public override void Load(IController hud)
            {
                base.Load(hud);
    
                MyMapCircleDecorator = new Dictionary<HeroClass, MapShapeDecorator>();
                MyGroundCirleDecorator = new Dictionary<HeroClass, GroundCircleDecorator>();
    
                MyMapCircleDecorator[HeroClass.Barbarian] = CreateMapCircleDecorators(200, 250, 10, 10);
                MyMapCircleDecorator[HeroClass.Crusader] = CreateMapCircleDecorators(240, 0, 200, 250);
                MyMapCircleDecorator[HeroClass.DemonHunter] = CreateMapCircleDecorators(255, 0, 0, 200, 5);
                MyMapCircleDecorator[HeroClass.Monk] = CreateMapCircleDecorators(245, 120, 0, 200);
                MyMapCircleDecorator[HeroClass.WitchDoctor] = CreateMapCircleDecorators(155, 0, 155, 125);
                MyMapCircleDecorator[HeroClass.Wizard] = CreateMapCircleDecorators(255, 250, 50, 180);
                MyMapCircleDecorator[HeroClass.Necromancer] = CreateMapCircleDecorators(255, 250, 50, 180); // this line
    
                MyGroundCirleDecorator[HeroClass.Barbarian] = CreateGroundCircleDecorators(200, 250, 10, 10);
                MyGroundCirleDecorator[HeroClass.Crusader] = CreateGroundCircleDecorators(240, 0, 200, 250);
                MyGroundCirleDecorator[HeroClass.DemonHunter] = CreateGroundCircleDecorators(255, 0, 0, 200, 5);
                MyGroundCirleDecorator[HeroClass.Monk] = CreateGroundCircleDecorators(245, 120, 0, 200);
                MyGroundCirleDecorator[HeroClass.WitchDoctor] = CreateGroundCircleDecorators(155, 0, 155, 125);
                MyGroundCirleDecorator[HeroClass.Wizard] = CreateGroundCircleDecorators(255, 250, 50, 180);
                MyGroundCirleDecorator[HeroClass.Necromancer] = CreateGroundCircleDecorators(255, 250, 50, 180); //and this line
      
                MyGroundCircle = new WorldDecoratorCollection(CreateGroundCircleDecorators(255,255,255,255),CreateMapCircleDecorators(255,255,255,255));
            }

  11. Thanks cherouvim13, johnbl (2 members gave Thanks to MrOne for this useful post)
  12. #9
    MrOne's Avatar Contributor
    Reputation
    163
    Join Date
    Mar 2017
    Posts
    322
    Thanks G/R
    66/141
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    update class colors acorting to in-game profile colors (shift+p)

    [C#] ClassMarkersPlugin - Pastebin.com

  13. Thanks Levithan (1 members gave Thanks to MrOne for this useful post)
  14. #10
    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 nice, thank you

  15. #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)
    Ok monk circle should change color (orange), since it is white in the map but yellow, like the elites color, necro is fine, barb is fine, wd should ne deeper i guess, dh is pink?

    wiz and crus havent checked yet

  16. #12
    MrOne's Avatar Contributor
    Reputation
    163
    Join Date
    Mar 2017
    Posts
    322
    Thanks G/R
    66/141
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)

  17. #13
    SClassServices's Avatar Member
    Reputation
    1
    Join Date
    Sep 2016
    Posts
    3
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    tested but it doesnt work on other players

    reapplied and seemed to work IF you disable otherplayercolors plugin.
    Last edited by SClassServices; 01-16-2018 at 05:42 AM.

  18. #14
    StuhlMann88's Avatar Member
    Reputation
    1
    Join Date
    Apr 2018
    Posts
    3
    Thanks G/R
    1/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    IS there any way, to get the circle under ur feet and the name over ur head. I tryed it the whole day but it won't work... i just can get both over the head or both to the feet ..?

  19. #15
    PeterJacksson's Avatar Member
    Reputation
    1
    Join Date
    Sep 2018
    Posts
    2
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Hi Psycho and the commmunity!

    I really love this circle plugin. Somehow it just stopped working, I only see a circle under my character and not the party-players.
    This is enabled as this:

    public ClassMarkersPlugin()
    {
    Enabled = true;
    MyPlayerCircle = true;
    OtherPlayersCircles = true;
    MyPlayerCircleColorOverride = true;

    Why isnt it working? :S
    Plz help, I rly need this addon ^^

    Sweet regards,
    Peter

Page 1 of 3 123 LastLast

Similar Threads

  1. [INTERNATIONAL][Psycho] ShrineLabelsPlugin
    By PsychoPyro202 in forum TurboHUD Community Plugins
    Replies: 37
    Last Post: 08-19-2020, 08:04 AM
  2. [INTERNATIONAL][Psycho] DpsMeterPlugin
    By PsychoPyro202 in forum TurboHUD Community Plugins
    Replies: 29
    Last Post: 08-23-2019, 10:28 AM
  3. International Talk Like a Pirate Day!
    By Loveshock in forum Community Chat
    Replies: 13
    Last Post: 09-20-2007, 12:11 PM
  4. International Rules to Calling Shotgun
    By matswurld in forum Community Chat
    Replies: 1
    Last Post: 05-18-2007, 08:37 PM
  5. President Bush, CAUGHT SWEARING at international meeting
    By mantalcore in forum Community Chat
    Replies: 15
    Last Post: 08-14-2006, 09:41 AM
All times are GMT -5. The time now is 08:12 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