var bfAura = LokiPoe.Me.Auras.Find(a => a.Name == "Blade Flurry");
if (bfAura != null && bfAura.Charges >= 6)
{
_isCasting = false;
_castingSlot = -1;
}
Thanks alot, that works!If you want to release the skill at 6 charges thats quite easy to do:
1) Open BotFolder\3rdParty\Legacy\OldRoutine\OldRoutine.cs
2) Find this line: if (_isCasting && slot == _castingSlot && (LokiPoe.ProcessHookManager.GetKeyState(slotSkill.BoundKey) & 0x8000) !=0)
3) Add the following code before that line
Code:var bfAura = LokiPoe.Me.Auras.Find(a => a.Name == "Blade Flurry"); if (bfAura != null && bfAura.Charges >= 6) { _isCasting = false; _castingSlot = -1; }