Is there a way to change monster marker size in minimap? menu

User Tag List

Results 1 to 4 of 4
  1. #1
    graphitey's Avatar Member
    Reputation
    1
    Join Date
    Feb 2018
    Posts
    9
    Thanks G/R
    1/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)

    Is there a way to change monster marker size in minimap?

    Hello and thanks for the update, to both KJ and Enigma.

    As the title, I'm trying to change all monster marker size in the minimap, but to no avail.

    I thought the 'StandardMonsterPlugin' file would allow me to do this but it only seems to change elite/boss marker size. I basically want all enemy, normal/elite/boss, to have 1 size and only differentiated by color.

    I've looked in 'Monsters' and 'Minimap' folders but found nothing that seem to correlate to regular monster marker sizes.

    I would really appreciate some help, thanks in advance.

    Is there a way to change monster marker size in minimap?
  2. #2
    graphitey's Avatar Member
    Reputation
    1
    Join Date
    Feb 2018
    Posts
    9
    Thanks G/R
    1/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Bump, still need assistance with this, please and ty

  3. #3
    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)
    Take a look at 'Plugins\Default\Monsters\MonsterRiftProgressionColoringPlugin.cs'
    The difference in radius represent the rift progression value.

    PHP Code:
    Hud.RunOnPlugin<MonsterRiftProgressionColoringPlugin>(plugin =>
                {
                    var 
    commonRadius 2;
                    var 
    shadowBrush Hud.Render.CreateBrush(960001);
                    
                    
    plugin.Decorator1 = new WorldDecoratorCollection(
                        new 
    MapShapeDecorator(Hud)
                        {
                            
    Brush Hud.Render.CreateBrush(1282002002000),
                            
    ShadowBrush shadowBrush,
                            
    ShapePainter = new CircleShapePainter(Hud),
                            
    Radius commonRadius,
                        }
                        );
                    
    plugin.Decorator2 = new WorldDecoratorCollection(
                        new 
    MapShapeDecorator(Hud)
                        {
                            
    Brush Hud.Render.CreateBrush(180020000),
                            
    ShadowBrush shadowBrush,
                            
    ShapePainter = new CircleShapePainter(Hud),
                            
    Radius commonRadius,
                        }
                        );
                    
    plugin.Decorator3 = new WorldDecoratorCollection(
                        new 
    MapShapeDecorator(Hud)
                        {
                            
    Brush Hud.Render.CreateBrush(180012500),
                            
    ShadowBrush shadowBrush,
                            
    ShapePainter = new CircleShapePainter(Hud),
                            
    Radius commonRadius,
                        }
                        );
                    
    plugin.Decorator4 = new WorldDecoratorCollection(
                        new 
    MapShapeDecorator(Hud)
                        {
                            
    Brush Hud.Render.CreateBrush(180020000),
                            
    ShadowBrush shadowBrush,
                            
    ShapePainter = new CircleShapePainter(Hud),
                            
    Radius commonRadius,
                        },
                        new 
    MapShapeDecorator(Hud)
                        {
                            
    Brush Hud.Render.CreateBrush(18005502),
                            
    ShadowBrush shadowBrush,
                            
    ShapePainter = new CircleShapePainter(Hud),
                            
    Radius commonRadius,
                        }
                        );
                    
    plugin.Decorator5 = new WorldDecoratorCollection(
                        new 
    MapShapeDecorator(Hud)
                        {
                            
    Brush Hud.Render.CreateBrush(180012500),
                            
    ShadowBrush shadowBrush,
                            
    ShapePainter = new CircleShapePainter(Hud),
                            
    Radius commonRadius,
                        },
                        new 
    MapShapeDecorator(Hud)
                        {
                            
    Brush Hud.Render.CreateBrush(18005502),
                            
    ShadowBrush shadowBrush,
                            
    ShapePainter = new CircleShapePainter(Hud),
                            
    Radius commonRadius,
                        }
                        );
                }); 
    Or this should work too :
    PHP Code:
    Hud.RunOnPlugin<MonsterRiftProgressionColoringPlugin>(plugin =>
                {
                    var 
    commonRadius 2;

                    
    plugin.Decorator1.Decorators.ForEach(decorator => {
                        if (
    decorator is IWorldDecoratorWithRadius)
                            ((
    IWorldDecoratorWithRadius)decorator).Radius commonRadius;
                    });
                    
    plugin.Decorator2.Decorators.ForEach(decorator => {
                        if (
    decorator is IWorldDecoratorWithRadius)
                            ((
    IWorldDecoratorWithRadius)decorator).Radius commonRadius;
                    });
                    
    plugin.Decorator3.Decorators.ForEach(decorator => {
                        if (
    decorator is IWorldDecoratorWithRadius)
                            ((
    IWorldDecoratorWithRadius)decorator).Radius commonRadius;
                    });
                    
    plugin.Decorator4.Decorators.ForEach(decorator => {
                        if (
    decorator is IWorldDecoratorWithRadius)
                            ((
    IWorldDecoratorWithRadius)decorator).Radius commonRadius;
                    });
                    
    plugin.Decorator5.Decorators.ForEach(decorator => {
                        if (
    decorator is IWorldDecoratorWithRadius)
                            ((
    IWorldDecoratorWithRadius)decorator).Radius commonRadius;
                    });
                }); 
    Hide the Rum! --> Default theme customization 101 <--

  4. Thanks graphitey (1 members gave Thanks to JackCeparou for this useful post)
  5. #4
    graphitey's Avatar Member
    Reputation
    1
    Join Date
    Feb 2018
    Posts
    9
    Thanks G/R
    1/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Thank you! That worked

Similar Threads

  1. [Question] Is there a way to change your username?
    By battalbabathe3rd in forum Help & Support
    Replies: 1
    Last Post: 06-18-2017, 07:20 PM
  2. [Need Help] Is there any way to change the WoW Logo in-game
    By Acoustics in forum WoW ME Questions and Requests
    Replies: 0
    Last Post: 04-24-2011, 10:20 AM
  3. Is there a way to change the last name on a wow account?
    By dzjugo in forum World of Warcraft General
    Replies: 6
    Last Post: 09-26-2010, 10:15 AM
  4. Replies: 1
    Last Post: 03-27-2010, 05:47 PM
  5. [Question] Is there a way to change armor from male to female?
    By arthas242 in forum WoW ME Questions and Requests
    Replies: 2
    Last Post: 01-16-2008, 01:24 PM
All times are GMT -5. The time now is 02:34 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