Jump to content

Leaderboard

Popular Content

Showing content with the highest reputation on 07/13/13 in Posts

  1. All the accounts have been banned, no need to worry ^_^
    5 points
  2. Due to the the recent RuneScape update, various randoms were broken. The following release features: Strange plant fix Frog queen fix Ability to disable specific random event solvers via GUI (go to settings menu) Built-in run away from combat handler (only runs away from the following monsters at the moment: "Rock Golem", "Tree Spirit", "Shade", "Evil Chicken", "Swarm", "River Troll", "Strange Plant") Mouse has been tweaked Remember we encourage you to disable randoms if they interfere with your script. Such as the run away from combat handler or talker handler when using a PK helper script. Note, the following randoms might still be broken: Drill demon (works half of the time) Pinball (broke due to RuneScape's recent update according to various sources) Some other randoms may have been affected as well Thanks, Sincerely, Laz and the OSBot Team. To download, visit our homepage at http://osbot.org
    2 points
  3. I can't vote because I made the poll, lame.
    2 points
  4. http://www.youtube.com/watch?v=njfj6KwEAfg Looks like the best game ever made, along with GTA 5.
    2 points
  5. public boolean WalkAlongPath(int[][] path, boolean AscendThroughPath, int distanceFromEnd) { if (distanceToPoint(AscendThroughPath ? path[path.length - 1][0] : path[0][0], AscendThroughPath ? path[path.length - 1][1] : path[0][1]) <= distanceFromEnd) return true; else { WalkAlongPath(path, AscendThroughPath); return false; } } public void WalkAlongPath(int[][] path, boolean AscendThroughPath) { int destination = 0; for (int i = 0; i < path.length; i++) if (distanceToPoint(path[i][0], path[i][1]) < distanceToPoint(path[destination][0], path[destination][1])) destination = i; if (script.client.getMyPlayer().isMoving() && distanceToPoint(path[destination][0], path[destination][1]) > (script.isRunning() ? 3 : 2)) return; if (AscendThroughPath && destination != path.length - 1 || !AscendThroughPath && destination != 0) destination += (AscendThroughPath ? 1 : -1); try { log("Walking to node:" + destination); script.walk(new Position(path[destination][0], path[destination][1], 0)); Thread.sleep(700 + MethodProvider.random(600)); } catch (InterruptedException e) { e.printStackTrace(); } } private int distanceToPoint(int pointX, int pointY) { return (int) Math.sqrt(Math.pow(script.client.getMyPlayer().getX() - pointX, 2) + Math.pow(script.client.getMyPlayer().getY() - pointY, 2)); } This allows you to have your character walk along a path, starting at any point along the path. It will walk like a human, not like a bot. This is how you'd use it: private int[][] path1 = new int[][] { { 3206, 3209 }, { 3215, 3211 }, { 3217, 3218 }, { 3225, 3218 }, { 3235, 3220 }, { 3242, 3226 }, { 3252, 3226 }, { 3251, 3235 }, }; public void walkToGoblins() { WalkAlongPath(path1, true); } public void walkToBankFromGoblins() { WalkAlongPath(path1, false); } public void walkToGoblinsThenAttack() { if(WalkAlongPath(path1, true, 1)) //The 1 is the distance away from destination state = State.AttackGoblins; } Enjoy.
    1 point
  6. Wut about @@Ely? is she a super mod??? Ely is mysterious O__O #MikasaForStaff2013 :p
    1 point
  7. Mikasa for staff 2013, then I vote for him.
    1 point
  8. This should be good then! You wanna play?
    1 point
  9. I only use one tab at a time usually, unless I have facebook up or something. I have pretty fast internet also, I don't know how this is happening. What browser are you using? Google Chrome, I've tried other browsers also. Does the chat use java? Would I need to update that maybe? Or maybe my Adobe Flash? i think it uses javascript so you may need to update the JDK and JRE? could always try it
    1 point
  10. Yes, this is what I said earlier
    1 point
  11. Frog Random Freaky Forrester fail 100% of time. i keep needing to go check my bots every 15 min. also, the new human like mouse thing you guys put it, kinda ironic for the first time EVER in my year+ of botting 15+ accounts 24/7, i got 3 accounts banned first day of release. its cuz in reality its not human like. when they try n home tele for your super spinner script Laz, it tries to home tele like 3x, banking it misclicks bank like 15x, going down stairs 5-10 times. Failing frog random+Trying to home tele in Freaky Forrester random+1k+ super speed misclicks got me 3 accounts banned in 1 night. go back to the way the mouse used to be. you guys work hard and i appreciate all the work you do! dont get me wrong :P but the new mouse thing is a fail.
    1 point
  12. i know what you mean. as soon as youre in that ''state'' your screwed. cant get out. you cant do anything. just so fukin high..
    1 point
  13. Anyone heard about that game? I hope I will see it on TPB soon :P https://www.youtube.com/watch?v=IOglladanR4
    1 point
  14. maze, freaky forester, and this demon soldier ( dont remember the event's name) works only 50% it just dont recognize them..
    1 point
  15. my question is what happened to the first 122 apples?
    1 point
  16. try this BufferedImage capture = client.getColorPicker().getBufferedImage() no point in taking the whole screen and the client might not even be up.
    1 point
×
×
  • Create New...