Poke Bot Restarter - Simple .bat script menu

User Tag List

Page 1 of 2 12 LastLast
Results 1 to 15 of 19
  1. #1
    daisukiCx's Avatar Private
    Reputation
    11
    Join Date
    Jul 2016
    Posts
    10
    Thanks G/R
    1/9
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)

    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

    Poke Bot Restarter - Simple .bat script
  2. Thanks chesterkmr, Temperate, bowjthewen, k7k900, bomboykent, baklaforever, gonz00, KhongTen (8 members gave Thanks to daisukiCx for this useful post)
  3. #2
    chesterkmr's Avatar Member
    Reputation
    1
    Join Date
    Oct 2014
    Posts
    24
    Thanks G/R
    1/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Works good,thanks a lot

  4. #3
    Temperate's Avatar Member
    Reputation
    1
    Join Date
    Jul 2016
    Posts
    39
    Thanks G/R
    5/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Sweet literally just looking for this.

  5. #4
    zenbook's Avatar Member
    Reputation
    2
    Join Date
    Aug 2016
    Posts
    68
    Thanks G/R
    1/1
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    You are the man. Thanks dude!

  6. #5
    zenbook's Avatar Member
    Reputation
    2
    Join Date
    Aug 2016
    Posts
    68
    Thanks G/R
    1/1
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by daisukiCx View Post
    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!

  7. #6
    LeftKinGo's Avatar Member
    Reputation
    1
    Join Date
    Aug 2016
    Posts
    4
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    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

  8. #7
    basszoneiv's Avatar Member
    Reputation
    1
    Join Date
    Aug 2016
    Posts
    20
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by LeftKinGo View Post
    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?

  9. #8
    delucia's Avatar Member
    Reputation
    2
    Join Date
    Jul 2016
    Posts
    18
    Thanks G/R
    2/1
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    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

  10. #9
    winoto's Avatar Member
    Reputation
    1
    Join Date
    Aug 2016
    Posts
    1
    Thanks G/R
    1/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    where link download bot starter??

  11. #10
    neutronz's Avatar Member
    Reputation
    4
    Join Date
    Jul 2016
    Posts
    38
    Thanks G/R
    3/3
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by winoto View Post
    where link download bot starter??
    read read read read, have u event read?

  12. #11
    supadupastar's Avatar Member
    Reputation
    1
    Join Date
    Aug 2016
    Posts
    1
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    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?

  13. #12
    daisukiCx's Avatar Private
    Reputation
    11
    Join Date
    Jul 2016
    Posts
    10
    Thanks G/R
    1/9
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)


    Changelog:
    - v1.1: added max_restarts counter.
    Last edited by daisukiCx; 08-16-2016 at 02:12 AM.

  14. #13
    daisukiCx's Avatar Private
    Reputation
    11
    Join Date
    Jul 2016
    Posts
    10
    Thanks G/R
    1/9
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by supadupastar View Post
    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.

  15. #14
    bomboykent's Avatar Member
    Reputation
    1
    Join Date
    Aug 2016
    Posts
    19
    Thanks G/R
    2/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    good work!!!!!!!!!!!!!

  16. #15
    bomboykent's Avatar Member
    Reputation
    1
    Join Date
    Aug 2016
    Posts
    19
    Thanks G/R
    2/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    [Multi] v1.1 did not work. it always run 1 account.
    Please add delay between 2 consecutive restarts

Page 1 of 2 12 LastLast

Similar Threads

  1. [Tool] Simple Batch script to start and restart all bots at once
    By Marlb0ro in forum Pokemon GO Hacks|Cheats
    Replies: 3
    Last Post: 07-30-2016, 12:20 AM
  2. Simple LUA Script Help
    By Wolfly in forum WoW EMU Questions & Requests
    Replies: 7
    Last Post: 09-02-2008, 04:22 PM
  3. Safer bot guide compile your scripts..
    By freakyflow in forum World of Warcraft Bots and Programs
    Replies: 9
    Last Post: 07-23-2008, 10:57 AM
  4. Simple Lua Script , not working need help!
    By Arugos in forum World of Warcraft Emulator Servers
    Replies: 16
    Last Post: 12-30-2007, 02:06 PM
All times are GMT -5. The time now is 02:51 AM. Powered by vBulletin® Version 4.2.3
Copyright © 2025 vBulletin Solutions, Inc. All rights reserved. User Alert System provided by Advanced User Tagging (Pro) - vBulletin Mods & Addons Copyright © 2025 DragonByte Technologies Ltd.
Google Authenticator verification provided by Two-Factor Authentication (Free) - vBulletin Mods & Addons Copyright © 2025 DragonByte Technologies Ltd.
Digital Point modules: Sphinx-based search