Guys if you want to bot hc make yourself a failsafe AHK script. Have it scan the screen for the DB login window every 5 sec or so, if it find that window equip homing pads and teleport to town. Something like....
Loop
{
IfWinExist Demonbuddy Login
{
WinActivate Diablo 3
SendInput c ;or whatever your inventory hotkey is
Click Right x, y ;the coordinates of the location of your homing pads, you can use windowspy to get the x,y
sleep 100
SendInput t ;or whatever your recall hotkey is
WinClose Demonbuddy Login
}
sleep 5000 ;5seconds, change to whatever interval you'd want the loop to check for the Demonbuddy Login window existing
}
You could get really creative and have it scan a pixel every so often and if that pixel remained the same color it could teleport out. You could also just end the DiabloIII process, but I'm not sure how long that'll make your character sit around ingame.
I doubt there is any danger in using AHK with Diablo 3 but I'm sure someone out there isn't fond of the idea (multiboxers use ahk if not similar software).
Also, for any plugin makers out there, a plugin to equip homing pads on x% hp and teleport to town would be amazing. I'm half tempted to learn how to make a plugin just to do this myself. I don't bot HC but it would be handy to have in SC just to save on res timers.