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

Relogger?

Ehnoah

Member
Joined
Jan 15, 2010
Messages
282
Reaction score
3
Just checked Release Section,

is there some kind of Relogger? I want keep it running over night, sadly often the Game/Bot Shutdown, is there any kind of Script / Macro we can run to keep the bot up and running?
 
The problem is that EB also closes upon crash, so you would have to customize the script to open both EB and the game at the same time, where you would encounter yet another problem - not being able to hit the Start button in EB.
 
hmm well if you figure anything out we are open to hearing about it :)
 
The problem is that EB also closes upon crash, so you would have to customize the script to open both EB and the game at the same time, where you would encounter yet another problem - not being able to hit the Start button in EB.
Run bot with -autostart argument
 
ok, so we just need a simple .bat file that monitors the processes and upon both being absent execute the launch sequence.
I will try to make something, I guess.
 
Ok, made 2 real simple .bat files for poe and db separately, if someone wants to combine them into 1 file, pls do so and post if u dont mind.

Firstly, make a shortcut for your eb with the following launch options so it looks like this C:\Exilebuddy\eb.exe -autostart

eb.bat:
Code:
@echo off
:eb
echo (%time%) EB started.
C:\Exilebuddy\eb.lnk
echo (%time%) EB closed or crashed, restarting.
goto eb
you need to link it to the actual shortcut, otherwise eb wont compile(tested, its weird I know)

poe.bat
Code:
@echo off
:poe
echo (%time%) PoE started.
"E:\Path of Exile\PathOfExile.exe" --nosound --nologo
echo (%time%) PoE closed or crashed, restarting.
goto poe

you're welcome.
Mad coding skillz I know lol
 
I use this
Code:
@echo off
Crash!
color 0E
reg add "HKEY_CURRENT_USER\Software\Microsoft\Windows\Windows Error Reporting" /f /v "DontShowUI" /t REG_DWORD /d "1"
reg add "HKEY_CURRENT_USER\Software\Microsoft\Windows\Windows Error Reporting" /f /v "DontShowUI" /t REG_DWORD /d "1"

:1
cls
tasklist|find /i "PathOfExileSteam.exe" >NUL
if errorlevel 1 START "" "C:\Steam\steamapps\common\Path of Exile\PathOfExileSteam.exe"
timeout /t 10
goto :2

:2
cls
tasklist|find /i "hi.exe" >NUL
if errorlevel 1 START "" "C:\Users\stric\Desktop\hi.lnk"
timeout /t 60
goto :1

pause
 
I used Jigs Auto Macro and now C++ however I noticed the same, if you run the Bot from C++ or any else, it just not work, so I did the same workarround and starting the bot via a Shortcut. No clue why this happen, my skill level is not high enough for that.

Alacor75 said, we also could try to make a tool watching on CPU usage of game/Bot so if it freeze and CPU not change it restarts.

Or maybe Force a Restart every 1 Hour no clue.
 
Back
Top