Oh, dear...
So you've read the whole thread, right? Try again please. Hint: focus on the first post.
Something is wrong between HB and you, bounds included. And you want me to guess what it is without a log? I have many, many more interesting hobbies.
Here's one of them:
![]()
Maybe Im just a newb to CC, but this is the default right? I have tried to hit CC config and set my felguard as pet to no avail, my lock continually summons voidwalker and doesnt keep the felguard out. I have searched the thread for something similar before posted to no avail, any help on this? Thank you.
//instant summon if needed
bool instant = DemonicRebirth || (SoulburnReady && (Me.Combat || PVPLogicEnabled));
if (SpellManager.HasSpell(Spells.SummonFelguard))
Spells.Cast(Spells.SummonFelguard, instant);
if (SpellManager.HasSpell(Spells.SummonVoidwalker))
Spells.Cast(Spells.SummonVoidwalker, instant);
else if (SpellManager.HasSpell(Spells.SummonImp))
Spells.Cast(Spells.SummonImp, instant);
else
{
Debug("Hey... no pet found?!"); //this should never happen
noPet = true;
}
return true;
he keeps resummoning his voidwalker or felguard.
any way to tell it to quit doing that unless he is dead?