[INTERNATIONAL][Psycho] ClassMarkersPlugin menu

User Tag List

Page 2 of 3 FirstFirst 123 LastLast
Results 16 to 30 of 35
  1. #16
    Xinitie's Avatar Member
    Reputation
    2
    Join Date
    Mar 2018
    Posts
    6
    Thanks G/R
    2/1
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Can anybody helps to update the [Psycho] ClassMarkersPlugin

    v9 support please

    thanks a lot!

    [INTERNATIONAL][Psycho] ClassMarkersPlugin
  2. #17
    Romanmas's Avatar Member
    Reputation
    11
    Join Date
    Mar 2017
    Posts
    187
    Thanks G/R
    9/9
    Trade Feedback
    0 (0%)
    Mentioned
    1 Post(s)
    Tagged
    0 Thread(s)
    Hello everybody!
    Can someone help solve the problem with the plugin

    2019.05.18 13:36:24.377 19.5.16.3 error while calling Customize() on Turbo.Plugins.User.ClassMarkersPlugin (System.Collections.Generic.KeyNotFoundException: Данный ключ отсутствует в словаре.
    в System.ThrowHelper.ThrowKeyNotFoundException()
    в System.Collections.Generic.Dictionary`2.get_Item(TKey key)
    в Turbo.Plugins.User.ClassMarkersPlugin.<Customize>b__28_0(OtherPlayersPlugin plugin)
    в ‬‏‎‪‎‏‬​‏​‏*‫*‏***‪‏‎‎‬*.RunOnPlugin[T](Action`1 action)
    в Turbo.Plugins.User.ClassMarkersPlugin.Customize()
    в *‪‏‪‪‎*​*‬​‪‬‪*‪​*‏‏​‫‪*‬*‬*.*‬‪*‎​**‎**‪*‪**‎‫​‬‪‎ **())

  3. #18
    RNN's Avatar Legendary
    Reputation
    813
    Join Date
    Sep 2018
    Posts
    1,055
    Thanks G/R
    104/776
    Trade Feedback
    0 (0%)
    Mentioned
    15 Post(s)
    Tagged
    0 Thread(s)
    Download this file: [C#] ClassMarkersPlugin - Pastebin.com

    Code changed:

    Code:
                        foreach (HeroClass heroClass in Enum.GetValues(typeof(HeroClass)))
                        {
                                plugin.DecoratorByClass[heroClass].Decorators.Add(MyGroundCirleDecorator[heroClass]);
                                plugin.DecoratorByClass[heroClass].Decorators.Add(MyMapCircleDecorator[heroClass]);
                        }
    to
    Code:
                        foreach (HeroClass heroClass in Enum.GetValues(typeof(HeroClass)))
                        {
                            if (heroClass != HeroClass.None) 
                            {
                                plugin.DecoratorByClass[heroClass].Decorators.Add(MyGroundCirleDecorator[heroClass]);
                                plugin.DecoratorByClass[heroClass].Decorators.Add(MyMapCircleDecorator[heroClass]);
                            }
                        }

  4. Thanks AffaBanana, BeeAntOS (2 members gave Thanks to RNN for this useful post)
  5. #19
    Romanmas's Avatar Member
    Reputation
    11
    Join Date
    Mar 2017
    Posts
    187
    Thanks G/R
    9/9
    Trade Feedback
    0 (0%)
    Mentioned
    1 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by RNN View Post
    Download this file: [C#] ClassMarkersPlugin - Pastebin.com

    Code changed:

    Code:
                        foreach (HeroClass heroClass in Enum.GetValues(typeof(HeroClass)))
                        {
                                plugin.DecoratorByClass[heroClass].Decorators.Add(MyGroundCirleDecorator[heroClass]);
                                plugin.DecoratorByClass[heroClass].Decorators.Add(MyMapCircleDecorator[heroClass]);
                        }
    to
    Code:
                        foreach (HeroClass heroClass in Enum.GetValues(typeof(HeroClass)))
                        {
                            if (heroClass != HeroClass.None) 
                            {
                                plugin.DecoratorByClass[heroClass].Decorators.Add(MyGroundCirleDecorator[heroClass]);
                                plugin.DecoratorByClass[heroClass].Decorators.Add(MyMapCircleDecorator[heroClass]);
                            }
                        }
    Thanks for your help. Everything works

  6. #20
    franehr's Avatar Member
    Reputation
    6
    Join Date
    Oct 2017
    Posts
    82
    Thanks G/R
    34/5
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    but now i lost pinging (animated) markers ...

  7. #21
    ch25's Avatar Active Member
    Reputation
    37
    Join Date
    Mar 2017
    Posts
    135
    Thanks G/R
    34/33
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Guys I need help.
    How to mod that plugin to see only WD, rest is not important for me.
    Just a dot under a character, circle not needed too.
    Thx.
    Last edited by ch25; 04-30-2020 at 07:10 PM.

  8. #22
    RNN's Avatar Legendary
    Reputation
    813
    Join Date
    Sep 2018
    Posts
    1,055
    Thanks G/R
    104/776
    Trade Feedback
    0 (0%)
    Mentioned
    15 Post(s)
    Tagged
    0 Thread(s)
    With this little plugin you should see the WD in GR

    plugins\RNN\WDCircleGR.cs

  9. Thanks ch25 (1 members gave Thanks to RNN for this useful post)
  10. #23
    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)
    or you can just put
    "//" without quotes
    in front of each line starting with:
    MyMapCircleDecorator[HeroClass.
    or
    MyGroundCirleDecorator[HeroClass.
    for the classes you dont want to see circles.
    and also you can set
    MyPlayerCircle = true;
    to false, if you dont want to have it on yourself

  11. Thanks ch25 (1 members gave Thanks to odin99 for this useful post)
  12. #24
    M1SHAKE's Avatar Member
    Reputation
    7
    Join Date
    Jul 2018
    Posts
    94
    Thanks G/R
    5/6
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Getting exceptions doing that.

  13. #25
    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)
    hmm i see.
    the only workaround i can give you then is to set all the class colors you dont like to (0, 0, 0, 0)
    like:
    MyMapCircleDecorator[HeroClass.Barbarian] = CreateMapCircleDecorators(0, 0, 0, 0); //(200, 250, 10, 10);
    the text after // is to dont forget the original colors so you can reset it at any time

    or you use the plugin RNN have linked
    Last edited by odin99; 05-01-2020 at 03:46 AM.

  14. #26
    M1SHAKE's Avatar Member
    Reputation
    7
    Join Date
    Jul 2018
    Posts
    94
    Thanks G/R
    5/6
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Still with circle but dont show too much... not a bad ideia
    Last edited by M1SHAKE; 05-01-2020 at 07:15 AM.

  15. #27
    Saico's Avatar Active Member
    Reputation
    21
    Join Date
    Apr 2019
    Posts
    379
    Thanks G/R
    35/20
    Trade Feedback
    0 (0%)
    Mentioned
    2 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by RNN View Post
    With this little plugin you should see the WD in GR

    plugins\RNN\WDCircleGR.cs
    RNN could you help me please ? I liked these decorators for WD so much but when Witch Doctor teleport to town the Decorator circle stills freezed on game where he Tp`d

    What can I do to decorator goes off when he lefts and come back only when he appears ?

  16. #28
    RNN's Avatar Legendary
    Reputation
    813
    Join Date
    Sep 2018
    Posts
    1,055
    Thanks G/R
    104/776
    Trade Feedback
    0 (0%)
    Mentioned
    15 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by Saico View Post
    RNN could you help me please ? I liked these decorators for WD so much but when Witch Doctor teleport to town the Decorator circle stills freezed on game where he Tp`d

    What can I do to decorator goes off when he lefts and come back only when he appears ?

    It's an old problem that is especially annoying when you play GR
    It not only happens when you travel to / from the town, but also when you are on different levels (one changes level / map)
    It is reduced or eliminated by adding additional code. Download it again
    Last edited by RNN; 05-02-2020 at 10:26 AM.

  17. #29
    Saico's Avatar Active Member
    Reputation
    21
    Join Date
    Apr 2019
    Posts
    379
    Thanks G/R
    35/20
    Trade Feedback
    0 (0%)
    Mentioned
    2 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by RNN View Post
    It's an old problem that is especially annoying when you play GR
    It not only happens when you travel to / from the town, but also when you are on different levels (one changes level / map)
    It is reduced or eliminated by adding additional code. Download it again
    Gonna Try right now. Thx for help, enlarged a bit the pink stroke for circle and its dope, WD do not get out of my eyes now.

  18. #30
    Saico's Avatar Active Member
    Reputation
    21
    Join Date
    Apr 2019
    Posts
    379
    Thanks G/R
    35/20
    Trade Feedback
    0 (0%)
    Mentioned
    2 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by RNN View Post
    With this little plugin you should see the WD in GR

    plugins\RNN\WDCircleGR.cs
    I am having this exception with WDCircleGR.cs


    \Plugins\RNN\WDCircleGR.cs(7,20) : warning CS0108: 'WDCircleGR.Order' hides inherited member 'BasePlugin.Order'. Use the new keyword if hiding was intended.

    any idea ?

Page 2 of 3 FirstFirst 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 01:12 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