Uhm, i have a cwdt setup in my dagger. gloves are filled with whirelingblades+attackspeed+culling+fortify. and boots have castoncrit with blind and another BV. that's the issue? Even though i dont even have the second BV on my bars?
Changed my cast-on-crit with blind and BV to the gloves. Still no precasting reinstalled a fresh and clean new version + every plugin from the scratch and made new settings. Still no precasting. Dissappointing edit; hmmm fully removed the cast on crit BV and now it does precast fine again. Any tip how to make this work? :/ In the helmet piece it's working fine ... sadly my gearchange included a hereth veil helmet. so i dont really wanna use that slot to equip my cast on crit.. ^^
understood. im going to try and put in a specific selection for the blade vortex cast. (such as a slot specific one) I should be able to implement it. not as difficult as the vaal skill change is.
Made this for you, you can make use of it https://gist.github.com/Tormiasz/ac3bb49386742e27d2de0ee2cc3baf24
thanks tormiasz I need a serious brushup on my programming skills. i had no idea how to set it to a specific slot. I'll read your code and see what i can learn xD
any chance for a working version that allows multiple BVs slotted without having priority one the wrong one?
/// <summary> /// Returns slot of skill with specified skill name that generates power charges /// </summary> /// <param name="skillName"></param> /// <returns></returns> public int GetPowerChargeGenerationSlot(string skillName) { var skill = LokiPoe.InGameState.SkillBarHud.Skills .Where(s => s.Name == skillName) .FirstOrDefault(s => s.Stats.ContainsKey(StatTypeGGG.AddPowerChargeOnCriticalStrikePct)); return skill?.Slot ?? -1; }
Try this code Tormiasz wrote it worked for me on my lvl 80+ scion. It should precast and generate power charges. Set your main BV spell to your melee slot and have your power charge generating skill somewhere on your bar. Might not work with cwdt (or coc). I self cast BV and it works. http://www.pathofexile.com/forum/view-thread/1579705 You need to register and have one post to see spoilers!
Is your single target and aoe melee set to that skill? This is setup to precast your main BV spell and use charge generator in combat.
yeah it is. It also totally precasts fine when i remove the coc+bv+blind from my shield but as soon i place another bv in any other piece that is not helmet it wont precast anymore.
another problem i see with working precast. i observe the bot sometimes precast the stacks in range of ranged mobs and eat a lot of damage while precasting. at least on high maps. how are you guys handling that? any suggestions?
Lower the precast time in OldRoutine.cs Code: if (LokiPoe.Me.BladeVortexCharges < CastsAmountInTime(_bladeVortexSlot, [COLOR="#FF0000"][B]1500[/B][/COLOR])) You should anyways if you have fast cast speed. 1500ms is good for lower levels and slower speeds.
in Oldroutine.cs? The file is called vortexroutine.cs and doesnt contain the mentioned line of code :/
https://www.thebuddyforum.com/exile...utine-blade-vortex-routine-6.html#post2220817 If you're using that version.