-
Private
Poke Bot Restarter - Simple .bat script
A simple .bat script that will restart NecroBot or any other botting program.
UPDATE: New multi-user version.

Instructions:
1) Copy code to notepad and edit
2) Change cd location to the path of NecroBot.exe
3a) Change timer value of 3600 to the number of seconds you want the bot to restart. Default is 1 hour.
3b) Change value of max_restarts to the number of times you want the bot to restart. Default is 5 times.
4) Save and place the .bat file in the same location of NecroBot.exe
5) Run .bat file and Enjoy 
Poke Bot Restarter v1.1
Code:
@echo off
title Poke Bot Restarter v1.1
mode con: cols=60 lines=8
color 0a
set /a timer = 3600
set /a max_restarts = 5
:loop
set /a counter = %counter% + 1
cd "C:\Users\Satoshi\Desktop\Release\"
start NecroBot.exe
cls
echo ------------------------------------------------
echo // Poke Bot Restarter
echo // Author: daisukiCx @ ownedcore.com
echo // Version: 1.1 - 8/16/16
echo.
echo [Message] Restarts: %counter% / %max_restarts%
echo [Message] Bot will restart in %timer% seconds...
echo ------------------------------------------------
timeout /t %timer% >nul
taskkill /f /im NecroBot.exe >nul
if %counter% == %max_restarts% goto done
goto loop
:done
exit
Poke Bot Restarter - Changelog:
- v1.1: added max_restarts counter.
- v1.0.1: fixed typo. no longer writes %timer% to file called null.
- v1.0: initial release.
==========================================================================
To switch between two accounts when restarting, use this version.
Just change the cd paths to the location of each accounts bot in :account1 and :account 2 loop.

Poke Bot Restarter [Multi] v1.1
Code:
@echo off
title Poke Bot Restarter [Multi] v1.1
mode con: cols=60 lines=11
color 0a
set /a timer = 5
set /a max_restarts = 5
REM ==========================================================================
:account1
set /a counter = %counter% + 1
cd "C:\Users\Satoshi\Desktop\Release"
start NecroBot.exe
if not exist NecroBot.exe exit
cls
echo ------------------------------------------------
echo // Poke Bot Restarter [Multi]
echo // Author: daisukiCx @ ownedcore.com
echo // Version: 1.1 - 8/16/16
echo.
echo [Message] Account: 1
echo [Message] Restarts: %counter% / %max_restarts%
echo [Message] Bot will restart in %timer% seconds...
echo ------------------------------------------------
timeout /t %timer% >nul
taskkill /f /im NecroBot.exe >nul
if %counter% == %max_restarts% goto done
goto account2
REM ==========================================================================
REM ==========================================================================
:account2
set /a counter = %counter% + 1
cd "C:\Users\Satoshi\Desktop\Release"
start NecroBot.exe
if not exist NecroBot.exe exit
cls
echo ------------------------------------------------
echo // Poke Bot Restarter [Multi]
echo // Author: daisukiCx @ ownedcore.com
echo // Version: 1.1 - 8/16/16
echo.
echo [Message] Account: 2
echo [Message] Restarts: %counter% / %max_restarts%
echo [Message] Bot will restart in %timer% seconds...
echo ------------------------------------------------
timeout /t %timer% >nul
taskkill /f /im NecroBot.exe >nul
if %counter% == %max_restarts% goto done
goto account1
REM ==========================================================================
:done
exit
Poke Bot Restarter [Multi]- Changelog:
- v1.1: exception handling if necrobot.exe doesnt exist.
- v1.0: initial release.
Last edited by daisukiCx; 08-16-2016 at 05:58 AM.
Reason: new version
-
Post Thanks / Like - 8 Thanks
-
Member
-
Member
Sweet literally just looking for this.
-
Member
You are the man. Thanks dude!
-
Member
Originally Posted by
daisukiCx
A simple .bat script that will restart NecroBot or any other botting program.
Instructions:
1) Copy code to notepad and edit
2) Change
cd location to the path of
NecroBot.exe
3) Change timer value of
3600 to the number of seconds you want the bot to restart. Default is 1 hour.
4) Save and place the .bat file in the same location of
NecroBot.exe
5)
Run .bat file and Enjoy
Code:
@echo off
title Poke Bot Restarter v1.0
mode con: cols=60 lines=8
color 0a
set /a timer = 3600
:loop
cd "C:\Users\Satoshi\Desktop\Release\"
start NecroBot.exe
cls
echo ------------------------------------------------
echo // Poke Bot Restarter
echo // Author: daisukiCx @ ownedcore.com
echo // Version: 1.0 - 8/9/16
echo.
echo [Message] Bot will restart in %timer% seconds...
echo ------------------------------------------------
timeout /t %timer% >null
taskkill /f /im NecroBot.exe >nul
goto loop
Can I add some delay so the app will open in let say 10 mins after it restart? Pls show me if you can. Thanks!
-
Member
Here are the code for the haxtonBot
Credits: zenbook
Code:
@echo off
title Poke Bot Restarter v1.0
mode con: cols=60 lines=8
color 0a
set /a timer = 3600
:loop
cd "C:\Users\All Users.AllUsers-PC\Desktop\HaxtonBot"
start PokemonGo.Haxton.Console.exe
cls
echo ------------------------------------------------
echo // Poke Bot Restarter
echo // Author: daisukiCx @ ownedcore.com
echo // Version: 1.0 - 8/9/16
echo.
echo [Message] Bot will restart in %timer% seconds...
echo ------------------------------------------------
timeout /t %timer% >null
taskkill /f /im PokemonGo.Haxton.Console.exe >nul
goto loop
-
Member
Originally Posted by
LeftKinGo
Here are the code for the haxtonBot

