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 05/18/15 in Posts

  1. Well I traveled to Colorado this weekend because my brother and cousin was graduating college, as soon as I hit the highway my whole network gets knocked offline so my skype instantly gets clobbered up with about 40 instant messages like "My Server is down WTF" meanwhile I am on skype mobile trying to respond to everyone while driving. Then I lose service because we were in the middle of nowhere. Now I am unable to see my network problems because my phone is down because of no services. So all I could think if my head was OMG THE FUCKING REFUNDS ARE GOING TO BE REAL. Then finally I get to a point where I had 2G so I was able to slowly respond to certain users most of them were like " just lemme know when my VPS is back up" im like OK well a couple of hours pass of driving and my Co Owner is like "We have about 130+ un read support tickets" I respond WTF just toggle live chat off until we can solve the issue and answer all the tickets. Then my boyfriend starts complaining about us stopping to long and not making it to the graduation on time so I start driving again and instantly lose service. A couple of hour later I receive a text message from Matt, Matt is pretty much my network manager who oversees all 9 of our data center hardware and network issues and such, he tells me "So 3 of our 8 DC are down" my first question was HOW THE FUCK LONG he responds "15-24 hours" I say JUST FUCK ME BACKWARDS!!! Anyways I spend my whole weekend vacation on skype and my webcam with my managers trying to get servers backup, but I am back now and the hard work starts back again lol. Special thanks to; Nike and some other folks for spamming my skype.
  2. Hello, I recently got a few reports of my scripts not starting properly in the mirror client, after looking some time with 2 of my customers we came to the folowing conclusions: Issue: If you logged in to the orginal client before the mirror client gets loaded onto the original client, not every data was transmitted properly between both clients. Causing the mirror client to not function as it should be since not all data was available. Solution: DO NOT login before the mirror client has been loaded onto the original client. Wait till both, the original client AND the mirror client are fully loaded and both showing the login screen. This way the mirror client will have all data needed to function as it should be. Hope this solves a lot of troubles at starting scripts on the mirror client. EDIT: Is there a chance this could get Pinned? I get several messages of people having issues to start the script, since they don't know this issue/fix. This would spare me some time trying to explain people what's wrong Kind regards Khaleesi
  3. I've discussed this with the other staff members, a trade has not taken place, but @Services has shown he's fully willing to break the rules as well as encourage others to break them. So I will be placing @Services in TWC
  4. Lol, everyone tryna stop Noah here from getting someone to do this for him. Here's a pro tip. If you have an account yourself, you can just gear up Noah's acc and your own and go to Clan Wars on any world and splash on each other. Reset every 6h, rs update or DDoS. Get yourself & Noah 99 Magic and profit 5-10M or whatever he offers. Also, saves you a lot of time finding an NPC to splash on. My IRL friend was always complaining about finding spiders to splash on and I'm like "Hey, if you want you can borrow my acc and splash on yours with it ". That's how I got my 99 magic
  5. Winning at eBay In this guide I will be teaching how to turn over £12k+/18k$ per month. Proggys can be found at the bottom This is not a easy task and does take a little time and effort to complete, but I will break it up into easy bite size chunks. Part 1 Getting started Part 2 Day to Day running. (not finished yet, will update tonight) Paying low amounts of TAX (UK ONLY) Helpful hints and tips FAQ Proggys I will update this further later today when i have some spare time If you liked this guide and would like to see more like it, Tap that like button ->
  6. I tore my MCL. You're screwed tho. Hope you get better
  7. lol i knew you were a salad hating hetero
  8. 2 points
    Not sure why this was posted, agree on a time and date, if he doesn't meet it post a dispute with full picture proof of the agreement.
  9. Damn. I'd pay for that stuff. Hope you can turn that idea into reality!
  10. 2 points
    Please create a dispute here using the correct template!
  11. It did not go through yet, it is still pending on our side. They should be there now, I have completed it.
  12. And this tickles your butt in what way? If I say I want 50 million off my account - It does not mean that bids under 50 million are not accepted.
  13. 2 points
    False credit
  14. Just trade it never had a mule banned before
  15. 2 points
    graceful set
  16. 2 points
    Got 33-99 with this script. 100% flawless and an A+ from me.
  17. not that i know of. you'll just have to hope mod mark puts oil on the hamster wheel that powers the servers so they don't lag as much soon.
  18. I'm only wondering on how you expect 50-70 mil, when you don't have any quests done.
  19. Wanted to thieve the chest so i made this. Its not very efficient, it runs 12-16 seconds for a thieve from chest and you can min-max clicking at 8 seconds. All the scripts on the sdn dont support this chest so i threw this together real fast. import org.osbot.rs07.api.model.Entity; import org.osbot.rs07.api.ui.Skill; import org.osbot.rs07.script.Script; import org.osbot.rs07.script.ScriptManifest; import java.awt.*; import java.util.concurrent.TimeUnit; @ScriptManifest(name = "Ardougne Nature Chest", author = "Patrickold", version = 0.1, info = "Simple script to open the Nature Rune chest", logo = "") public class ArdyChest extends Script { private int natureRunes = 0; private int coins = 0; private long timeBegan; private long timeRan; private int beginningXP; private int currentXp; private int xpGained; private int currentLevel; private int beginningLevel; private int levelsGained; @Override public void onStart() { log("Script Starting."); natureRunes = (int) this.inventory.getAmount(561); coins = (int) this.inventory.getAmount(995); timeBegan = System.currentTimeMillis(); beginningXP = skills.getExperience(Skill.THIEVING); beginningLevel = skills.getStatic(Skill.THIEVING); lastChest = System.currentTimeMillis() - 5000; } @Override public void onExit() { log("Script Exited."); } private long lastChest = 0; @Override public int onLoop() throws InterruptedException { Entity chest = getObjects().closest("Chest"); sleep(random(100,200)); getCamera().moveYaw(random(10,150)); sleep(random(100,200)); if(chest.getId() == 11736 && chest.getX() == 2671 && chest.getY() == 3301 && lastChest <= System.currentTimeMillis() - 3000) { chest.interact("Search for traps"); getCamera().movePitch(random(100,200)); getCamera().moveYaw(random(10,150)); lastChest = System.currentTimeMillis(); } sleep(random(100,200)); getCamera().movePitch(random(100,200)); return(random(100,150)); } private String ft(long duration) { String res = ""; long days = TimeUnit.MILLISECONDS.toDays(duration); long hours = TimeUnit.MILLISECONDS.toHours(duration) - TimeUnit.DAYS.toHours(TimeUnit.MILLISECONDS.toDays(duration)); long minutes = TimeUnit.MILLISECONDS.toMinutes(duration) - TimeUnit.HOURS.toMinutes(TimeUnit.MILLISECONDS .toHours(duration)); long seconds = TimeUnit.MILLISECONDS.toSeconds(duration) - TimeUnit.MINUTES.toSeconds(TimeUnit.MILLISECONDS .toMinutes(duration)); if (days == 0) { res = (hours + ":" + minutes + ":" + seconds); } else { res = (days + ":" + hours + ":" + minutes + ":" + seconds); } return res; } @Override public void onPaint(Graphics2D g) { timeRan = System.currentTimeMillis() - this.timeBegan; currentXp = skills.getExperience(Skill.THIEVING); xpGained = currentXp - beginningXP; currentLevel = skills.getStatic(Skill.THIEVING); levelsGained = currentLevel - beginningLevel; super.onPaint(g); g.setColor(Color.GREEN); g.drawString("Ardougne Nature Chest :3", 5, 290); g.drawString("Time Ran: "+ft(timeRan), 5, 302); g.drawString("Nature Runes: "+(this.inventory.getAmount(561) - natureRunes), 5, 314); g.drawString("Coins: "+(this.inventory.getAmount(995) - coins), 5, 326); g.drawString("Xp Gained: " + xpGained, 5, 338); g.drawString("Thieving LVL: "+currentLevel+(levelsGained > 0 ? " (+"+levelsGained+")" : ""), 5, 350); } } Second time running it, first time was for about a hour then i had to leave. I have only tested it on the Mirror client, so. No idea how the regular client will function.
  20. This release takes a look at some very tough issues with mouse movements and interactions. First I would like to thank @SESH for reporting the issue. For the most part I verified that all destinations were handled as intended and that each characteristic of the destination was accounted for (namely evaluations). This is an update that will affect each botter, so please try and monitor interactions and report anything suspicious. Additionally, @Zach patched model rotations which will certainly exemplify the improved interactions coming from this update. @Alek's Changelog: -Improved MouseClickEvent execution --Removed multiple attempts, it will only fail because of chained MouseMoveEvent -Improved MouseMoveEvent --PointDestination has improved handling -Removed unnecessary inventory calculation -Updated Mouse click(x,y) -Updated InteractionEvent to handle new mouse events -Updated all destinations to use their correct overriden methods -BankPin random received speed improvement to completion -Verified Dismiss Random Event is working -Patched PollBooth API @Zach's Changelog: -Patched model rotations --Scripters check to make sure you are using the new rotations in your code Bugs which I am aware of: -InteractionEvent not attempting to change camera angle/walk to entities that are not visible in some scenarios. -Mouse will randomly "spaz" out in a small area, seems to be related to either grabbing a suitable destination area or the mouse algorithm itself. Version 2.3.68: @Zach made a manual hotfix for wall object rotations and pathing If you are getting spammed in the logger, please re-download the client. Have a great weekend. If there are any crazy issues, I'll be on to sort them out. -The OSBot Staff
  21. Good luck mate, you'll get through it :p
  22. like the title say i wanna buy a 9,99 voucher for 5mill. i go first only trusted people
  23. Edit : sold him $10 voucher
  24. anyone else? He went offline!
  25. Add me on skype buslovn, you go first.
  26. I was thinking of selling it for steam credits/games as I have grown bored of OSRS. Wasn't sure if appraisal requests were allowed in the account section, so I assumed this place would be appropriate. Thanks in advance
  27. thanks, sorry for asking so much but its frustrating to restart youre bot every 3 hours.
  28. 1 point
    Welcome friend ^_^ Looking forward to seeing you. Why don't you come by the chatbox some time? And you can buy VIP with GP from other members. :3
  29. 10/10 would ban
  30. About xbox vs ps4 ( to be honest I think they are the same, choose the same console as your friends have )
  31. Easiest way for 27M is to make a guthans host. You make 1M/hr. Host a private world and get a second account to autotype in W330, it'd take you 27 hours instead of 60 or so
  32. 10 million - The blackmark ruined your account.
  33. Sure am Khal. I recorded the bot for a couple of hours and I'll watch it and let you know exact things with screenshots. I'll make a post when I get the chance, but that's just what I caught while babysitting. It also tries to go backwards on the clothing line (maybe increase the delay it checks to see if it is in animation before retrying)
  34. where da tl;dr??
  35. I'm looking for a solid combat script, and it looks as if I'll have to drop few dollars on one! I was looking for some community feedback on the different scripts. I'm still new to the community, so if this type of topic doesn't go here, I'm sorry! Any feedback is much appreciated Edit: If you're a developer, feel free to give us a pitch! I'd love to hear about your scripts!
  36. I was looking at your spider one, actually! It looks good, but what I saw from a review made sense. It was about how the spiders were afk'able, and actively attacking new spiders looks bot-like. Is there an option to reset aggro on this script to make you look like an afk'er? I would happily spend money on a script that would make me look like an afk'er! That would keep ban rates low, while still being efficient
  37. I have another 50m if anyone wants to buy some gp.
  38. bought all thanks babe
  39. Just thought I would add, after bond update (and others) splashing has become a lot more difficult and accounts almost never last 6 hours afk splashing and often get killed. So remember that when your talkign about supllies and effort :P
  40. gz on release but 1 thing thats bugging me! The banners don't line up :3
  41. AHAHAHAHA BEST POST I'VE EVER SEEN
  42. 1 point
    What is this, RuneScapes next top model? I'd go with the tradtional macro-look
  43. My internet can't handle to do a internet speed test..

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.