[V9.0] [INTERNATIONAL] [RNN] MOD MonsterCirclePlugin menu

Shout-Out

User Tag List

Page 2 of 2 FirstFirst 12
Results 16 to 25 of 25
  1. #16
    Jembo's Avatar Active Member
    Reputation
    33
    Join Date
    Nov 2018
    Posts
    118
    Thanks G/R
    31/30
    Trade Feedback
    0 (0%)
    Mentioned
    3 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by RNN View Post
    If you don't want that change to affect the minions you only have to modify 2 lines (109,110) you would change Width to Width/2.5f to undo the change, and it would be (Width/2.5f)/2.0f => Width/5.0f
    It would look like this:
    hmm that seems to make the Minions symbol smaller

    [V9.0] [INTERNATIONAL] [RNN] MOD MonsterCirclePlugin
  2. #17
    RNN's Avatar Legendary
    Reputation
    846
    Join Date
    Sep 2018
    Posts
    1,109
    Thanks G/R
    107/808
    Trade Feedback
    0 (0%)
    Mentioned
    15 Post(s)
    Tagged
    0 Thread(s)
    Maybe I didn't understand your question.
    1- WidthR = TextFont.GetTextLayout("100]").Metrics.Width (originally)
    2- WidthR = TextFont.GetTextLayout("100]").Metrics.Width * 2.5f (Your change)
    3 - Your change + lines 109 and 110 modified



    2.5f seems excessive, I guess it would be a testing value.
    Next season's theme is already known: clones and 4 cube slots
    Last edited by RNN; 4 Weeks Ago at 03:24 PM.

  3. #18
    Jembo's Avatar Active Member
    Reputation
    33
    Join Date
    Nov 2018
    Posts
    118
    Thanks G/R
    31/30
    Trade Feedback
    0 (0%)
    Mentioned
    3 Post(s)
    Tagged
    0 Thread(s)
    Thanks RNN, my misunderstanding I forgot to apply my 2.5f as well as the change to the Minions Ellipse. That worked perfectly!
    I have a request - would it be possible to change the Minions Ellipse to a Bar similar to that off the Rare bar but just a different colour to differentiate them that way I can see the bar go down as they lose health and can see if the minion go invulnerable (invisible) or Shielding affix activates. Cheers

  4. #19
    RNN's Avatar Legendary
    Reputation
    846
    Join Date
    Sep 2018
    Posts
    1,109
    Thanks G/R
    107/808
    Trade Feedback
    0 (0%)
    Mentioned
    15 Post(s)
    Tagged
    0 Thread(s)
    plugins\BM\HealthBarOnElitePlugin_Mod.cs

    Change line 91 according to your preferences (minions and Others):

    WidthR = (monster.Rarity == ActorRarity.RareMinion)? TextFont.GetTextLayout("100]").Metrics.Width * 0.90f : TextFont.GetTextLayout("100]").Metrics.Width * 2.5f;
    Last edited by RNN; 3 Weeks Ago at 05:52 PM.

  5. Thanks Jembo (1 members gave Thanks to RNN for this useful post)
  6. #20
    Jembo's Avatar Active Member
    Reputation
    33
    Join Date
    Nov 2018
    Posts
    118
    Thanks G/R
    31/30
    Trade Feedback
    0 (0%)
    Mentioned
    3 Post(s)
    Tagged
    0 Thread(s)
    Amazing thank you soo much mate - One last thing I forgot! Would it be possible to have the option to resize the Minion one independently to make it a bit smaller compared to the Rare Minion! Sorry for harassing you !

  7. #21
    RNN's Avatar Legendary
    Reputation
    846
    Join Date
    Sep 2018
    Posts
    1,109
    Thanks G/R
    107/808
    Trade Feedback
    0 (0%)
    Mentioned
    15 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by Jembo View Post
    Would it be possible to have the option to resize the Minion one independently to make it a bit smaller compared to the Rare Minion!

    Changes applied in post 19.
    Last edited by RNN; 3 Weeks Ago at 05:49 PM.

  8. #22
    Jembo's Avatar Active Member
    Reputation
    33
    Join Date
    Nov 2018
    Posts
    118
    Thanks G/R
    31/30
    Trade Feedback
    0 (0%)
    Mentioned
    3 Post(s)
    Tagged
    0 Thread(s)
    Awesome thnx! One thing I have noticed is Minions take precedence and show above Rare elite bar making hard to see Rares if they're stacked on top of one another is it possible to make it so Rares show instead. Also, how do I change the size of the Rare (yellows) HP now?

  9. #23
    RNN's Avatar Legendary
    Reputation
    846
    Join Date
    Sep 2018
    Posts
    1,109
    Thanks G/R
    107/808
    Trade Feedback
    0 (0%)
    Mentioned
    15 Post(s)
    Tagged
    0 Thread(s)
    The plugin doesn't set any order, it was random. I now sort them by Maxhealth ( .OrderBy(o => o.MaxHealth) ) , but they could be sorted descending using ".Rarity" ( .OrderByDescending(o => o.Rarity) ) , in line 81.
    Updated at post 19 , There you will find what values ​​you have to edit to change the size.
    Last edited by RNN; 3 Weeks Ago at 08:12 PM.

  10. Thanks Jembo (1 members gave Thanks to RNN for this useful post)
  11. #24
    Jembo's Avatar Active Member
    Reputation
    33
    Join Date
    Nov 2018
    Posts
    118
    Thanks G/R
    31/30
    Trade Feedback
    0 (0%)
    Mentioned
    3 Post(s)
    Tagged
    0 Thread(s)
    Perfection thanks RNN! I have noticed a bug that can sometimes happen with Illusionist (it's quite rare) but sometimes elite or minion will illusion and the plugin will think it's a real elite and draw a health bar but in reality it was an illusion and dies super quickly. Not the biggest deal as it rarely happens but just thought I would let you know in case there is a possible fix, cheers

  12. #25
    RNN's Avatar Legendary
    Reputation
    846
    Join Date
    Sep 2018
    Posts
    1,109
    Thanks G/R
    107/808
    Trade Feedback
    0 (0%)
    Mentioned
    15 Post(s)
    Tagged
    0 Thread(s)
    I think it's a Turbohud/LMod bug, sometimes it provides erroneous information, what it only happens sometimes also leads to think of this explanation. This plugin check if .SummonerAcdDynamicId == 0 , It shouldn't show a bar for illusions.
    I've also noticed that some minions very rarely appear as elites (rares), or when I pick up a pylon and there's a champion nearby: (rare) minions are occasionally assigned to the blue pack.
    In any case, I will be attentive in case there is anything to fix.
    Last edited by RNN; 3 Weeks Ago at 09:59 AM.

  13. Thanks Jembo (1 members gave Thanks to RNN for this useful post)
Page 2 of 2 FirstFirst 12

Similar Threads

  1. [V9.0] [INTERNATIONAL] [RNN] TimersBarGR
    By RNN in forum TurboHUD Community Plugins
    Replies: 47
    Last Post: 07-04-2024, 12:34 PM
  2. [V9.0] [INTERNATIONAL] [RNN] Icount
    By RNN in forum TurboHUD Community Plugins
    Replies: 24
    Last Post: 06-08-2024, 01:39 AM
  3. [V9.0] [INTERNATIONAL] [RNN] OtherShrinePlugin
    By RNN in forum TurboHUD Community Plugins
    Replies: 137
    Last Post: 03-28-2024, 04:25 PM
  4. [V9.0] [INTERNATIONAL] [RNN] BLueLines
    By RNN in forum TurboHUD Community Plugins
    Replies: 28
    Last Post: 03-20-2022, 07:48 PM
  5. [V9.0] [INTERNATIONAL] [RNN] LogChat
    By RNN in forum TurboHUD Community Plugins
    Replies: 19
    Last Post: 01-08-2021, 09:14 AM
All times are GMT -5. The time now is 04:01 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