Jump to content

Leaderboard

Popular Content

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

  1. Community, RuneScape has updated. Luckily, we did not have to make any changes to our client to cope with the update. However, I've noticed that many NPC ids have changed. We suggest to all script writers that they use different methods of finding an npc (using names) as it appears Jagex is constantly changing ids for whatever reason. If you find a script is no longer working, this is most likely the issue. I've also been notified that certain object ids have changed. Thanks, The OSBot Staff Team
    5 points
  2. 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.
    3 points
  3. I live in the United States. This is my date format.
    3 points
  4. Earlier today a DDOS attack knocked us offline temporarily. We have been working on preventing issues such as these. Recently we just implemented a new security system for blocking IPs that aren't routed through Cloudflare's proxy servers. We've been working on implementing other firewall rules and ways that prevent us from being offline. Sincerely, the OSBot Team.
    3 points
  5. 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
  6. You are the imposter
    2 points
  7. Been requested to me a few times, So figured I might give it a go in a week or so when I've finalised my year at uni. Server would be your basic spawn/pk server for a bit of fun, would try to get really decent combat etc and have a general laugh whilst botting. If this gets a decent amount of support then I will most likely give it ago. I have done a lot of work on rsps, so it should be a fun project. Let me know what you think.
    1 point
  8. I read the forums guidelines and didn't read anything about vouches ... Back in the near beginning of the feedback system, all vouches threads were deleted and we weren't allowed to use them Awesome, so we're stuck with having 1 feedback per person... Very useful when you focus on just one service & have several fix buyers/suppliers Hey man, you weren't the one w/ 90 feedback and had over 50 deleted and got left w/ 40 left
    1 point
  9. I read the forums guidelines and didn't read anything about vouches ... Back in the near beginning of the feedback system, all vouches threads were deleted and we weren't allowed to use them Awesome, so we're stuck with having 1 feedback per person... Very useful when you focus on just one service & have several fix buyers/suppliers
    1 point
  10. maybe its apple :P maybe its apple :P
    1 point
  11. If you read, you would have noticed the...
    1 point
  12. One of my top customers. =D 20% Off all your next orders.
    1 point
  13. This release contains the following new features: Improved CPU usage when interacting with entities (most notably larger ones) More human-like mouse movements Interacting with moving entities is more human-like now The bot now clicks on interfaces more towards the center than the edges (Again more human-like) A bug with closing open interfaces when interacting with entities has been fixed Various other CPU performance enhancements Thanks, Sincerely, Laz and the OSBot Team. To update, download the newest OSBot v1.7.18 build from our homepage at http://osbot.org
    1 point
  14. There is no way a hacker could steal your RS Account information. We do not store it in our servers at all. We do not send it through a connection in any way. If someone "hacked our client," they would have to first steal our unobfuscated client directly off of the developers computers, change the code, remove our security methods, then upload the link via the site. The chances of this happening are about.. 0%
    1 point
  15. 1 point
  16. For me, inner matters, not the look. But if I would; brown hair kinda muscly blue eyes And the inner: Smart Sense of humour Kindly Educated Loving. Oh yeah, im gay btw.. no hate. homosexual*
    1 point
  17. I notice everyone keeps having Smart in their post when they define beautiful. You guys stop it tehehehe.
    1 point
×
×
  • Create New...