Wednesday, November 6, 2013

Path of Exile - Autohotkey Logout script

Path of Exile is an insane game. 176 hours since release is saying something for me. Like most ARPGs I play hardcore or I don't play at all. Anyways, an auto logout script to save yourself is quite useful. Of the other versions I've found have bugs in them. Either they're too slow, inaccurate or just don't work. Here's mine:


#IfWinActive, Path of Exile
SendMode Input
{
F1::
SendInput, 1234
Sleep 20
SendInput, {Esc}
Sleep 20
MouseClick, Left, 960, 482,,Fast
Sleep 20
return
}