-
Member
Bone Ringer stack Please Help me
Sorry It's written in Google Translator. I do not speak English well
I want to see the Bone Ringer stack. Is there a way?:confused:
-
Contributor
PlayerBottomBuffListPlugin should be able to do it if you can find the sno for the Bone Ringer.
Though Bone Ringer is not listed in "Legendary items" section in ISnoPowerList but that doesn't mean it couldn't work?
I have following setup:
Code:
var p = Hud.Sno.SnoPowers;
// Set special skills - following player!
Hud.RunOnPlugin<PlayerBottomBuffListPlugin>(plugin =>
{
plugin.PositionOffset = 0f;
plugin.BuffPainter.ShowTimeLeftNumbers = true;
plugin.RuleCalculator.Rules.Clear();
plugin.RuleCalculator.Rules.Add(new BuffRule(359583) { IconIndex = 1, ShowTimeLeft = false }); // Focus
plugin.RuleCalculator.Rules.Add(new BuffRule(359583) { IconIndex = 2, ShowTimeLeft = false }); // Restraint
plugin.RuleCalculator.Rules.Add(new BuffRule(p.TaegukPrimary.Sno) { ShowStacks = true, ShowTimeLeft = false });
plugin.RuleCalculator.Rules.Add(new BuffRule(p.GogokOfSwiftnessPrimary.Sno) { ShowStacks = true, ShowTimeLeft = false });
plugin.RuleCalculator.Rules.Add(new BuffRule(p.ElusiveRing.Sno) { IconIndex = 1 });
});
-
Post Thanks / Like - 1 Thanks
suyonghud (1 members gave Thanks to JarJarD3 for this useful post)