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 10/08/15 in all areas

  1. 7 points
    this is a story about how i fell in love with maldesto: i really like maldesto because he gave me a second chance on osbot, i was a cunt to him to once when i got shown some stuff - i did some bad things but he forgave me, i have seen since that he is a gr8 individual i really like him - my love doesn't die - although he doesn't like me back RIP Scotty
  2. No thanks, I'm specifically looking for a useful script. You'll be needing this.
  3. How is our security fucked up if your Skype got hacked?
  4. Anywhere from 11 to 99... so 88 possibilites... I'm confused. This seems stupidly simple, but if it was you wouldn't be posting it surely. How high are you on a scale of 1 to Cheetos?
  5. Still wondering why people would buy these high leveled accounts off of not-trusted 0 feedback people who recover these kind of accounts back so often.
  6. 3 points
    Scotty doesn't know that Fiona and me do it in my van every Sunday. So don't tell scotty! Soctty doesn't know! Scotty doesn't know!
  7. Thanks for the 5m nerd Probably better item + widget support >learning java >osbot Stop bullying me I report you
  8. Release notes: Fixed issue where bot would crash for most linux users while loading stream library Fixed scrolling via mouse wheel (resolves many issues such as bank withdraw one) Fixed certain special keys such as tab on login screen Greatly improved sync between gcs of both jvms - this should resolve issues where mirror gets buggy/slow/crashes after running for some time. Miscellaneous other bugfixes MAC/LINUX users please note: Mirror mode was originally designed for windows, and is optimized the most for it. And while it's now supported on OS X & LINUX - the performance of it is best when used on windows.
  9. Hey guys please comment on my first serious attempt at using photoshop. Took me about an hour - I took the borders and stuff from various websites haha Designed it for my dynamic signature cheers apa
  10. 2 points
    That exception has nothing to do with trading. Seems to just fail when attempting to stop the script
  11. I'm having same problem with my script that i'm writing. Script runs fine until at some point starts to walk to random place...and i'm only trying to walk close to monster
  12. 2013? lol, that isn't that long ago young one... Also, there is a difference between sharing their method and some decent methods. You guys don't need to troll this guy we've all been at the same stage as him, and for most people trolling in these comments wasn't that long ago. My advice to you @raina217 is do a little research yourself then as specific questions. The questions you ask are so subjective and open ended I couple hundred page book could be written on them XD
  13. Since you're trashtalking Joseph, I want to ask you this: From 0 to 2000, how many even numbers are there? Would you seriously use combinatorial logic for this? Joseph's solution is by far the simplest for the type of problem he's talking about.
  14. I have no idea what this is about. I got the answers I sought... I locked my thread.
  15. @Lacoste, have you received it now? Same with you, @osrs bot?
  16. 2 points
    EuroTrip yay!
  17. I always love to fly fish. Location: Malmedy (Belguim) Reason: It's fun to catch damn fishies ! EDIT: Didn't read "Bot" at the title...
  18. 2 points
    just got 99 range with this script =]
  19. it aint closed yet i still want to increase my post count
  20. Put you in TWC, I'll look into your IPs when I get home.
  21. post 1.19h -> I got hacked don't trust anything feedback 1.21h -> scammed 100 mill Seems legit xD
  22. Works fine but banned on two accounts at goblins after a few hours. New accounts to test it with. Use it wisely, meaning p2p not f2p.
  23. What iz dis spikey monstrosity
  24. by Czar Buy now (only $8.99!) 143 HOURS IN ONE GO!!!!! update: this bot is now featured on the front page of osbot! More reviews than every other fishing bot combined! 100 hour progress report!!! How to use Script Queue: ID is 552, and the parameters will be the profile name that you saved in setup! This process is really simple, just to save you headache
  25. efficient & flawless Link: Script now live: Here Features Bypasses Jagex's camera movement bot trap. new! Uses ESC key to close the interface new! Uses the higher xp method (aligns the camera to the target so it closes the menu when it pops up) NEVER gets in combat, 'tower' method of getting out of combat isn't even there (deliberately). Logs out when no money left Equips bronze arrows when necessary Displays 'goal' information, e.g. (at 77 range it will also show details for 80 range, time left, xp left, etc) Automatically equips higher level gear such as d'hide chaps and vambs Runs away just in case of emergency! ................................................................................................................................ With the bots on OSBot, Czar promises to deliver yet another incredible piece to the CzarBot empire. This means you will get to run the script with no worries about bans and xp waste. LEGENDARY HALL OF FAME 100 hour progress report Configuring the bot and the result: Set the npc attack option to 'Hidden' if you want to avoid deaths forever! For extra XP FAQ Why should I use this script when there are millions out there? It is the best script. Simply. Why are you releasing this now? It's time to make it public, it was privately shared with some friends and has been working flawlessly. Instructions There are no instructions. We do the all the work for you. CzarScripting™ Tips If you are low level, you can use a ranging potion at level 33 ranged to get in the ranging guild. Try and have as high ranged bonus as possible. Gallery ANOTHER 1M TICKETS GAINED !!
  26. https://github.com/Bobrocket/OSBotAPI Example usage: leaked green dragon killer source getNPCFinder().findClosest("Green dragon").attack(); //OSBot version NPC n = getNPCS().closest("Green dragon"); if (n != null && n.exists() && n.getHealth() > 0 && !n.isUnderAttack() && !myPlayer().isUnderAttack()) n.interact("Attack"); omnipocket leak getNPCFinder().findClosest("Man").pickpocket(); //OSBot version NPC n = getNPCS().closest("Man"); if (n != null && n.exists() && n.getHealth() > 0 && !n.isUnderAttack() && !myPlayer().isUnderAttack()) n.interact("Pickpocket"); Advanced usage: get ge/collect box/bank/poll booth close button getWidgetFinder().findFromAction("Close", (widget) -> (widget.getSpriteIndex1() == 535)); //OSBot version cant be fucked l0l Super simple example script: attacks chickens 24/7 public int onLoop() throws InterruptedException { getNPCFinder().findClosest("Chicken").attack(); return Constants.TICK; } //OSBot version public int onLoop() throws InterruptedException { NPC n = getNPCS().closest("Chicken"); if (n != null && n.exists() && n.getHealth() > 0 && !n.isUnderAttack() && !myPlayer().isUnderAttack()) n.interact("Attack"); return 600; } Why use my API over the default OSBot one? Handles everything for you. Interacting with an NPC? Null checks, camera movements etc. all handled easily Streamlined, consistent API between data types Click accuracy increased by 5% on moving NPCs (tested against 2.3.136; will dig up test results later) A lot more customisation in Finders vs default OSBot methods (especially with widgets!) #findClosest() actually correctly returns the closest NPC/entity Super easy to implement - just change extends Script to extends OmniScript Usage Download the latest zip Drag the omniapi folder into your project (delete Test.java!) Make your script class extend OmniScript instead of Script Make use of the OmniScript API Please note the API is updated constantly, so be sure to redownload the zip occasionally!
  27. i did 60 hours straight lol and no ban
  28. 1001.My logic: From 1-2000 there are 2000 combos. There are only 1000 even combos within the 2000. Finally 0 is an even number so we carry it over. = 1001 he said the answer was 9999 and I'm saying no it is 10 000. That's all.
  29. Past accounts (if you know of any): [member=username] nico Current account: Nasse22 Reasoning: http://osbot.org/forum/topic/51716-price-check-this-acc-please/?hl=perus_nico check skype http://osbot.org/forum/topic/55540-ballers-graphics-store-pp-rs3gp-07gp-200-orders-completed/page-19#entry928565 check skype from now on, call me detective.
  30. Hardstyle remix or gtfo
  31. cool I get chatbox banned on a weekly basis here on OSBot
  32. If you've been scammed by @Skizow, please post a dispute with evidence to support your claim. You can find the dispute template here: http://osbot.org/forum/topic/44082-dispute-report-template-rules/ You need to post your dispute in the dispute section.
  33. You and you only are responsible for your OSBot account. Chances are your email was hacked explaining why the gained access to your skype and OSBot account.
  34. nah its like 1,24$ but i only made 0,000002467$ profit per win. so it means i lost 11 times in a row. Time for some math the math below is based on the Martingale betting system. https://en.wikipedia.org/wiki/Martingale_(betting_system) Odds Numbers: https://docs.google.com/spreadsheets/d/1b_2yBtc9ZsqDH0Sycbd74mdemQB6-gqUVq_eMqM6psc/edit?usp=sharing Graph: Explanation of math: https://www.khanacademy.org/math/precalculus/prob_comb/independent_events_precalc/v/getting-at-least-one-heads Cost if you do the Martingale using a 1m initial value. to counter a 4 in a row loss streak you need 31m (note this includes money needed for the 5th bet to recover) to counter a 8 in a row loss streak you need 511m (note this includes money needed for the 9th bet to recover) to counter a 14 in a row loss streak you need 32767m (note this includes money needed for the 15th bet to recover) TL;DR : Martingale always works if you have infinite wealth but since you don't you will lose your bank.
  35. 1 point
    sorry but I would be looking for somebody with some nice feedback as its my main account I play often and never botted on
  36. Granted you could sell it on playerauctions or as a trusted member for a lot but no-one will give you much for an acc that might last 2-3 weeks (at most)
  37. Losing 8 stakes in a row is VERY possible and WILL happen. If you martingale your money you will get cleaned eventually.
  38. It has been added like 2 months ago... Recheck the GUI xD Ya Thats a mirror issue Ya I know about the issue. I'll get it solved asap! Khaleesi
  39. Noted items is not an issue, you could use inventory.getItem(i -> i.getName().equals(name) && !i.isNote())
  40. Thread (gif) made for @Gilgad. _______________________________________________________________________________________________________________________________
  41. Can we still date if i move to Belgium
  42. Veteran These are members of OSBot who have been here from the beginning and have respectfully been active and helped the growth of OSBot. Pm Maldesto if you meet the requirements. Registration Date: December 31, 2013 cut off date. Post Count: 500 or above. Activity/Contribution: Judged by staff team.

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.