Hello friends,
I don't know about bot priorities as Pr0fessional asked but related to Tormented Spirits what you can do is add this piece of code inside your ExampleRoutine.cs file. Credits to tozededao (
source)
Code:
// If the monster is the source of Allies Cannot Die, we really want to kill it fast.
if (m.HasAura("monster_aura_cannot_die"))
weight += 40;
// ----------------------------------------------------------------------------------------------------------------------------------------------
// Tormented Spirits
if (m.Name.Contains("Tormented"))
{
weight +=30;
}
// ----------------------------------------------------------------------------------------------------------------------------------------------
if (m.IsTargetingMe)
{
weight += 20;
}
Just add what is inside the two //---------... The other parts is for you to find where to place the code

The weight 30 should be enough. You can increase it if you think is necessary.
Good luck there.