Jump to content

Honeycomb

Members
  • Posts

    40
  • Joined

  • Last visited

  • Feedback

    0%

Everything posted by Honeycomb

  1. I'm on a MacBook Pro with Java 7 Update 21 and OS X 10.7.5; script pausing and stopping doesn't work if multiple tabs are open. No errors are thrown... It just doesn't work...
  2. Please fix the tabs or allows us to launch multiple clients... Right clicking a tab, when multiple tabs are open, crashes the bot... Trying to close a tab, when multiple tabs are open, crashes the bot... Trying to stop or pause a script, when multiple taps are open, doesn't work (and screws up the bot). So, yeah... Unless you only start scripts, trying to run multiple accounts is too labor intensive because the entire client must be restarted each time a single tab runs into an issue.
  3. Honeycomb

    BETA v1.6.12

    What happened to 1.7.1?
  4. Restarting my laptop fixed this...
  5. Yeah, I just removed sleep... We'll see...
  6. Well, it does... private void logout() throws InterruptedException { if (currentTab() != Tab.LOGOUT) { openTab(Tab.LOGOUT); this.IRT = random(1024, 2048); sleep(this.IRT); } selectInterfaceOption(182, 6, "Ok"); sleep(random(2048, 4096)); stop(); }
  7. What's the method to disable OSBot's autologin random? I have a method that logs out and stops my script, but OSBot's autologin random logs my character back in...
  8. I believe it has an animation, and I've noticed that it has a verticeCount > 128 (due to the added animation), while regular rocks have a verticeCount < 128, so I tried while (client.getMyPlayer().isAnimating()) { if (closestRock.getModel().getVerticeCount() > 128) { walkMiniMap(new Position(client.getMyPlayer().getPosition().getX() + random(-1, 1), client.getMyPlayer().getPosition().getY() + random(-1, 1), 0)); this.MRT = random(2048, 4096); sleep(this.MRT); } } , but it isn't working... Can you point me to the method that allows me to get the object that my character is interacting with?
  9. What's a good method for avoiding Exploding rocks?
  10. Yeah, I used another method to find the values I wanted. I guess I wasn't using the correct values earlier. Great bot; I'll probably be purchasing VIP soon.
  11. Are there any WORKING methods to adjust the camera? I want a top-down view, and a couple methods in the API seem to not do anything... My GPU goes crazy until "[DEBUG][]: Switched canvas mode to MULTITHREADED." hits...
  12. Should for (NPC npc : client.getLocalNPCs()) { if ((npc != null) && npc.getName().equals("Evil chicken") && npc.getFacing().equals(client.getMyPlayer())) { // TODO flee } } work?
  13. I'm writing an autofighter and while testing it, my character just sat there fighting an Evil Chicken... Can I add something to my script that allows OSBot to handle it, or do I have to handle it myself? Nevermind... It just solved Mysterious Old Man... I guess Evil Chicken is broken...
  14. It takes multiple tries to connect to the "remote server." As a free user, If you close a single tab, then try to open a single tab, the bot tells you that you can't open anymore tabs.
  15. Why does this bot use more GPU resources than a basic Runescape client? My GPU goes crazy whenever I start this bot... You'd think it's mining bitcoins or something...
×
×
  • Create New...