Jump to content

House

Trade With Caution
  • Posts

    510
  • Joined

  • Last visited

  • Feedback

    97.4%

Everything posted by House

  1. yay i'm not retarded compared to all the other retards as well
  2. people are more willing to help if you post your code. I can help modify your code if it helps but you need to include it here
  3. here to confirm legit top asshole around
  4. remove the main() method from your gui and create an instance in your script class. you can then reference the gui from there and its variables.
  5. What is getting baker acted?
  6. we don't know how it works exactly. http://osbot.org/forum/topic/106931-sharing-my-ban-experiences/ I would say this is the only good guess / info about the system
  7. Fine to continue as in the chances of bans have not changed because of the ban on his other account.
  8. Adding them might help estimate worth
  9. Probably fine unless you bot multiple accounts all the time.
  10. Realist does UK bank transfers, in my signature
  11. House

    @saiyan

    Dude you are missing out big time from the chatbox
  12. works as of today It was something else they changed i have read about it too, don't remember what exactly Note: from my experience when you tell the script to log out with the osbot api the actualy loop will pause too meaning to re-enable login manager to log in you have to find a way to check when to re-enable. option 1) use your paint loop to check option 2) create a "login manager" thread which checks when to log in.
  13. I think you have the wrong idea. Although your reaction of self defense might be a result of some insecurities. I was pointing out that those two words you used are the solution. You need to override the break handler. public void enableLoginManager() { script.log("Enabling Login Manager!"); script.getBot().getRandomExecutor().registerHook(new RandomBehaviourHook(RandomEvent.AUTO_LOGIN) { public boolean shouldActivate() { return super.shouldActivate(); } public boolean shouldActivatePreLoop() { return super.shouldActivatePreLoop(); } public boolean shouldActivatePostLoop() { return super.shouldActivatePreLoop(); } }); } public void disableLoginManager() { script.log("Disabled Login Manager!"); script.bot.getRandomExecutor().registerHook(new RandomBehaviourHook(RandomEvent.AUTO_LOGIN) { public boolean shouldActivate() { return false; } public boolean shouldActivatePreLoop() { return false; } public boolean shouldActivatePostLoop() { return false; } }); }
×
×
  • Create New...