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. When you get two bans at the same time. My appeal: "I am an honest player of this game runescape, never have I used any kind of bot, quite frankly I don't even know what a bot is, so please, fix your stupid mistake, and un-ban me you hoe"
    1 point
  8. LOL Apple154, 155, 156... Applesauce... lol
    1 point
  9. 1 point
  10. Hey there! I'm guessing you're trying to learn how to write scripts for OSBot. You should take a look at this section, they include YouTube tutorials, and you can always PM the persons who made the videos if you need a more in-depth answer! Also have a look at this, it will be your best teacher online
    1 point
  11. It would also be possible that OSBot.org's database containing forum usernames/passwords/emails gets hacked so if your email/pass on this forum is the same as your RS details you could be hacked as well. BugAbuse members do it all the time.
    1 point
  12. I'm happy that Jagex gave us OSRS, but today I was having an arguement with some noobs on how they want 08-09 content to appear in osrs. GOD DAMN! They should be happy with what they recieved, rather than just wanting more. makes me so angry to see the idiots out there.
    1 point
  13. 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% Of course it's near 0%, just playing devils advocate to not entirely rule out the possibility :P. Thanks for the comforting words.
    1 point
  14. Thanks Kati. After Maxi said to use names, I've been using names for the most part. So unless they change their names, which I hope they don't, I should be fine.
    1 point
  15. 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
  16. Nice guide! Also for the non-devs who are wondering what obfuscated means ... It simply means that it makes decompilation difficult (programmers obfuscate their codes to protect their work)
    1 point
  17. Love the title of this thread Nick Yeah I definitely support the idea! Would love to see @osbot.org emails!
    1 point
×
×
  • Create New...