• Visit Rebornbuddy
  • VortexRoutine - A Blade Vortex Routine

    Discussion in 'Archives' started by Lay, Jun 12, 2016.

    1. DontBeAfraid

      DontBeAfraid Active Member

      Joined:
      Oct 2, 2015
      Messages:
      742
      Likes Received:
      30
      Trophy Points:
      28

      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?
       
    2. DontBeAfraid

      DontBeAfraid Active Member

      Joined:
      Oct 2, 2015
      Messages:
      742
      Likes Received:
      30
      Trophy Points:
      28
      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.. ^^
       
      Last edited: Jun 22, 2016
    3. Lay

      Lay Member

      Joined:
      Jul 6, 2015
      Messages:
      173
      Likes Received:
      6
      Trophy Points:
      18
      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.
       
    4. DontBeAfraid

      DontBeAfraid Active Member

      Joined:
      Oct 2, 2015
      Messages:
      742
      Likes Received:
      30
      Trophy Points:
      28
      cool, looking forward to that, thanks already! :)
       
    5. Tormiasz

      Tormiasz Community Developer

      Joined:
      Jun 16, 2014
      Messages:
      701
      Likes Received:
      5
      Trophy Points:
      18
      Last edited: Jun 25, 2016
    6. Lay

      Lay Member

      Joined:
      Jul 6, 2015
      Messages:
      173
      Likes Received:
      6
      Trophy Points:
      18
    7. williamchou720

      williamchou720 New Member

      Joined:
      Nov 21, 2013
      Messages:
      21
      Likes Received:
      3
      Trophy Points:
      3
      can anyone share a BV routine can do precasting right now?
       
    8. DontBeAfraid

      DontBeAfraid Active Member

      Joined:
      Oct 2, 2015
      Messages:
      742
      Likes Received:
      30
      Trophy Points:
      28
      any chance for a working version that allows multiple BVs slotted without having priority one the wrong one? :p
       
    9. Tormiasz

      Tormiasz Community Developer

      Joined:
      Jun 16, 2014
      Messages:
      701
      Likes Received:
      5
      Trophy Points:
      18
      /// <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;
      }
       
    10. tofm

      tofm Member

      Joined:
      Oct 4, 2015
      Messages:
      41
      Likes Received:
      4
      Trophy Points:
      8
      That's amazing, thanks.
       
    11. tofm

      tofm Member

      Joined:
      Oct 4, 2015
      Messages:
      41
      Likes Received:
      4
      Trophy Points:
      8
      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! [​IMG]
      [​IMG]
      [​IMG]
       

      Attached Files:

      Last edited: Jul 2, 2016
    12. DontBeAfraid

      DontBeAfraid Active Member

      Joined:
      Oct 2, 2015
      Messages:
      742
      Likes Received:
      30
      Trophy Points:
      28
      sadly doesnt work with castoncrit setup on my shield. (coc-blind-bv). no precasting :(
       
    13. tofm

      tofm Member

      Joined:
      Oct 4, 2015
      Messages:
      41
      Likes Received:
      4
      Trophy Points:
      8
      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: Jun 30, 2016
    14. DontBeAfraid

      DontBeAfraid Active Member

      Joined:
      Oct 2, 2015
      Messages:
      742
      Likes Received:
      30
      Trophy Points:
      28
      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.
       
    15. Lay

      Lay Member

      Joined:
      Jul 6, 2015
      Messages:
      173
      Likes Received:
      6
      Trophy Points:
      18
      yeah let these guys take it over, they're hella better at code than i am xD
       
    16. DontBeAfraid

      DontBeAfraid Active Member

      Joined:
      Oct 2, 2015
      Messages:
      742
      Likes Received:
      30
      Trophy Points:
      28
      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?
       
    17. tofm

      tofm Member

      Joined:
      Oct 4, 2015
      Messages:
      41
      Likes Received:
      4
      Trophy Points:
      8
      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.
       
    18. DontBeAfraid

      DontBeAfraid Active Member

      Joined:
      Oct 2, 2015
      Messages:
      742
      Likes Received:
      30
      Trophy Points:
      28
      in Oldroutine.cs?

      The file is called vortexroutine.cs and doesnt contain the mentioned line of code :/
       
    19. tofm

      tofm Member

      Joined:
      Oct 4, 2015
      Messages:
      41
      Likes Received:
      4
      Trophy Points:
      8
    20. afribeiro

      afribeiro Member

      Joined:
      Jan 20, 2013
      Messages:
      63
      Likes Received:
      0
      Trophy Points:
      6
      Can anyone confirm if this is still working in 2.4? Thanks in advance!
       

    Share This Page