Jump to content

Dreamliner

Trade With Caution
  • Posts

    1642
  • Joined

  • Last visited

  • Days Won

    4
  • Feedback

    0%

Everything posted by Dreamliner

  1. public void walkTowardPosition(Position p) throws InterruptedException { if (this.myPlayer().getPosition().distance(p) > 15) { int d = random(12, 16); double scale = (double) d / this.myPlayer().getPosition().distance(p); Position mypos = this.myPosition(); int dx = p.getX() - mypos.getX(), dy = p.getY() - mypos.getY(); int x = mypos.getX() + (int) (dx * scale), y = mypos.getY() + (int) (dy * scale); Position dest = new Position(x, y, mypos.getZ()); MouseDestination md = new MinimapTileDestination(this.bot, dest); if (!this.client.getDestination().equals(dest)) { this.client.moveMouseTo(md, false, true, false); } if (this.myPlayer().isMoving()) { int degrees = (int) Math.atan2(dy, dx); this.client.rotateCameraToAngle(degrees); } sleep(random(600, 1200)); } else { MouseDestination md = new MinimapTileDestination(this.bot, p); if (!this.client.getDestination().equals(p)) { this.client.moveMouseTo(md, false, true, false); } } }I found myself needing to check for objects while I was walking (performance reasons) so I created this.Basically it projects your position on a straight line and tries to traverse it in increments of 12-16 tile intervals (size of minimap) Works pretty flawlessly. Edit: it may be confusing, but this must be called a bunch of times to work. It basically clicks in the spot on the minimap that it calculates when it's called.
  2. System.out.println("Post Count");
  3. 3 months late doesn't constitute me buying VIP again. I guess I'll just have to wait.
  4. Haswell saves energy by the technology in the transistor. There are a few new instructions, but that won't have any use with programming with java. Assuming oracle know what they're doing, they;ve already incorporated Haswell's new instructions into their code already. tl;dr - haswell has no affect on osbot also haswell desktop chips use 20% more power than IB
  5. Google Translate: Can I pay $100 to use the OSBot 2 client instead of donating out of the goodness of my heart?
  6. Maybe you should look deeper into the method and find the areas that draw players, npcs, etc, so that we could disable them individually
  7. Then why the hell are you even posting? OT: Great methods. Mine look similar for my fast actions with banking/items
  8. tl;dr this will always stay in beta. OSBot 1 is still in beta..
  9. Step 1: Put a bug report system into OSBot 2. Step 2: Release OSBot 2 to the public. Step 3: Leave OSBot 1 usable until OSBot 2 is stable. Step 4: ???????? Step 5: Profit from something that would have been released 3 months ago if they hired more people to help write the client.
  10. OSBot 2 Private ALPHA* Information! FTFY http://en.wikipedia.org/wiki/Software_release_life_cycle#Alpha
  11. Dreamliner

    IM SERIOUS

    You remind me of the kids whose daddy bought them an Audi.
×
×
  • Create New...