What's new
  • Visit Rebornbuddy
  • Visit Resources
  • Visit API Documentation
  • Visit Downloads
  • Visit Portal
  • Visit Panda Profiles
  • Visit LLamamMagic

Autostart / game+bot restarted

snier

Member
Joined
Dec 8, 2014
Messages
37
Reaction score
0
When using VM poe client crashes time to time. Is there any soft to avoid that wich can close hanging poe, restart game and bot after?
 
You can write one by yourself.
Learn AutoIT or AHK and use image search library.
It isn't hard as sounds, you are able to make working prototype of this in 2 days max without programming background.
There are tons of tutorials and examples online.
You can also try to change few settings like increase RAM or add proper poe start parameters to make error appear less frequently.
 
Agreed, and I do have a programming background, but it's always nice not having to reinvent the wheel if someone has already done it.
 
There are private reloggers, yes, but they are private so don't expect them to be released.

I can give some hints.
1) Check for PoE process (AutoIt: ProcessExists("PathOfExile.exe")). If there is none, run the poe.

2) Check for Window(s). In Autoit that would be:
Code:
WinGetHandle"[TITLE:PathOfExile.exe; CLASS:#32770]")
#32770 class is general for every crash window. Comparing the title will give you PoE process crashed.
 
Back
Top