About six months ago, Jembo asked me for a plugin that would display the 600/300 damage bonus from the Funerary Pick weapon when using Siphon (it'll only work with the Power Shift rune; I don't see the need to include the other runes). This plugin was posted on this forum but went largely unnoticed because it didn't have its own thread. I've been told that it's still useful this season and I've decided to create a thread for it.
Apparently when a necro uses siphon it also proc the Funerary Pick of the other necro, because the damage bonus is applied to the monster and it is not possible to distinguish which necro has used siphon (more than a bug I think they wanted to simplify programming). It is useful for the bk to be sure that the tk used siphon on the boss and the bk maximize his damage using the Corpse lance manually for longer.

Installation: plugins\RNN\SyphonBloodTarget.cs
Custom Code:
Code:
Hud.GetPlugin<RNN.SyphonBloodTarget>().Enabled = true;
Hud.RunOnPlugin<RNN.SyphonBloodTarget>(plugin =>
{
plugin.OnlyElites = true; // We will only see the damage bonus if it affects a boss, elites or minions
plugin.OffsetY = -72;
} );