-
Legendary
[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
-
Post Thanks / Like - 10 Thanks
-
Legendary
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.
-
Member
Please Pleas Please telle me the name of this plugin that shows the circel and the %Health of the Elitemobs...
-
Legendary
Originally Posted by
astisbc
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.
-
Legendary
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.
-
Active Member
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 !
-
Legendary
There is no possibility to configure that in the original plugin.
-
Active Member
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
-
Active Member
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
-
Legendary
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.
-
Active Member
Yeah ok Ill have to check into this, not sure Im able to do it myself. Thanks.
-
Legendary
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.
-
Post Thanks / Like - 1 Thanks
BeeAntOS (1 members gave Thanks to RNN for this useful post)
-
Active Member
Pretty nice, I had troubles to not overlap the text from affixes even trying some stuff with Metric.Width, interesting stuff ! Thanks alot
-
Member
Where can I get that pylon tracker that shows the floor, +percentage and +percent since last? Please, I beg of you
-
Member
Originally Posted by
intellilogic
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.