Programs that shuts down and reopen Necrobot? menu

Shout-Out

User Tag List

Page 1 of 3 123 LastLast
Results 1 to 15 of 36
  1. #1
    darkjuly's Avatar Sergeant
    Reputation
    5
    Join Date
    Aug 2016
    Posts
    40
    Thanks G/R
    8/4
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)

    Programs that shuts down and reopen Necrobot?

    Is there a way to get a program or you know any programs you know that can terminate Necrobot in a certain time and reopen after a few hours?

    Programs that shuts down and reopen Necrobot?
  2. #2
    ymicky's Avatar Member
    Reputation
    1
    Join Date
    Aug 2016
    Posts
    5
    Thanks G/R
    1/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    You could code a program

  3. #3
    darkjuly's Avatar Sergeant
    Reputation
    5
    Join Date
    Aug 2016
    Posts
    40
    Thanks G/R
    8/4
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by ymicky View Post
    You could code a program
    What's the point of posting here if I can write a script and run a program?

  4. #4
    Gennex's Avatar Member
    Reputation
    1
    Join Date
    Jul 2016
    Posts
    4
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)

  5. #5
    Ripper3's Avatar Contributor
    Reputation
    121
    Join Date
    Jul 2016
    Posts
    485
    Thanks G/R
    52/109
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    You can simply create a batch file for it. The following example batch file opens Necrobot lets it run for an hour, kills it, waits 2 hours and reopens it for another hour, etc. in an endless in loop.

    Instructions:
    In your Necrobot folder, rightclick new text document, name it botcontrol.bat
    Edit botcontrol.bat
    Paste this code inside
    :start
    start NecroBot.exe
    timeout /t 3600
    taskkill -f -IM "NecroBot.exe"
    timeout /t 7200
    goto :start
    Save
    Double click botcontrol.bat

    The times are in seconds, you can easily adjust the numbers. 3600 is 1h, 7200 is 2h.

  6. Thanks darkjuly, pokegod1028, mj_godam (3 members gave Thanks to Ripper3 for this useful post)
  7. #6
    darkjuly's Avatar Sergeant
    Reputation
    5
    Join Date
    Aug 2016
    Posts
    40
    Thanks G/R
    8/4
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by Ripper3 View Post
    You can simply create a batch file for it. The following example batch file opens Necrobot lets it run for an hour, kills it, waits 2 hours and reopens it for another hour, etc. in an endless in loop.

    Instructions:
    In your Necrobot folder, rightclick new text document, name it botcontrol.bat
    Edit botcontrol.bat
    Paste this code inside

    Save
    Double click botcontrol.bat

    The times are in seconds, you can easily adjust the numbers. 3600 is 1h, 7200 is 2h.
    Thans man! +repped!

    Question though, I will open bot and run then this botcontrol.bat will run on its own?

  8. #7
    Ripper3's Avatar Contributor
    Reputation
    121
    Join Date
    Jul 2016
    Posts
    485
    Thanks G/R
    52/109
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Just run the batch file. It will automatically start the bot for you

  9. #8
    darkjuly's Avatar Sergeant
    Reputation
    5
    Join Date
    Aug 2016
    Posts
    40
    Thanks G/R
    8/4
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by Ripper3 View Post
    Just run the batch file. It will automatically start the bot for you
    So the batch file is the notepad I am putting the script right? Sorry, kind of lost. First time doing this. Thank you so much!

  10. #9
    Ripper3's Avatar Contributor
    Reputation
    121
    Join Date
    Jul 2016
    Posts
    485
    Thanks G/R
    52/109
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Yes, but rename the .txt to have a .bat ending. So it looks like this:
    Programs that shuts down and reopen Necrobot?-restart-png

  11. #10
    mickeymike1834's Avatar Master Sergeant
    Reputation
    6
    Join Date
    Aug 2016
    Posts
    75
    Thanks G/R
    0/5
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by Ripper3 View Post
    You can simply create a batch file for it. The following example batch file opens Necrobot lets it run for an hour, kills it, waits 2 hours and reopens it for another hour, etc. in an endless in loop.

    Instructions:
    In your Necrobot folder, rightclick new text document, name it botcontrol.bat
    Edit botcontrol.bat
    Paste this code inside

    Save
    Double click botcontrol.bat

    The times are in seconds, you can easily adjust the numbers. 3600 is 1h, 7200 is 2h.
    is this script means It starts the exe after pressed the .bat, after 1 hour, it will close itself
    then 2 hours later, it will restart from the beginning?
    am i right?

    P.S I would also wanna know is there any way I can count how many "POKESTOP" in the necrobot when its running? so I can know how many pokestops I have looted.
    Becase It appears exactly only one time the word after a loot from pokestop
    Last edited by mickeymike1834; 08-15-2016 at 02:53 PM.

  12. #11
    olofpp's Avatar Sergeant
    Reputation
    14
    Join Date
    Jul 2016
    Posts
    57
    Thanks G/R
    2/12
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by Ripper3 View Post
    You can simply create a batch file for it. The following example batch file opens Necrobot lets it run for an hour, kills it, waits 2 hours and reopens it for another hour, etc. in an endless in loop.

    Instructions:
    In your Necrobot folder, rightclick new text document, name it botcontrol.bat
    Edit botcontrol.bat
    Paste this code inside

    Save
    Double click botcontrol.bat

    The times are in seconds, you can easily adjust the numbers. 3600 is 1h, 7200 is 2h.
    To make it more human like you can randomize timeout. With the value of 14400 it will randomize between 0 secs and 4 hours. You can of course change this value to what you want.

    :start
    start NecroBot.exe
    SET /a rnd=(%RANDOM%*14400/3276+1
    timeout %rnd%
    taskkill -f -IM "NecroBot.exe"
    SET /a rnd=(%RANDOM%*14400/3276+1
    timeout %rnd%
    goto :start

    Edit: The smileys are 8 and ) next to each other.
    I don't know how to remove smileys.

  13. Thanks testt0r (1 members gave Thanks to olofpp for this useful post)
  14. #12
    Ripper3's Avatar Contributor
    Reputation
    121
    Join Date
    Jul 2016
    Posts
    485
    Thanks G/R
    52/109
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by mickeymike1834 View Post
    is this script means It starts the exe after pressed the .bat, after 1 hour, it will close itself
    then 2 hours later, it will restart from the beginning?
    am i right?
    When you doubleclick the .bat file, it will
    1) Start Necrobot
    2) Run it for 1 hour
    3) Kill Necrobot after the 1 hour
    4) Wait 2 hours
    5) Loop to 1.
    So it will always run bot for 1 hour, take a 2 hour break, run bot for another hour, and so on.

  15. #13
    ElGuri'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)
    Pulse Y to continue open

  16. #14
    kgarnett01'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)
    I would be more interested in a program/script that shuts down the bot when you reach 1000 pokemon or 2000 pokestops and reopens after 24h... or at least to just shut down when the cap per day is reached an I will manualy open my self the next day

  17. #15
    EnzaDenino's Avatar Corporal
    Reputation
    8
    Join Date
    Jul 2016
    Posts
    33
    Thanks G/R
    0/6
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by olofpp View Post
    To make it more human like you can randomize timeout. With the value of 14400 it will randomize between 0 secs and 4 hours. You can of course change this value to what you want.

    :start
    start NecroBot.exe
    SET /a rnd=(%RANDOM%*14400/3276+1
    timeout %rnd%
    taskkill -f -IM "NecroBot.exe"
    SET /a rnd=(%RANDOM%*14400/3276+1
    timeout %rnd%
    goto :start

    Edit: The smileys are 8 and ) next to each other.
    I don't know how to remove smileys.
    Code:
    :start
    start NecroBot.exe
    SET /a rnd=(%RANDOM%*14400/32768)+1
    timeout %rnd%
    taskkill -f -IM "NecroBot.exe"
    SET /a rnd=(%RANDOM%*14400/32768)+1
    timeout %rnd%
    goto :start
    :gusta:

  18. Thanks olofpp, testt0r (2 members gave Thanks to EnzaDenino for this useful post)
Page 1 of 3 123 LastLast

Similar Threads

  1. [Question] Program that checks level and pokemons
    By NicoBaad in forum Pokemon GO Chat
    Replies: 0
    Last Post: 08-21-2016, 02:02 PM
  2. [Trinity] trinityCore starts and shuts down instantly
    By MCdeathMC in forum WoW EMU Questions & Requests
    Replies: 9
    Last Post: 05-24-2010, 04:29 PM
  3. ArcEmu-World Loads and then shuts down
    By controlsx2 in forum WoW EMU Questions & Requests
    Replies: 12
    Last Post: 06-13-2009, 03:38 PM
  4. LF Program That Shuts Down WoW on GM Whsiper
    By Rectal Exambot in forum World of Warcraft General
    Replies: 3
    Last Post: 01-09-2008, 08:42 AM
All times are GMT -5. The time now is 11:38 PM. 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