Jump to content

Leaderboard

Popular Content

Showing content with the highest reputation on 07/13/13 in all areas

  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. So lately ive been having a problem with withdrawing a certain item that isn't in view, when the bank is open. I heard around the forum of other people having this same issue. But finally i got a solution. if (client.getBank().isOpen()){ if (client.getBank().contains(Bucket)) { client.getBank().scrollToSlot(client.getBank().getSlotForId(Bucket)); client.getBank().withdraw5(Bucket); sleep(3000); } } or for even a shorter code: int B = this.client.getBank().getSlotForId(Bucket); if (client.getBank().isOpen()){ if (client.getBank().contains(Bucket)) { client.getBank().scrollToSlot(B); client.getBank().withdraw5(Bucket); sleep(3000); } }
    1 point
  7. Wut about @@Ely? is she a super mod??? Ely is mysterious O__O #MikasaForStaff2013 :p
    1 point
  8. Mikasa for staff 2013, then I vote for him.
    1 point
  9. Because us botters are the lazy druggies We can't get high whilst playing runescape, well we can but I get bored very easily of it! Plus botting helps fund our expensive habbits!
    1 point
  10. This should be good then! You wanna play?
    1 point
  11. 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 I will try this, thanks! I just updated my JDK and JRE and it didn't help
    1 point
  12. Yes, this is what I said earlier
    1 point
  13. 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
  14. 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
  15. Yup been there....... That DXM is fucking mind fuck tho........ i was soooooooooooooooooooooooooooooooo high on that shit...
    1 point
  16. Anyone heard about that game? I hope I will see it on TPB soon :P https://www.youtube.com/watch?v=IOglladanR4
    1 point
  17. maze, freaky forester, and this demon soldier ( dont remember the event's name) works only 50% it just dont recognize them..
    1 point
×
×
  • Create New...