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

Double of the same vaal skill?

Nevermind I just realized its part of the cyclone routine I'm using. My question is still the same though.
I think this is the code that assigns the vaal haste skill on the skill bar:

Code:
var vh = LokiPoe.InGameState.SkillBarHud.Skills.FirstOrDefault(s => s.Name == "Vaal Haste");
                if (IsCastableHelper(vh))
                {
                    _vaalHasteSlot = vh.Slot;
                }

I can probably create another slot for the 2nd vaal haste correct?
But how do I point that second one to the 2nd vaal haste? Is there a variation of "LokiPoe.InGameState.SkillBarHud.Skills.FirstOrDefault" that would get the other one? If not by name then maybe a way to refer to the skill directly by the location on the bar?
 
I just pointed it manually to the 2nd Vaal Haste slot, let me know if there's a smarter way of doing this that would still work if the skill slots change.
Thanks

Update: Working well, adding 2 vaal hastes shaved 30% of average time per map!
 
Last edited:
Back
Top