[V9.1] [RNN] Shield Of Fury Stacks menu

User Tag List

Page 1 of 2 12 LastLast
Results 1 to 15 of 18
  1. #1
    RNN's Avatar Legendary
    Reputation
    810
    Join Date
    Sep 2018
    Posts
    1,051
    Thanks G/R
    103/773
    Trade Feedback
    0 (0%)
    Mentioned
    15 Post(s)
    Tagged
    0 Thread(s)

    [V9.1] [RNN] Shield Of Fury Stacks

    Show an icon with Shield of Fury stacks on elites and Boss, with a green border if they are blinded, stunned, or immobilized by the Judgment skill and you wear Bracers of Fury. I do not know how to check if a monster is immobilized in general.
    It will only show if you are a Crusader and if you are playing GR. Alternative version in post #10 ([V9.1] [RNN] Shield Of Fury Stacks)
    The limit of stacks should only reach 20, it is not established/limited by the plugin. I have observed that in certain circumstances the monsters lose their stacks, for example when you return to the town (it does not always happen), and the plugin seems to be consistent with this.
    It is not thoroughly tested, not group tested.



    Download: ShieldOfFuryStacks.cs

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

    Custom code (in Plugins\User\PluginEnablerOrDisablerPlugin.cs , Optional) :

    Code:
    	Hud.GetPlugin<RNN.ShieldOfFuryStacks>().Enabled = true;
    	Hud.RunOnPlugin<RNN.ShieldOfFuryStacks>(plugin =>
    	{			
    		plugin.Opacity = 0.75f;			// 0f..1f  Opacity for icon texture	
    		plugin.SizeMultiplier = 0.65f;		// Size multiplier for icons
    		plugin.OfssetY =  -11f;			// By default it will be shown in the monster's position and this value will be added
    		plugin.CheckBracer = true;		// Check if the monster is blinded, stunned or immobilized to show a green frame if yes
    		plugin.ShowTimer = true;		// Shows a timer, 4 seconds before Holy 
    		plugin.OnlyBoss = false;	
    		plugin.ShowStacks = true;		// Stacks Set Aegis of Valor , bonus 2 y 4		
    	} );
    Last edited by RNN; 06-02-2020 at 02:52 PM. Reason: Added OnlyBoss, ShowStacks. Adjusted text

    [V9.1] [RNN] Shield Of Fury Stacks
  2. Thanks TerraWarrior, Wasted75, mois (3 members gave Thanks to RNN for this useful post)
  3. #2
    Wasted75's Avatar Member
    Reputation
    2
    Join Date
    Feb 2020
    Posts
    11
    Thanks G/R
    65/1
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Thx a lot for your efforts. I will test it after work.

  4. #3
    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)
    Hi RNN!
    I tested the plugin today
    The maximum number of stacks on elites - 20, on Rift Boss - 19.
    Shield stacks do not depend on blinded, stunned, or immobilized mobs. I don't quite understand why this is in the plugin
    TY

  5. #4
    Wasted75's Avatar Member
    Reputation
    2
    Join Date
    Feb 2020
    Posts
    11
    Thanks G/R
    65/1
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    It's just QoL. so u can see if the bracers are pocced as well.

  6. #5
    RNN's Avatar Legendary
    Reputation
    810
    Join Date
    Sep 2018
    Posts
    1,051
    Thanks G/R
    103/773
    Trade Feedback
    0 (0%)
    Mentioned
    15 Post(s)
    Tagged
    0 Thread(s)
    To my knowledge there is no way to know the total stacks on a monster at any given time. I found a way to count them one by one and it is based on observing how a parameter alternates between two values ​​(0 and 1). It is not a foolproof method, and it may not count a stack on occasion, but it does not depend on whether it is a boss or an elite. In my tests it only happened to me once in an elite of an blue pack (and that's why I updated with additional code to try to avoid it). If you continue attacking with the skill and you see that it does not increase, it has reached 20, even if you dial 19 or even 18. The causes can be various: latency and / or desynchronization with the servers, momentary blocking of the PC.
    What do you want to know the stacks for? to know when you reach the maximum of your damage. Isn't it interesting to know if you also have the bonus of the active bracer that can give you 400% extra damage? I will include an option to disable it because it is not complicated, the alternative is to rename the plugin to ShieldOfFuryStacksAndBonusBracerOfFury.cs
    Last edited by RNN; 05-11-2020 at 09:20 AM.

  7. Thanks d3snorter (1 members gave Thanks to RNN for this useful post)
  8. #6
    bm206's Avatar Active Member
    Reputation
    73
    Join Date
    Mar 2017
    Posts
    285
    Thanks G/R
    57/64
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Awesome plugin! Would it be possible to show only on rift guardian and for the complete group? I want to control the BK!

  9. #7
    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
    To my knowledge there is no way to know the total stacks on a monster at any given time. I found a way to count them one by one and it is based on observing how a parameter alternates between two values ​​(0 and 1). It is not a foolproof method, and it may not count a stack on occasion, but it does not depend on whether it is a boss or an elite. In my tests it only happened to me once in an elite of an blue pack (and that's why I updated with additional code to try to avoid it). If you continue attacking with the skill and you see that it does not increase, it has reached 20, even if you dial 19 or even 18. The causes can be various: latency and / or desynchronization with the servers, momentary blocking of the PC.
    What do you want to know the stacks for? to know when you reach the maximum of your damage. Isn't it interesting to know if you also have the bonus of the active bracer that can give you 400% extra damage? I will include an option to disable it because it is not complicated, the alternative is to rename the plugin to ShieldOfFuryStacksAndBonusBracerOfFury.cs
    thanks for the answer, that would be cool

  10. #8
    RNN's Avatar Legendary
    Reputation
    810
    Join Date
    Sep 2018
    Posts
    1,051
    Thanks G/R
    103/773
    Trade Feedback
    0 (0%)
    Mentioned
    15 Post(s)
    Tagged
    0 Thread(s)
    A comment on the plugin:
    It behaves as if someone is staring at a lightbulb that gives a green light and sometimes turns red for a brief moment and then returns to green, and this can only happen a total of 20 times. the problem is that if that person blinks you can miss one of those color changes. This plugin will sometimes only count to 19 for this reason, usually it will not happen.

    Originally Posted by Romanmas View Post
    thanks for the answer, that would be cool
    if CheckBracer = false It won't do those checks

    Originally Posted by bm206 View Post
    Awesome plugin! Would it be possible to show only on rift guardian and for the complete group? I want to control the BK!
    If I have a chance to try it maybe I will, I don't play meta. Two possible complications occur to me
    Last edited by RNN; 05-11-2020 at 01:41 PM.

  11. #9
    Bs4237's Avatar Member
    Reputation
    1
    Join Date
    Oct 2017
    Posts
    29
    Thanks G/R
    1/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by RNN View Post
    A comment on the plugin:
    It behaves as if someone is staring at a lightbulb that gives a green light and sometimes turns red for a brief moment and then returns to green, and this can only happen a total of 20 times. the problem is that if that person blinks you can miss one of those color changes. This plugin will sometimes only count to 19 for this reason, usually it will not happen.



    if CheckBracer = false It won't do those checks



    If I have a chance to try it maybe I will, I don't play meta. Two possible complications occur to me
    Would this work?

    add // for Line 67. (this will show to all players)

    and

    Line 69 change to var monsters = Hud.Game.AliveMonsters.Where(m => m.SnoMonster.Priority == MonsterPriority.boss); (shows on RG only)

  12. #10
    RNN's Avatar Legendary
    Reputation
    810
    Join Date
    Sep 2018
    Posts
    1,051
    Thanks G/R
    103/773
    Trade Feedback
    0 (0%)
    Mentioned
    15 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by Bs4237 View Post
    Would this work? ..
    almost, but you need to modify something else (Hud.Game.Me)

    Try [C#] ShieldOfFuryStacks - Pastebin.com (Added OnlyBoss)
    This version should work in solo player and in group (meta). With more than one crusader the stacks will be mixed and some will not be counted, I have not tried it in this situation
    Last edited by RNN; 06-02-2020 at 01:32 PM. Reason: Added OnlyBoss, ShowStacks

  13. Thanks Wasted75, mois (2 members gave Thanks to RNN for this useful post)
  14. #11
    Stefanooo's Avatar Member
    Reputation
    1
    Join Date
    Dec 2018
    Posts
    2
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Hi. It is possible to border become yellow like 3 sec before Holy element or any other marker to mark this time??
    Ty for all help in advance

  15. #12
    RNN's Avatar Legendary
    Reputation
    810
    Join Date
    Sep 2018
    Posts
    1,051
    Thanks G/R
    103/773
    Trade Feedback
    0 (0%)
    Mentioned
    15 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by Stefanooo View Post
    Hi. It is possible to border become yellow like 3 sec before Holy element or any other marker to mark this time??
    Ty for all help in advance
    Update
    Added ShowTimer (shows a timer, 4 seconds before Holy)

  16. #13
    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
    Update
    Added ShowTimer (shows a timer, 4 seconds before Holy)
    Nice, you missed Show Only in Boss bool, didn`t you ?

    public bool OnlyBoss { get; set; }

    OnlyBoss = true;

    if (OnlyBoss && Hud.Game.RiftPercentage != 100) return;

  17. #14
    RNN's Avatar Legendary
    Reputation
    810
    Join Date
    Sep 2018
    Posts
    1,051
    Thanks G/R
    103/773
    Trade Feedback
    0 (0%)
    Mentioned
    15 Post(s)
    Tagged
    0 Thread(s)
    OnlyBoss was only added in variant of post 11, it is exactly those lines which you should include in the plugin of post 0 if you want to have that option (at first it was intended to be used only by the crusader)

  18. #15
    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
    OnlyBoss was only added in variant of post 11, it is exactly those lines which you should include in the plugin of post 0 if you want to have that option (at first it was intended to be used only by the crusader)
    hmm, got it, I thought you would put this option definitively in the plugin, I prefered that way cause I dont play solo and the counter only matters at boss for me. Gonna try this ShowTimer when I play to see. Thx

Page 1 of 2 12 LastLast

Similar Threads

  1. Shield of Righeousness
    By Kellrosard in forum World of Warcraft Exploits
    Replies: 13
    Last Post: 12-29-2008, 04:09 AM
  2. [New Item] Fists of Fury
    By Chumba Wumba in forum World of Warcraft General
    Replies: 2
    Last Post: 03-26-2008, 05:24 PM
  3. [Request] Kings Defender and Shield of Impenetrable Darkness edits!
    By Skulltorcha in forum WoW ME Questions and Requests
    Replies: 2
    Last Post: 02-23-2008, 10:02 PM
  4. [REQUEST] Light-Bearer's Faith Shield -> Triptych Shield of the Ancients
    By hurripaska in forum WoW ME Questions and Requests
    Replies: 4
    Last Post: 11-29-2007, 11:50 PM
  5. Complete list of Fury's guides and work
    By Mr. Moose in forum World of Warcraft Model Editing
    Replies: 5
    Last Post: 11-28-2007, 10:43 PM
All times are GMT -5. The time now is 08:37 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