Credits: zenbook
Code:
@echo off
title Poke Bot Restarter v1.0
mode con: cols=60 lines=8
color 0a
set /a timer = 3600
:loop
cd "C:\Users\All Users.AllUsers-PC\Desktop\HaxtonBot"
start PokemonGo.Haxton.Console.exe
cls
echo ------------------------------------------------
echo // Poke Bot Restarter
echo // Author: daisukiCx @ ownedcore.com
echo // Version: 1.0 - 8/9/16
echo.
echo [Message] Bot will restart in %timer% seconds...
echo ------------------------------------------------
timeout /t %timer% >null
taskkill /f /im PokemonGo.Haxton.Console.exe >nul
goto loop
Were exactly is that located on Haxton?
-
Member
Code:
@echo off
title Poke Bot Restarter v1.0
mode con: cols=60 lines=8
color 0a
set /a timer = 7200
:loop
cd "D:\Desktop\Naxtonbot"
start PokemonGo.Haxton.Console
cls
echo ------------------------------------------------
echo // Poke Bot Restarter
echo // Author: daisukiCx @ ownedcore.com
echo // Version: 1.0 - 8/9/16
echo.
echo [Message] Bot will restart in %timer% seconds...
echo ------------------------------------------------
timeout /t %timer% >null
taskkill /f /im NecroBot.exe >nul
goto loop
-
Member
where link download bot starter??
-
Member
Originally Posted by
winoto
where link download bot starter??
read read read read, have u event read?
-
Member
If id also want to make it switch accounts, do i just copy the loop with the different path right? Or is there a different command for doing that?
-
Private

Changelog:
- v1.1: added max_restarts counter.
Last edited by daisukiCx; 08-16-2016 at 02:12 AM.
-
Private
Originally Posted by
supadupastar
If id also want to make it switch accounts, do i just copy the loop with the different path right? Or is there a different command for doing that?
try this, just change paths to where the bot program is in :account1 and :account2 loop.
Code:
@echo off
title Poke Bot Restarter [Multi] v1.1
mode con: cols=60 lines=11
color 0a
set /a timer = 5
set /a max_restarts = 5
REM ==========================================================================
:account1
set /a counter = %counter% + 1
cd "C:\Users\Satoshi\Desktop\Release"
start NecroBot.exe
if not exist NecroBot.exe exit
cls
echo ------------------------------------------------
echo // Poke Bot Restarter [Multi]
echo // Author: daisukiCx @ ownedcore.com
echo // Version: 1.1 - 8/16/16
echo.
echo [Message] Account: 1
echo [Message] Restarts: %counter% / %max_restarts%
echo [Message] Bot will restart in %timer% seconds...
echo ------------------------------------------------
timeout /t %timer% >nul
taskkill /f /im NecroBot.exe >nul
if %counter% == %max_restarts% goto done
goto account2
REM ==========================================================================
REM ==========================================================================
:account2
set /a counter = %counter% + 1
cd "C:\Users\Satoshi\Desktop\Release"
start NecroBot.exe
if not exist NecroBot.exe exit
cls
echo ------------------------------------------------
echo // Poke Bot Restarter [Multi]
echo // Author: daisukiCx @ ownedcore.com
echo // Version: 1.1 - 8/16/16
echo.
echo [Message] Account: 2
echo [Message] Restarts: %counter% / %max_restarts%
echo [Message] Bot will restart in %timer% seconds...
echo ------------------------------------------------
timeout /t %timer% >nul
taskkill /f /im NecroBot.exe >nul
if %counter% == %max_restarts% goto done
goto account1
REM ==========================================================================
:done
exit
Last edited by daisukiCx; 08-16-2016 at 05:46 AM.
-
Member
-
Member
[Multi] v1.1 did not work. it always run 1 account.
Please add delay between 2 consecutive restarts