-
Member
New item buff
Hi,
I'd like to show up the buff icon of the new items such as squirts necklace.
Is here anyone to help?
Thx.
-
Active Member
For Squirt's Necklace: Add this to your \plugins\User\PluginEnablerOrDisablerPlugin.cs file
Code:
Hud.RunOnPlugin<PlayerBottomBuffListPlugin>(plugin =>
{
plugin.RuleCalculator.Rules.Add(new BuffRule(483552) { IconIndex = 5, MinimumIconCount = 1, ShowStacks = true }); // Squirt's Necklace
});
-
Post Thanks / Like - 1 Thanks
brainbugged (1 members gave Thanks to Jembo for this useful post)
-
Member
-
Active Member
How about the attack speed and movement speed buff from echoing fury ?
-
-
Contributor
Originally Posted by
Jembo
I can't seem to find Buff sno & index for Echoing Fury

Press Ctrl-Alt-D while in game and then check logs folder THUD installation.
dump_players.txt seems to be quite promising.
-
Active Member
Originally Posted by
JarJarD3
Press Ctrl-Alt-D while in game and then check logs folder THUD installation.
dump_players.txt seems to be quite promising.
Tested with Echoing Fury equipped and 5 stacks of the buff, then pressed Ctrl-Alt-D.
Searched in \logs for: Echo, Fury & Frenzied (buff name) - Found the following:
Code:
dump_ui.txt
Root.TopLayer.item 2.stack.top_wrapper.stack.name '{C:FFFF8000}ECHOING FURY{/C}'
dump_items_LeftHand.txt
535933551 P66_Unique_Mace_1H_001 Echoing Fury 0:0 loot
dump_players.txt
attr Resource_Max_Total 2 0 resource: fury
attr Resource_Regen_Total 2 0 resource: fury
attr Resource_Effective_Max 2 0 resource: fury
dump_items_Stash.txt
535933551 P66_Unique_Mace_1H_001 Echoing Fury 6:92 loot
Can't find Buff sno. it's got me stumped
-
Contributor
Originally Posted by
Jembo
I can't seem to find Buff sno & index for Echoing Fury

sno should be 483518, index you can try 1 by 1
-
Active Member
Originally Posted by
s4000
sno should be 483518, index you can try 1 by 1
Thanks man! that's the one.
Code:
plugin.RuleCalculator.Rules.Add(new BuffRule(483518) { IconIndex = 1, MinimumIconCount = 1, ShowStacks = true, ShowTimeLeft = true }); // Echoing Fury
plugin.RuleCalculator.Rules.Add(new BuffRule(483521) { IconIndex = 1, MinimumIconCount = 1, ShowStacks = true, ShowTimeLeft = true }); // Stone Gauntlets
Last edited by Jembo; 09-16-2019 at 03:32 AM.
-
Contributor
FYI, RNN has DebugInfo plugin, that can be useful to solve problems like this.