Hi, Can someone tell me how to add bladeflurry charges to old routine or share their working routine? Been trying different things but every change to the routine gives me errors. Thanks!
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; }
Haven't been on the forums in a while... that said, the code definitely works. A couple caveats I've noticed since 3.1. You must be using predictive network mode in order to have about anything be held down. Also I'm pretty sure the skill cannot be on a mouse button, in other words put it on 4-8 and make sure you're predictive and it'll work.