Programs that shuts down and reopen Necrobot? menu

Shout-Out

User Tag List

Page 3 of 3 FirstFirst 123
Results 31 to 36 of 36
  1. #31
    Ev0luti0n's Avatar Member
    Reputation
    2
    Join Date
    Aug 2016
    Posts
    15
    Thanks G/R
    0/1
    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.
    This is set up to randomize between 0 seconds and 4 hours. I understand that 14400=4hours, but what if I wanted to randomize between 2.5 and 5 hours?

    Programs that shuts down and reopen Necrobot?
  2. #32
    Ev0luti0n's Avatar Member
    Reputation
    2
    Join Date
    Aug 2016
    Posts
    15
    Thanks G/R
    0/1
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by cjjltx View Post
    Very help. I have other question. We have to type 'Y' to accept the risk since necrobot 0.8.8 if we enable the snipping. How could we type 'Y' with the script?

    In Post #13, Elguri responded with:

    Pulse Y to continue open


    I don't snipe, so I guess that is what they meant by that...just dawned on me now

  3. #33
    nyunyu's Avatar Member
    Reputation
    4
    Join Date
    Aug 2016
    Posts
    26
    Thanks G/R
    4/3
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Just want to share my way of botting, I have 2 accounts and run them in rotation.

    Download Splinterware System Scheduler:
    Splinterware - Downloads


    1. Create a new event for starting the PogoLocationFeederGUI
      • Set event type as Run Application, choose the application path.

    2. Create a new event too for PogoLocationFeederGUI (and start it if not found)
      • Set the event type as "Window Watcher"
      • Set or search for caption to look for. Should be "Location Feeder"
      • Set criteria as "Window does not exists"
      • Set action as "Send keypresses to window and/or run other event"
      • Set Run Event as "ApplicationL LocFeed"

    3. Create a new event for starting the Necrobot
      • Set event type as Run Application, choose the application path.
      • Schedule your botting time "Every Hour / Selected Minutes" e.g. 00,05,10,15,20.

    4. Create a new event for terminating Necrobot after certain time
      • Set the event type as "Window Watcher"
      • Set or search for caption to look for. Should be "[Necrobot v0.8.6] <name>*"
      • Set criteria as "Window exists"
      • Set action as "Terminate application"
      • Schedule your event e.g 03,08,13,18,23.

    5. Create a new event for starting the Necrobot (2nd account)
      • Set event type as Run Application, choose the application path.
      • Schedule your botting time "Every Hour / Selected Minutes" e.g. 03,08,13,18,23.

    6. Create a new event for terminating Necrobot after certain time
      • Set the event type as "Window Watcher"
      • Set or search for caption to look for. Should be "[Necrobot v0.8.6] <name>*"
      • Set criteria as "Window exists"
      • Set action as "Terminate application"
      • Schedule your event e.g 00,05,10,15,20.

    7. Run/trigger all the event you just created.



    Ok, what this does is it will look for location feeder and if the application not found, it will start it. Then it will auto start and terminate Necrobot within the given time schedule.
    Example schedule above is as follows with rest time it bot for 2nd account:
    Code:
    Botting from 00:00 - 03:00
    Rest 03:00 - 05:00
    Botting from 05:00 - 08:00
    Rest 08:00 - 10:00
    Botting from 10:00 - 13:00
    Rest 13:00 - 15:00
    Botting from 15:00 - 18:00
    Rest 18:00 - 20:00
    Botting from 20:00 - 23:00
    Rest 23:00 - 00:00

  4. #34
    ThePaleDev's Avatar Corporal
    Reputation
    13
    Join Date
    Aug 2016
    Posts
    18
    Thanks G/R
    0/12
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    You could check my thread. I added an Auto Account Switcher there. This will switch account every certain hour you specified. It could also hide/show the necro window hehe


  5. Thanks nyunyu (1 members gave Thanks to ThePaleDev for this useful post)
  6. #35
    Ev0luti0n's Avatar Member
    Reputation
    2
    Join Date
    Aug 2016
    Posts
    15
    Thanks G/R
    0/1
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by ThePaleDev View Post
    You could check my thread. I added an Auto Account Switcher there. This will switch account every certain hour you specified. It could also hide/show the necro window hehe
    The only issue I have with creating a system task to start Necro or using your program is that the start/stop time will be the same. If you can add a function to create random start/stop times, your tool would be perfect. It is still a nice tool that will work for most, I just wanted something different.
    Thanks for sharing and KEEP up with the god work and contributions to the forum


    ....In case anybody is interested, you can hide the CMD window of the .bat by creating a simple .vbs file in notepad.

    1-Open notepad
    2-Type in the following: CreateObject("Wscript.Shell").Run "your_batch.bat",0,True
    3-Replace the name of your bat file where it says your batch and make sure to keep the quotes
    4-Name it Botcontrol.vbs and save as all files
    EX.: CreateObject("Wscript.Shell").Run "botcontrol.bat",0,True
    5-Run the .vbs and it will run the bat and keep it hidden in the background. The necrobot.exe will still be seen

    Thanks to everybody who has contributed to this post.


    LAST QUESTION:

    If anybody knows how to add random times that vary from 2-4 hours instead of o seconds to 4 hours, please post or explain how to come up with the numbers to enter in the .bat
    Last edited by Ev0luti0n; 08-16-2016 at 02:21 PM.

  7. #36
    killerfromsky's Avatar Master Sergeant
    Reputation
    12
    Join Date
    Jul 2016
    Posts
    108
    Thanks G/R
    4/11
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by EnzaDenino View Post
    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:
    What are the -f and -IM parameters stand for?

Page 3 of 3 FirstFirst 123

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:24 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