Jump to content

Honeycomb

Members
  • Posts

    40
  • Joined

  • Last visited

  • Feedback

    0%

Profile Information

  • Gender
    Male

Recent Profile Visitors

924 profile views

Honeycomb's Achievements

Bronze Poster

Bronze Poster (2/10)

0

Reputation

  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?
×
×
  • Create New...