Jump to content
Frequently Asked Questions
  • Are you not able to open the client? Try following our getting started guide
  • Still not working? Try downloading and running JarFix
  • Help! My bot doesn't do anything! Enable fresh start in client settings and restart the client
  • How to purchase with PayPal/OSRS/Crypto gold? You can purchase vouchers from other users
  • Logging out for 16 hours?


    sergbot

    Recommended Posts

     if (cuttoff == -1) {
         cuttoff = System.currentTimeMillis() + 21600000;
    
     }
     if (cuttoff < System.currentTimeMillis()) {
    
         log("sleeping for 16 hours");
         sleep(64800000);
    
     }

    I guess normally youd have the wrapper manage the accounts, but i wanted to log off for 16 hours a day for the experimental account.

    trouble is that dreambot keeps logging back in, how do i tell it to stop

     

    Link to comment
    Share on other sites

    1 hour ago, NEWPROG said:

    You need to update the way the LoginSolver works. Check the LoginSolver class in Dreambot Docs.

    Thanks

    if (cuttoff == -1) {
         cuttoff = System.currentTimeMillis() + 21600000;
    
     }
     if (cuttoff < System.currentTimeMillis()) {
    
         log("sleeping for 16 hours");
        
         if (getRandomManager().getSolver("LOGIN").isEnabled()){
             getRandomManager().disableSolver("LOGIN");
         }
         sleep(64800000);
         if (!getRandomManager().getSolver("LOGIN").isEnabled()){
             getRandomManager().enableSolver("LOGIN");
         }
    
     }
    Link to comment
    Share on other sites

    Archived

    This topic is now archived and is closed to further replies.

    ×
    ×
    • Create New...

    Important Information

    We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.