Skip to content
View in the app

A better way to browse. Learn more.

OSBot :: 2007 OSRS Botting

A full-screen app on your home screen with push notifications, badges and more.

To install this app on iOS and iPadOS
  1. Tap the Share icon in Safari
  2. Scroll the menu and tap Add to Home Screen.
  3. Tap Add in the top-right corner.
To install this app on Android
  1. Tap the 3-dot menu (⋮) in the top-right corner of the browser.
  2. Tap Add to Home screen or Install app.
  3. Confirm by tapping Install.

Leaderboard

Popular Content

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

  1. You can write a mini "Terms of Service" of your own when negotiating on PayPal. Basically, contacts can be by word of mouth, or written. By the wonder of the internet, you can do this via paypal. Steps: 1. do NOT let them send you money, deny it instantly. 2. REQUEST Money from them for "Service" 3. Paypal will ask you what the "Title" of your request will be. This is the title of the payment request they get in their email. To make this work you MUST make the Title: "TERMS OF SERVICE - READ BEFORE PAYMENT" 4. Put in the "Comments/Description" your own "Terms of Service" which should read: "By accepting the payment for $XXX.XX USD, you agree to the following terms of service: 1. You have received ALL services and goods in question, and the sale is FINAL. 2. There are NO refunds, returns, or charge backs. 3. You will not create false PayPal disputes regarding this transaction." 5. Instruct the person to READ the email, and screenshot that you've done so. 6. Do NOT give him the items before the trade, only after the payment has been made. I've had NUMEROUS PayPal disputes closed instantly when I bring this up to PayPal. It is a legal binding contract. (I did not know where the right section was for this so I put it here) Hit the like button if this helped you any also (This does NOT work with Credit/Debit cards)
  2. 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
  3. 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.
  4. I live in the United States. This is my date format.
  5. 3 points
    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.
  6. Should switch prayers at jad, untested and wrote it notepad++ in 5mins xD was meant as a joke but it should work Inspiration: [01:42:05] Cory Nelson: naa jad prayer switcher be easy as fuck [01:42:05] Cory Nelson: xD [01:42:32] Kyle: yea, it would, cant you just get his anim and then switch it to that [01:42:39] Cory Nelson: yeh [01:43:00] Kyle: thought so. Lol. It would have to be for mains wouldnt it? or would doing a pure be possible [01:43:39] Cory Nelson: prayer switcher is all it would have to doo [01:43:42] Cory Nelson: and eat at low hp [01:43:49] Cory Nelson: brew* [01:43:54] Cory Nelson: and restore [01:44:50] Kyle: ah. So you'd almost be able to do it without doing jad lol [01:47:52] Cory Nelson: sec [01:51:42] Cory Nelson: http://paste.ee/r/QeBsg [01:51:49] Cory Nelson: untested [01:51:50] Cory Nelson: lol [01:52:00] Cory Nelson: needs anim id and name of jad [01:52:06] Kyle: god damn you cory [01:52:35] Smart: cory is too quick. [01:53:15] Cory Nelson: took 4min [01:53:16] Cory Nelson: lol [01:55:47] Cory Nelson: scratch that [01:55:50] Cory Nelson: has name and anims [01:55:51] Cory Nelson: http://paste.ee/r/NCnmI Source import org.osbot.script.Script; import org.osbot.script.ScriptManifest; import org.osbot.script.rs2.model.NPC; import org.osbot.script.rs2.ui.Prayer; import javax.swing.*; import java.awt.*; import java.awt.event.MouseEvent; import java.net.URL; import java.util.LinkedList; /** * User: Cory * Date: 20/06/13 * Time: 22:06 */ @ScriptManifest(name = "JadPrayerSwitch", author = "Cory", version = 1, info="Switches Prayer At Jad") public class JadPrayerSwitch extends Script { private int lastJadAnimation = -1; @Override public int onLoop() throws InterruptedException { NPC npc = closestNPCForName("TzTok-Jad"); if(npc.getAnimation() != lastJadAnimation) { lastJadAnimation = npc.getAnimation(); if(lastJadAnimation != -1) animationChange(); } return 0; } public void animationChange() throws InterruptedException { switch(lastJadAnimation) { case 2652: //jad range anim if(prayerTab.isPrayerOn(Prayer.PROTECT_FROM_MISSILES)) return; prayerTab.setPrayer(Prayer.PROTECT_FROM_MISSILES, true); break; case 2656: //jad mage anim if(prayerTab.isPrayerOn(Prayer.PROTECT_FROM_MAGIC)) return; prayerTab.setPrayer(Prayer.PROTECT_FROM_MAGIC, true); break; } } } Jar: https://www.dropbox.com/s/d0kbkb3i3341yzi/JadSwitcher.jar
  7. 2 points
    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
  8. 2 points
    You are the imposter
  9. Yeah, those of you claiming you were hacked by the client, you have no clue what you're talking about. Trust me, I've had experience with keyloggers and RATs, and the client does not execute any viruses when you run it. As for the script itself, I highly doubt it has any sort of malicious code, else it wouldn't be allowed in the script repository. Why would osbot risk their reputation by allowing any sort of malicious script to be hosted on their site? Also, there are such things as pinloggers, which record and send your bank pin to a hacker. I've used these myself. So there's really no merit to your "if you have a bank pin you're safe" theory, either. If this script was a danger to its users, I'm sure most of us would be cleaned by now, bank pin or not. I'd also like to point out that there are a plethora of ways to download a virus, even unknowingly. Downloading things from youtube, such as mouse recorders, might have viruses binded to them. The mouse recorder might even work as promised, while a RAT is being dropped off once you run it. You could have been phished, and believe me, there are some great looking phishing sites out there, with believable links and all. You could have visited what's known as a drive-by, in which you go to a site that asks you to run a java application in order to proceed, similar to what runescape asks the first time you run it. If you click "run", you've unknowingly downloaded a keylogger or a RAT to your computer. It can be super easy to miss if you don't know what to look for. And for my final point(I swear), viruses can be made to be extremely undetected. I mean CLEAN. By using what's known as a crypter, you can easily 'encrypt' your virus so that not even the best anti-virus programs can pick it up. If you have a good crypter, you could upload your virus to virustotal.com and still have it undetected. They can stay this way for weeks, especially if you don't update your anti-virus software often. So keep that in mind when you've been hacked, scan your computer, and don't find anything.
  10. Yeah, many other people too. If you don't have a bank pin set i noticed, the script hacks you. Nice lies to drive people away from using this script Actually, being 100% legit. Got hacked and this was the only script i had, same with others. I wasn't keylogged either. Just have a bank pin and bank your rares and you'll be fine. You had a keylogger. No i don't, it's just the script. Others have complained about it to. The only thing that i've downloaded had been this bot/script in the past 4 months. I'm not trying to scare anyone away from the bot, i'm just saying use a bank pin. Derp. I was hacked too, but it could have been preventable. Basic things to keep in mind are to have a bank pin, bank all rares whenever you find them or check back and see you have them, and not to run around with all of your valuables in your invent without changing your password after using the bot. I lost about 10m from not following the basics, but have learned and made 5m back already back with the same script I was hacked by, just using it smarter than before. Also, if you get hacked watch out. I had a perm mute from the guy advertising a cash for gold website, got it quashed, though. Very well put, i lost 30m due to my bank pin wasn't 100% set, it was pending. Now it's set and everything is fine. TO ANYONE READING THIS SET A BANK PIN ASAP or this script will hack you. Also, to add to this, the hacker did attempt to access my eoc account, but jag stopped that and gave me his IP. So to anyone concerned about their eoc account I'd bank everything and/or have Jag. I assume no matter what if you get hit by whoever is doing this you'll be hit by a mute, as they'll spam the cash for gold website they use. It won't show proof, so unclear what website was being advertised. you guys are so fucking stupid. Like on a scale from 1 to dumbfuck you guys are dumbfucks. this script does not hack you it has no capability to do so. this bot client will not hack you. you guys fucking downloaded something or had a java drive-by or typed in your info somewhere stupid. because all of you fucking noobs are dumb as fuck!!! im happy you guys got hacked it will teach you fucking retards a lesson BUT probably not you will get hacked again and blame it on the script fucking idiots.
  11. My current hobby is trying to get a job
  12. About: This script was made based on all the request around the forum. All it does is login, check for rares, if nothing is found, hop world. When it finds it, it takes it and also shows a tray message that it spotted it. Notes: I made script create a log file at C:\Users\YOUR_USER\OSBot\data\atrarefinder.log Since v2.0 of script, it works for every rare, thanks to Cory for the idea. Instructions: -Login, go to the spot of your choice. -Run the script. Download: http://osbot.org/forum/store/product/29-atrarefinder/ Current Version: 2.2 Previews: to (Older)
  13. QWarriors After seeing that the maker of the other script was banned and the script no longer worked, so I made one based off of how his worked for you guys. Up to 30k/hr! Features: I can add looting upon request. Current bugs: Here's how the paint works: Changelog: V3.1 - http://up.ht/1g1rXRx Top Proggy: Mikasa I'm now accepting donations since I just got scammed for all my cash. PM me for PP info if you want to donate. Enjoy and be sure to give me feedback!
  14. 1 point
    slime collector works hand to hand with Ecto-funtus prayer http://osbot.org/forum/topic/5058-ectofuntuns-prayer/ credits go to @Debot for paint. Items needed: Lots and Lots of Buckets, ghost speaking necklace, and ectophial. if you like this script then, click the like button. post all and any bugs found ASAP. Change log: V 0.1 release yo public, added paint. V 0.2 fixed chill status. Also the script will stop and log you out once your out of buckets. V 1.0 rewrote the whole script. Add walk path. removed short cut v 1.5 change all game object ids to names, fixed trap door and stairs. Future changes: turn your running on < its bugged atm Gui add short cut < need an account with 58+ agility. Pm if you have the requirement and would lend me your account for a few mins Bugs: scrolling to item is bugged. isn't my fault nor the script. link v 1.5: http://up.ht/16Rr2v0 Instructions: Start off in the bank of Ecto. Wear your ghost speaking necklace. "Have your ectophial in your inventory!". Start the script. Important: have your bucket, bucket of slime, near the top of the bank.
  15. Kokeis Yanille Miner Banks or drops any rock at the Yanille mining area. Feel free to leave suggestions. Supported rocks: - Clay, Tin, Copper, Iron, Mithril or Mithril & Iron. Features: - Anti-Ban. - Detailed paint. - Supports all pickaxes. - Banking. - Dropping. - Avoids smoking rocks. - Picks up pick heads and repairs them. - Runs away from combat randoms. - Drops random thrash items. - Eats Strange Fruits for some extra energy. Upcoming changes: - Change log: 1.3: Fixed IDs. 1.2: Fixed walking bug. Added option to mine Mithril and iron if there is no mithril available. If you select drop with this it will only drop the iron and bank the mithril. Added smoking rock detection. Also picks up pick head and repairs it. 1.1: Fixed Mithril Rock IDs 1.0: Release version. Screenshot's: GUI: DOWNLOAD v1.3 - 6th July Alternative download link
  16. Trades completed Order form : type of trade: Your Skype: Other Person's skype : Who is buying & Who is selling? : Do you agree to the TOS?:
  17. 1 point
    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.
  18. 1 point
    Suck today i just lost 3m, my white phat, all my dueling ring 200, 2k pure ess, dragon weapon, rune armour. It either has to be because of vinsert or simba getting hacked. I used the same password on both my email and forum account. They were able to log in to my email, change my password. and some how by pass the Jagex account guardian. I thought jagex account guardian was going to help me out. Man, its a piece of shii.
  19. 1 point
    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
  20. 1 point
    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
  21. maybe its apple :P maybe its apple :P
  22. Fishy:yes. Worried:no :P
  23. You need to email jagex, tell them that you don't have much time to train your account and ask if they let you bot your combat stats a little.
  24. 1 point
    If you read, you would have noticed the...
  25. 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
  26. MONTHLY. Hell, for a script i'd find it hard to pay that as a one time fee. Allow me elaborate - there are so many programs that can do slight variations of the same thing slightly better or slightly worse, that all run the same risk of the developer getting bored and stopping updates without ANY fees. For christ sake, i thought people wrote scripts as a personal development hobby, taking pride in their abilities when things turn out flawless. Not a half-assed attempt at running their own business. It looks worse than historic Sorcgarden scripts used to be, though granted it's the first for this particular bot. I appreciate these things do take effort, but you shouldn't be charging for them until they really are perfect, it's like people selling brand ripoffs for the full price, and the only stock they manage to release from their sweatshop hasn't undergone the final 50% of the manufacturing process, so you open a box with your exciting new shoes, to find out the nike symbol is stuck on with PVA glue and drops off the first time it rains, there's no inner sole in the damn thing and when you go to tie them on your foot you can't, because it's missing the shoelaces. Please put the effort in to make it flawless, and remember there's a reason people aren't charged for playing beta's - they're your lab rats you can afford to fuck up with, because at least you're feeding them so they appreciate the sentiment that you're trying to make the world a better place. Fuck up with the finished product people parted with their hard-earned cash for and suddenly you've got a lawsuit on your hands.
  27. Started to become quite annoying. Not liking the piling from these crabs.
  28. 1 point
    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
  29. 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%
  30. Our bot didn't hack you. Perhaps you should look into cleaning your computer because it definitely wasn't from here.
  31. It's super ban able. Jagex even knows when you run a .jar that has the word "bot" in the code.
  32. 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*
  33. I bot in populated worlds and I have never been banned in ~6 years. Since everyone says you're better off botting in non populated worlds, why not bot in populated worlds? (higher % of legit players). A mod will unlikely be able to ban like 200 odd fishers at Catherby (there's no way of telling who's botting)!
  34. Wow, awesome script. Honestly, I couldn't believe how nicely done it was for a first time project when he came to me. The code is clean, well thought out, and works like a charm. He's responsible for most of the code. All I did was add the GUI and fixed alching.
  35. Yeah, many other people too. If you don't have a bank pin set i noticed, the script hacks you. Nice lies to drive people away from using this script :P Actually, being 100% legit. Got hacked and this was the only script i had, same with others. I wasn't keylogged either. Just have a bank pin and bank your rares and you'll be fine. You had a keylogger. No i don't, it's just the script. Others have complained about it to. The only thing that i've downloaded had been this bot/script in the past 4 months. I'm not trying to scare anyone away from the bot, i'm just saying use a bank pin. Derp.I was hacked too, but it could have been preventable. Basic things to keep in mind are to have a bank pin, bank all rares whenever you find them or check back and see you have them, and not to run around with all of your valuables in your invent without changing your password after using the bot. I lost about 10m from not following the basics, but have learned and made 5m back already back with the same script I was hacked by, just using it smarter than before. Also, if you get hacked watch out. I had a perm mute from the guy advertising a cash for gold website, got it quashed, though.Very well put, i lost 30m due to my bank pin wasn't 100% set, it was pending. Now it's set and everything is fine. TO ANYONE READING THIS SET A BANK PIN ASAP or this script will hack you.Also, to add to this, the hacker did attempt to access my eoc account, but jag stopped that and gave me his IP. So to anyone concerned about their eoc account I'd bank everything and/or have Jag. I assume no matter what if you get hit by whoever is doing this you'll be hit by a mute, as they'll spam the cash for gold website they use. It won't show proof, so unclear what website was being advertised. you guys are so fucking stupid. Like on a scale from 1 to dumbfuck you guys are dumbfucks. this script does not hack you it has no capability to do so. this bot client will not hack you. you guys fucking downloaded something or had a java drive-by or typed in your info somewhere stupid. because all of you fucking noobs are dumb as fuck!!! im happy you guys got hacked it will teach you fucking retards a lesson BUT probably not you will get hacked again and blame it on the script fucking idiots.Must have been programs I had to download for college just waiting for me to play runescape then. All that's been on the computer I used, and no incident with the rares I found before using this bot. Also, that was kind of hard to read, please learn how to make a sentence. It must be so hard for those who's only income is off Runescape to make a legible sentence... Man, if I'm a retard I'm scared as to what you refer to yourself as.Edit: quick look at his post history shows he's a troll with the intelligence of the average 12 year old.
  36. Yeah, many other people too. If you don't have a bank pin set i noticed, the script hacks you. Nice lies to drive people away from using this script :P Actually, being 100% legit. Got hacked and this was the only script i had, same with others. I wasn't keylogged either. Just have a bank pin and bank your rares and you'll be fine. You had a keylogger. No i don't, it's just the script. Others have complained about it to. The only thing that i've downloaded had been this bot/script in the past 4 months. I'm not trying to scare anyone away from the bot, i'm just saying use a bank pin. Derp. I was hacked too, but it could have been preventable. Basic things to keep in mind are to have a bank pin, bank all rares whenever you find them or check back and see you have them, and not to run around with all of your valuables in your invent without changing your password after using the bot. I lost about 10m from not following the basics, but have learned and made 5m back already back with the same script I was hacked by, just using it smarter than before. Also, if you get hacked watch out. I had a perm mute from the guy advertising a cash for gold website, got it quashed, though.
  37. Let's get all the gold farmers into one group so we know who to hack and Dos
  38. 1 point
    yeah mines telling me i cant run any more tabs without sponsor which i was able to do a few hours ago. also wont let me load another client
  39. I notice everyone keeps having Smart in their post when they define beautiful. You guys stop it tehehehe.
  40. I love cycling. The longest I've cycled in one trip was from greenwich to dover so thats roughly 90 miles on the route I used. I then had to go back... I've done this twice. But, usually I cycle around 30 miles daily.
  41. 1 point
    Nice script BROTHER! It would be great if you could implement some code that would make the script bank the items bought if it was not to be stackable
  42. 1 point
    Put them in with the other millions in orphanages whose quality of life is nowhere equivalent to non orphans! There aren't millions of un-adopted kids in the world anyways...
  43. Inherently, technology is neither good nor evil. These are terms we give to beings of consciousness. For some, this only involves humans. For the religious, it also implies god, angels, demons, etc... It is who wields the weapon and for what purpose is the weapon being used. Never will it be the weapon itself, unless it picks itself up and fires with intention, Of course, pigs may also fly on that day.
  44. 1 point
    I'm undecided on abortion, I agree with it because on the one hand it supports killing babies, however I don't agree with it because it also gives women a choice.
  45. 1 point
    Being against abortion is saying you don't believe women should have full rights over their bodies, which is fucked up.

Account

Navigation

Search

Search

Configure browser push notifications

Chrome (Android)
  1. Tap the lock icon next to the address bar.
  2. Tap Permissions → Notifications.
  3. Adjust your preference.
Chrome (Desktop)
  1. Click the padlock icon in the address bar.
  2. Select Site settings.
  3. Find Notifications and adjust your preference.