[V9.0] [INTERNATIONAL] [RNN] BLueLines menu

User Tag List

Page 1 of 2 12 LastLast
Results 1 to 15 of 29
  1. #1
    RNN's Avatar Legendary
    Reputation
    801
    Join Date
    Sep 2018
    Posts
    1,043
    Thanks G/R
    102/764
    Trade Feedback
    0 (0%)
    Mentioned
    15 Post(s)
    Tagged
    0 Thread(s)

    [V9.0] [INTERNATIONAL] [RNN] BlueLines

    Supported TurboHUD version: 9.x

    Simply draw lines that will join the elites that are part of a pack of blues.
    Recognize up to 5 packs: draw each one of a color. If there are more than 5, it will repeat colors.
    I just found it interesting to do it. I do not know if it will be very practical so many lines in a GR




    Download: BlueLines.cs

    Installation: Place BlueLines.cs in "plugins\RNN\BlueLines.cs"

    Custom code (Plugins\User\PluginEnablerOrDisablerPlugin.cs , it's not mandatory) :


    Code:
    	Hud.GetPlugin<RNN.BlueLines>().Enabled = true;
    
    		Hud.RunOnPlugin<RNN.BlueLines>(plugin =>
    		{			
    			plugin.InGR_On = true; 	// Draw in GR 
    			plugin.OutGR_On = true;	// Draw out GR
    		}  );

    if you liked the plugin, raise your thumb
    Last edited by RNN; 04-11-2020 at 04:42 AM. Reason: Updated

    [V9.0] [INTERNATIONAL] [RNN] BLueLines
  2. Thanks afrojax, johnbl, mois, hakache, HoaryWitch, BigShock, BeeAntOS, (Sarge), FMarvel, LittleDez13 (10 members gave Thanks to RNN for this useful post)
  3. #2
    RNN's Avatar Legendary
    Reputation
    801
    Join Date
    Sep 2018
    Posts
    1,043
    Thanks G/R
    102/764
    Trade Feedback
    0 (0%)
    Mentioned
    15 Post(s)
    Tagged
    0 Thread(s)
    Added extra checking for possible bug (it's not enough IsFullChampionPack) that took place when a pylon was caught and there were blue Elites nearby. The minions of the elite yellow were assigned to the pack of a blue. It should be solved.
    Last edited by RNN; 04-04-2019 at 12:09 PM.

  4. #3
    astisbc's Avatar Member
    Reputation
    1
    Join Date
    Sep 2017
    Posts
    23
    Thanks G/R
    7/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Please Pleas Please telle me the name of this plugin that shows the circel and the %Health of the Elitemobs...

  5. #4
    RNN's Avatar Legendary
    Reputation
    801
    Join Date
    Sep 2018
    Posts
    1,043
    Thanks G/R
    102/764
    Trade Feedback
    0 (0%)
    Mentioned
    15 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by astisbc View Post
    Please Pleas Please telle me the name of this plugin that shows the circel and the %Health of the Elitemobs...
    MonsterCirclePlugin and HealthBarOnElitePlugin

    I use those but with own modifications.
    Last edited by RNN; 04-04-2019 at 05:15 PM.

  6. #5
    RNN's Avatar Legendary
    Reputation
    801
    Join Date
    Sep 2018
    Posts
    1,043
    Thanks G/R
    102/764
    Trade Feedback
    0 (0%)
    Mentioned
    15 Post(s)
    Tagged
    0 Thread(s)
    Update:
    I added code to make the colors more permanent
    I noticed that the color of the line that joins a pack could change sometimes, even if that pack remained on the screen., at least in that case it should no longer occur
    Last edited by RNN; 04-05-2019 at 08:38 PM.

  7. #6
    hakache's Avatar Active Member
    Reputation
    78
    Join Date
    Jun 2012
    Posts
    65
    Thanks G/R
    16/72
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Nice plugin, gonna try out for sure to see if its really useful for me ! Also, sorry if this is not the place, but Id like to ask you, how did you wrote affixes with specific colors on the EliteBar ? Seems super useful to me. Thx !

  8. #7
    RNN's Avatar Legendary
    Reputation
    801
    Join Date
    Sep 2018
    Posts
    1,043
    Thanks G/R
    102/764
    Trade Feedback
    0 (0%)
    Mentioned
    15 Post(s)
    Tagged
    0 Thread(s)
    There is no possibility to configure that in the original plugin.

  9. #8
    hakache's Avatar Active Member
    Reputation
    78
    Join Date
    Jun 2012
    Posts
    65
    Thanks G/R
    16/72
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    I knew that already (Hence why Im asking) but thanks for the answer
    Last edited by hakache; 04-06-2019 at 11:39 AM. Reason: Typo

  10. #9
    hakache's Avatar Active Member
    Reputation
    78
    Join Date
    Jun 2012
    Posts
    65
    Thanks G/R
    16/72
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    If you're willing to share the way you did this, it would be very much appreciated ! I just cannot find a way to do it (By default the affixes are all added up in the same variable so I dont see how to change the color for each affix individually, and if Im using the loop to write each affix individually Im struggling with the X-axis...). Thanks

  11. #10
    RNN's Avatar Legendary
    Reputation
    801
    Join Date
    Sep 2018
    Posts
    1,043
    Thanks G/R
    102/764
    Trade Feedback
    0 (0%)
    Mentioned
    15 Post(s)
    Tagged
    0 Thread(s)
    I did a function, you passed the affix, and the coordinates x and y. This one writes you that affix on the screen with an associated color and returns the new x coordinate to write from there. You make a loop to go through all the affixes with the same y coordinate, but you use the x returned by the function in the previous iteration.

    with TheFont.GetTextLayout("thetext").Metrics.Width you get the length in pixels of the written text ("thetext") using that font (TheFont)

    the function would be like this
    private float WriteAffixColor (MonsterAffix affixm, float coordx, float coordy) { .. }
    Last edited by RNN; 04-08-2019 at 02:42 PM.

  12. #11
    hakache's Avatar Active Member
    Reputation
    78
    Join Date
    Jun 2012
    Posts
    65
    Thanks G/R
    16/72
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Yeah ok Ill have to check into this, not sure Im able to do it myself. Thanks.

  13. #12
    RNN's Avatar Legendary
    Reputation
    801
    Join Date
    Sep 2018
    Posts
    1,043
    Thanks G/R
    102/764
    Trade Feedback
    0 (0%)
    Mentioned
    15 Post(s)
    Tagged
    0 Thread(s)
    Here you have it to download: EliteBarPlugin.cs

    I modified this plugin by Gigi for personal use a long time ago, when I started learning, and the code is regular and not efficient. The colors are not configurable, but I will not improve it anymore , at least it will help you to see how I did it.
    Last edited by RNN; 04-08-2019 at 03:36 PM.

  14. Thanks BeeAntOS (1 members gave Thanks to RNN for this useful post)
  15. #13
    hakache's Avatar Active Member
    Reputation
    78
    Join Date
    Jun 2012
    Posts
    65
    Thanks G/R
    16/72
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Pretty nice, I had troubles to not overlap the text from affixes even trying some stuff with Metric.Width, interesting stuff ! Thanks alot

  16. #14
    intellilogic's Avatar Member
    Reputation
    1
    Join Date
    Aug 2014
    Posts
    25
    Thanks G/R
    3/0
    Trade Feedback
    1 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Where can I get that pylon tracker that shows the floor, +percentage and +percent since last? Please, I beg of you

  17. #15
    wad1532's Avatar Member
    Reputation
    7
    Join Date
    Mar 2019
    Posts
    94
    Thanks G/R
    11/6
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by intellilogic View Post
    Where can I get that pylon tracker that shows the floor, +percentage and +percent since last? Please, I beg of you
    [C#] GLQ_GreaterRiftPylonMarkerPlugin - Pastebin.com
    Last edited by wad1532; 05-02-2019 at 04:43 PM.

Page 1 of 2 12 LastLast

Similar Threads

  1. [V9.0] [INTERNATIONAL] [RNN] OtherShrinePlugin
    By RNN in forum TurboHUD Community Plugins
    Replies: 137
    Last Post: 3 Hours Ago, 04:25 PM
  2. [V7.7] [INTERNATIONAL] [RNN] BountiesTracking
    By RNN in forum TurboHUD Community Plugins
    Replies: 40
    Last Post: 4 Days Ago, 12:22 PM
  3. [V9.0] [INTERNATIONAL] [RNN] LogChat
    By RNN in forum TurboHUD Community Plugins
    Replies: 19
    Last Post: 01-08-2021, 09:14 AM
  4. [V8.0] [INTERNATIONAL] [RNN] DeathInMap
    By RNN in forum TurboHUD Community Plugins
    Replies: 2
    Last Post: 03-24-2020, 09:18 AM
  5. [V9.0] [INTERNATIONAL] [RNN] Icount
    By RNN in forum TurboHUD Community Plugins
    Replies: 17
    Last Post: 09-29-2019, 09:02 AM
All times are GMT -5. The time now is 07: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