it is not much, but better than no botting =x AHK script to check when the bot closes and restarts it.
Code:
#NoEnv ; Recommended for performance and compatibility with future AutoHotkey releases.
#SingleInstance
#Persistent ; Only the user can kill the application
#IfWinActive Path of Exile
Loop
{
Process, Exist, ExileBuddyBeta.exe ; check to see if the bot is running
{
If ! errorLevel
{
IfExist, C:\Users\xxx\Desktop\ExileBuddyBeta.lnk ; path to your EB shortcut, use the new parameter autostart, righ click shortcut > properties>target should look like this E:\xxx\xx\ExileBuddyBeta.exe --autostart
Run,C:\Users\xxx\Desktop\EBB.lnk
}
}
Sleep 600000 ; sleep 10 minutes
}
Last edited: