Jump to content

Script Kid

Members
  • Posts

    45
  • Joined

  • Last visited

  • Feedback

    0%

Everything posted by Script Kid

  1. Before trying to write any scripts learn Java until you are familiar with the syntax and you have a solid understanding on how programming works. You don't need to buy any books or sign up for any paid courses, since you can find everything that you need online for free.
  2. Let me get this straight: You've ran a substantial farm in the past, but now you can't do any basic research to find some fucking proxy providers. You left the United States in order to start a bot farm, because living there was apparently preventing you from doing so. You are glad that you live 5 minutes away from the beach and you now have a nice place to hang out with girls, in November when there are freezing temperatures. Nice.
  3. Does this happen because the JVM instance ends before that method is called?
  4. no that would be 2 simple @espioz1 did you manage to find out your username?
  5. Learning to code implies that you will do a lot of research on your own. If you are starting a new topic and asking people to link you to this page (https://osbot.org/forum/forum/250-tutorials/) instead of using the search button, then:
  6. How are we supposed to answer this question? You haven't told us how are you running the accounts (whether or not you're using proxies, different computers etc).
  7. Nobody at Jagex has the time to systematically monitor the forums. But they may visit the site occasionally, and if they happen to find strong evidence that someone has been naughty....
  8. @Charlotte I can't run the script java.util.NoSuchElementException: No value present at java.util.Optional.get(Unknown Source) at Main.Main.onStart(x:60) at org.osbot.rs07.event.ScriptExecutor.iiiIiiiIIIiI(bm:19) at org.osbot.rs07.event.ScriptExecutor.start(bm:169) at org.osbot.Z.run(rp:164) at java.util.concurrent.ThreadPoolExecutor.runWorker(Unknown Source) at java.util.concurrent.ThreadPoolExecutor$Worker.run(Unknown Source) at java.lang.Thread.run(Unknown Source)
  9. Just checked it & it seems legit not sure if its my retard decompiler but the variable winesCollected is of type long instead of int, which means that a shit ton of wines are expected to be collected. GJ @Spider
  10. void randomDelay(float min, float max){ int random = (int)(max * Math.random() + min); try { sleep(random); } catch (InterruptedException e) { // TODO Auto-generated catch block e.printStackTrace(); } @Nikoman you don't need to create a whole new method just for this, you don't need to declare a local variable and you don't need to use the Math class to get a random number. Everything can be done using the OSBot API in one line: sleep(random(min, max));
  11. Try this: https://osbot.org/forum/topic/87717-fixing-osbot-not-starting/
  12. Botting breaks the Jagex TOS and breaking the Jagex TOS is fun.
×
×
  • Create New...