Jump to content

Soldtodie

Members
  • Posts

    505
  • Joined

  • Last visited

  • Feedback

    0%

Everything posted by Soldtodie

  1. With this i can terminate the random solver in the mid of the execute?
  2. For instance in the mid. this.getBot(). getRandomExecutor().terminate(); This doesn't work but with .interrupt() the random script stops for a moment and start again.
  3. I don't want to change the random. I want to stop it.
  4. Yeah dog_ give this black dog a side kick!
  5. How can I stop a random event script. I tested this but it doesn't work. RandomExecutor re = new RandomExecutor(getBot()); re.interrupt(); re.terminate();
  6. Lol, thanks i forgot something.
  7. Can anyone give me an example for two a new class in a separate file because i don't know why it doesn't work. Only a new class with a log(); and a script that calls that. Thanks.
  8. for(Behavior be : antiBan.getBehaviors()) { if(be != null) { antiBan.unregisterBehavior(be); } } Edit: Didn't saw Swizzbeats post.
  9. How can i deactivate the client antiban? Thanks.
  10. You wrote scripts for another bot and not for osbot.
  11. Till what time you need this? And when we will make this for you it's not flashy?
  12. Use google you can make this alone in 1 hour.
  13. Int[] var = new int[] {22, 444, 777} ^^ but this works too.
  14. Int[] var = new int[] {22, 444, 777}
  15. Soldtodie

    OSBot 1.8.1-6

    Please update the thread name.
  16. Soldtodie

    SMiner 3

    Please close! Released: http://osbot.org/forum/topic/47651-sminer-3/
  17. No this is a competition when a free script is better than your premium script you must think about that what you did wrong.
  18. I am not a leecher. I make scripts but i hate it when scripters who want to make premium scripts for free it can't make it for free. We are not any other botting site. We are OSBot!
  19. remove of free versions I am absolutely against this!
  20. Then change this too:
  21. http://osbot.org/forum/topic/33026-checking-if-item-is-selected-rev-35/
  22. Here a little snippet: ArrayList<Integer> configs = new ArrayList<Integer>(); @Override public int onLoop() throws InterruptedException { if(configs.size() == 0) { log("Start! Now click the pause button!"); for(int index = 0; index < 2000; index++) { int config = client.getConfig(index); configs.add(config); } } else { for(int index = 0; index < 2000; index++) { int config = client.getConfig(index); int sConfig = configs.get(index); if(config != sConfig) { log(index + " = " + sConfig + " : " + config); } } log("End!"); configs = new ArrayList<Integer>(); } return 3000; } With this snippet you can get the changing config numbers and values. Start the script wait until you can see Start! in the log then click instantly pause script. Then you must change anything for example you activate running. After that you click on continue script and the script will give you an output with the numbers.
×
×
  • Create New...