hello
Has anyone come up with such? finding skill combos kinda pain to use without
hello
Has anyone come up with such? finding skill combos kinda pain to use without
These ads disappear when you log in.
i would also be highly interested in such a script
If someone could clarify the timing you should use with the combination I could give it a try. Afaik you should use it in precise moment to maximize damage output? I've never used the skills before so don't really have any knowledge of it
CoPilot for ExileAPI supports this.
is there someone who might have a heart and time explain me how to get exileapi to work within next 2 hours ? i never used it and it dont seems user friendly for first time use would be awesome
I found copilot usage bugging sometimes and being a little slow so here's an ahk script if anyone wants to try.
change trigger button, skill buttons and delays to your liking.Code:#IfWinActive , ahk_class POEWindowClass #MaxThreadsPerHotkey 2 ; Toggle key RButton:: { if (WinActive("ahk_class POEWindowClass") && !GetKeyState("Shift") && !GetKeyState("Ctrl") && !GetKeyState("Alt")) ; Prevent combo spamming if game loses focus or you hold Shift/Ctrl/Alt (when you interact with objects in inventory etc) { ; bladefall Send, e ; Random delay with range sleep, % delay(200, 250) ;bladeblast Send, r } } return delay(a, b) { random, delay, a, b return delay }
It's not perfect but seems to work decent to my taste. You can't hold trigger key down but instead use stutterstepping
hey, thanks for the base, ended up running this:
supports holding down right click, to spam for maximum dmg, while retaining the right click function of inventory and chat.Code:#IfWinActive Path of Exile #NoEnv #SingleInstance , Force #MaxThreadsPerHotkey 2 SendMode, Input return RButton:: While GetKeyState(A_ThisHotkey,"p") { if !GetKeyState("Shift") && !GetKeyState("Ctrl") && !GetKeyState("Alt")) { ; bladefall Send, {RButton} ; Random delay with range sleep, % delay(350, 380) ;bladeblast if (GetKeyState(A_ThisHotkey,"p") && !GetKeyState("Shift") && !GetKeyState("Ctrl") && !GetKeyState("Alt")) { Send, t sleep, % delay(310, 340) } } } return delay(a, b) { random, delay, a, b return delay }
also allows you you to cancel the blade blast my releasing right click so you dont get stuck and die.
found adjusting delay to around cast time -30/40 as min and actually cast time as max.
Last edited by xerance; 9 Hours Ago at 06:21 PM.
@xerance I try to use your code but it give me this message:
Script.jpg