What's new
  • Visit Rebornbuddy
  • Visit Panda Profiles
  • Visit LLamamMagic
  • Visit Resources
  • Visit Downloads
  • Visit Portal
RebornBuddy Forums

Register a free account today to become a member! Once signed in, you'll be able to participate on this site by adding your own topics and posts, as well as connect with other members through your own private inbox!

VortexRoutine - A Blade Vortex Routine

its an issue with the sockets. it prioritizes specific gear for sockets for blade vortex.
So lets say if you have a CWDT on your boots with it, it'll effectively do nothing.
All i know atm is that boots have higher priority than chest. While chest has higher than gloves.


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?
 
its an issue with the sockets. it prioritizes specific gear for sockets for blade vortex.
So lets say if you have a CWDT on your boots with it, it'll effectively do nothing.
All i know atm is that boots have higher priority than chest. While chest has higher than gloves.

Changed my cast-on-crit with blind and BV to the gloves. Still no precasting

Hey - I use 11.
I suggest usual tech support steps 1 and 2. (1) Restart , then (2) fresh install (EB + plugins + routine) if necessary.

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.. ^^
 
Last edited:
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.
 
any chance for a working version that allows multiple BVs slotted without having priority one the wrong one? :P
 
/// <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;
}
 
can anyone share a BV routine can do precasting right now?
any chance for a working version that allows multiple BVs slotted without having priority one the wrong one? :P

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

Nwfxg7z.jpg

r03Ikfd.jpg

Q551VN9.jpg
 

Attachments

Last edited:
Try this code Tormiasz wrote it worked for me on my lvl 80+ scion. It should precast and generate 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 gem and bv.
View attachment 204140

sadly doesnt work with castoncrit setup on my shield. (coc-blind-bv). no precasting :(
 
sadly doesnt work with castoncrit setup on my shield. (coc-blind-bv). no precasting :(

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.
 
Last edited:
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.
 
yeah let these guys take it over, they're hella better at code than i am xD
 
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?
 
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 :/
 
Back
Top