I’ve cleared most all higher level content, albeit not a deathless UE yet and I hit my flasks normally. That said, I’d like to cut down on piano typing.
Also anyone have some examples they really like?
I have one but cannot attach it. I will put it in here.
Step 1: Download
AutoHotkey
Step 2: Open and choose "create macro"
Step 3: Paste the script below into a file and name it 'PoE Flask' or some shit. If you read it all the instructions are inside the macro. You can see that I changed the bound keys to w,e,r, and f because that is where my flasks were bound.
Step 4: Choose and load macro
Step 5: ??
Step 6: Profit!
Macro:
;Lines starting with a ; are comments and are not part of the actual script.
;If you want to deactivate a flask press(e.g. because it is your hp flask) simply add a ; to the start of the line
;this line makes the script only work when Path of Exile is the active window
#IfWinActive, ahk_class POEWindowClass
;The key (or mouse button) you press to activate the script. For a list of supported "keys" and combinations, see
Hotkeys - Definition & Usage | AutoHotkey
;XButton1 = "Back"-Button on my mouse. For a complete list of special keys, see
List of Keys (Keyboard, Mouse and Joystick) | AutoHotkey
XButton1::
{
;Initialize random delays between 57 and 114 ms (arbitrary values, may be changed)
random, delay2, 57, 114
random, delay3, 57, 114
random, delay4, 57, 114
random, delay5, 57, 114
;send, 2 ;simulates the keypress of the 1 button. If you use another button, change it!
;sleep, %delay2%
send, w ;simulates the keypress of the 2 button. If you use another button, change it!
sleep, %delay3%
send, e ;simulates the keypress of the 3 button. If you use another button, change it!
sleep, %delay4%
send, r ;simulates the keypress of the 4 button. If you use another button, change it!
sleep, %delay5%
send, f ;simulates the keypress of the 5 button. If you use another button, change it!
}
return
/end Macro