Jump to content

BobSmokey

Trade With Caution
  • Posts

    16
  • Joined

  • Last visited

  • Feedback

    0%

About BobSmokey

Profile Information

  • Gender
    Male

Recent Profile Visitors

The recent visitors block is disabled and is not being shown to other users.

BobSmokey's Achievements

Newbie

Newbie (1/10)

3

Reputation

  1. Don't bot any public scripts at least.... And agility should also never, never be botted
  2. What I am doing is with a MySQL databse and PHP webserver. The bots send requests with information to the PHP server, then the mule reads that information on whether trade=true and readyToTrade=true. Then my mule logs in, trades, and logs back out. It took me like 100 tries this week, but the mule is finally bug free. Good luck!
  3. Best way to do this without freezing the whole script when it fails is this: package mac; public interface Condition { boolean evaluate(); } public boolean waitUntil(Condition c, int interval, int tries) throws InterruptedException { while (!c.evaluate()) { sleep(interval); if (tries == 0) return false; tries--; } return true; } and then to use these waitUntil(() -> widget.isVisible(), 200, 50); if(!widget.isVisible()) return; //or whatever //then here your amazing code Which will try to see if the widget is visible every 200ms and try 50 times.
  4. I will be running a bot farm of 20-40 bots. (depending on what the server can handle) I have the feeling this server will be CPU bottlenecked since it has enough RAM for 40 bots. (right?) I have the same CPU on my own pc, but only 8GB of RAM so I cannot really stress test A cheaper option would be But the cheaper option will not have SSD (which helps with dumping RAM or something? tell me if you know about this) and it's CPU is not as good. Since I am f2p suicide botting, my bots will not earn much per hour. So having 20 bots on the expensive server would really not be good enough for me If you're willing, you could take a loot here for other options to recommend: https://www.ovh.nl/dedicated_servers/all_servers.xml Please tell me your thoughts! PS I should mention they will be running on lowcpu and probably lowresource mode with seperate proxies (per 5 or 10 accs)
  5. Dude your scripts are suBLIME dude! Love the AIO
  6. Could you tell me which line is RatCatcher.java:131
  7. Hey there, is there a way to close the client after a script ends? The script is not mine (khal tutorial island) so I cannot use System.exit(); I am launching it using Runtime.getRuntime().exec() in java from a gui [Edit] It would also be nice if I could detect the script has ended to update my database that the account has finished tutorial island Thanks in advance
  8. Hello there, I am extremely satisfied with some script (khal tutorial island) and would like to rate it. Where do I do this? Thanks
  9. Hey there, I am soon going to rent a dedicated server from ovh. I read somewhere, however, that someone was not able to enable desktop view on their dedicated server. Is this possible? Even if I use vncserver?
  10. Is there any other way to keep track of bots on "-allow lowresource" mode?
  11. I know this is a big no-no, but you guys seem to be the real pro's. At least one of you should know how to fix this issue:
  12. BobSmokey

    help

    i need good anti ban does check woodcut xp good????
  13. String botCommand = "java -jar \"Osbot 2.5.31.jar\" " + "-login " + osbotLogin + " -bot " + bot + " -script " + script + " -world " + world + (extraParams != null ? " " + extraParams : ""); Process pr = rt.exec(botCommand); BufferedReader input = new BufferedReader(new InputStreamReader(pr.getInputStream())); String line; while ((line = input.readLine()) != null) { //if (line.equalsIgnoreCase("Starting script...")) // break; System.out.println(line); } UPDATE: The reason why I want this is to keep track of bots on "-allow lowresource" mode. Is there a better way? Old post: When I run this, the bot client starts and stops before the login handler comes in. I run this from eclipse and when I disconnect the client from eclipse, it continues. if I add the lines that I commented out, then the script does continue. So this while loop is the cause. How do I make this work and still be able to get the output? Thanks in advance
  14. ts not fail proof but I could flag items that are 100% surely not dropped by my monsters. thanks!
  15. Hey guys. I would like to make a script that kills a monster and then picks up valuable drops. The problem, however is that I am ironman. I need a way to idenify whether a drop is owned by my account. How would I do that? [Edit] Osbuddy pro is able to identify personal drops.
×
×
  • Create New...