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 01/25/21 in all areas

  1. ๐Ÿ‘‘CzarScripts #1 Bots ๐Ÿ‘‘ ๐Ÿ‘‘ LATEST BOTS ๐Ÿ‘‘ If you want a trial - just post below with the script name, you can choose multiple too. ๐Ÿ‘‘ Requirements ๐Ÿ‘‘ Hit 'like' ๐Ÿ‘ on this thread
  2. This is an AIO (All-in-one) bot that has almost every thieving style except blackjack, ask for a free trial by liking thread or making a post! Vyres and elves are now supported! Both can make solid profit per hour, decent passive income! BIG THANK YOU TO ALL OUR SUPPORTERS! WE ARE THE MOST SOLD THIEVING BOT IN OSBOT HISTORY. MOST REPLIES, MOST USERS, LONGEST PROGGIES #1 Thiever | Most Overall Sales | Most Total Replies | Most Results | 10+ Years Maintained | 'the intelligent choice' by Czar SUPPORTS VYRES 224M made in a single sitting of 77 hours 1.1B made from elves and vyres!! ELVES SUPPORTED TOO! (NEW) 2.1m/hr, 6 crystals in 7 hrs 99 THIEVING MANY MANY TIMES, 35M EXP IN ONE BOTTING RUN!! 99 thieving in ~43k xp (12 minutes remaining)! Just got 99 proggy! Gratz to @iz0n THIEVING PET AT LVL 22 FROM TEA STALLS 11.5 HOURS, WITH PET TOO!! 610k/hr getting 99s on deadman worlds!
  3. 2 points
    KO Corp Looking for BETA Testers! August 2025 Current Features: Solo's Corp Group Support Private portal with alt Support Running core Uses DWH, Arclight, and BGS special attack on Corp Heals/Refills special attack and prayer in POH Supports super combat/prayer pots Restocking Friends House Portal Support Deathwalking Working on: Gear switch support If you would like to help test the script please join my discord!
  4. Hey, Just a couple small fixes for the last dev build. Download link: http://osbot.org/devbuilds/osbot 2.6.14.jar FIXES: - Fixed the UI crash that was caused by the ShadowPopup. - Fixed the widget missclick on wide widgets. WEB WALKER: - Added some catacombs of kourend links. MISC: - Improved game loading performance. - Minor bug fixes. - The OSBot Team
  5. 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
  6. Want to buy with OSGP? Contact me on Discord! Detailed feature list: - NEW!! Added Wealthy citizens! - NEW!! Added Wealthy citizens house thieving mode! - Supports all Npcs in multiple locations - Masters farmer support - Vyres and Elves support !! - Banking support - Tons of food supported - Dodgy necklace support + bank amount - Gloves of silence support - Shadow veil support - Rune pouch support - Gem bag support - Swap gear mode at vyres - Supports most stalls - Steal 1 Drop 1 mode - Worldhopping - Supports most chest - Safecracking at Rogues' den - Wire thieving at Dorgesh-Kaan - CLI support for goldfarmers Custom Breakmanager: - Setup Bot and break times - Randomize your break times - Stop script on certain conditions (Stop on first break, Stop after X amount of minutes, Stop when skill level is reached) - Worldhopping - Crucial part to botting in 2023! Script queueing: - Support queueing multiple script in a row - All Khal scripts support flawless transitions in between scripts - Start creating your acc in a few clicks from scratch to multiple 99's - Flawless CLI support - Learn more here: How to use CLI parameters: - Example Usage: -script 1141:ScriptFile.BreakFile.DiscordFile SAVEFILE = Saved Filename BREAKFILE = Breakmanager Filename - SAVEFILE: Save file can be created in the GUI. Navigate to the tab you want to run and press "Save As CLI file". Please choose your filename wisely (No special characters) - BREAKFILE (Optional): Breakfile can also be create in the GUI, set the breaksettings you wish to use and press "Save new CLI BreakFile". Please choose your filename wisely (No special characters) - Final form (Note that with some bot manager you do not need to specify '-script 1141'): -script 1141:TaskList1.4515breaks (With breaks) -script 1141:TaskList1.4515breaks.discord1 (With breaks & discord) -script 1141:TaskList1..discord1 (NO breaks & discord, leave 2nd parameter empty) Proggies:
  7. NEW CURRENT RECORD: 294 HOURS RUNTIME! Shoutout to @Ruutihattu NEW: Sandstone mining + hopper support Humidify/water circlet/bandit unnote Ardy cloak tele support Setup Screen Preview Results 84 HOURS ON NEW LEVEL 20 ACCOUNT Suicided account with mirror mode near rock crabs, 81 mining! I will probably go for 99 Even supports Ancient Essence Crystal mining! Preview: Mine 1 drop 1 item drop pre-hover feature:
  8. GitHub https://github.com/Mykindos/OSTracker If you found this repository useful, please consider giving it a star! About In late 2019, OSTracker 1.0 was released which was a client-server implementation that strived to collect user data for scripters with ease. There were a few problems with this type of implementation, and most of them were performance related and mostly poor ways of communication between the client and the database. Today I am happy to release OSTracker 2.0, which transitions from this Client-Server approach to a RESTful API which allows for much easier and less intensive data submission and tracking. OSTracker 2.0 API is built on Laravel, a PHP framework that specialises in the development of web applications. Tracked Data (per user) Experience gained for all skills Items Received, Lost, or Spent (e.g. arrows and runes) Time ran Error logs (if setup) Upcoming Data retrieval end points that will allow you to filter certain users, scripts, skills, items, and more. Client-side installation Integration with your OSBot script is relatively simple. Simply copy the contents of the 'client' directory in this repo into your scripts code base. In your scripts onStart, you should initialise OSTracker like so. private Tracker tracker; @Overridepublic void onStart(){ try { tracker = new Tracker(getBot(), getName(), "BASE_API_URL", "YOUR_TOKEN") .setUpdateInterval(30) // Defaults to an hour .start(); tracker.getSessionTracker().setVersion(getVersion()); } catch (Exception e) {if (tracker != null) { tracker.stop();} e.printStackTrace(); }}And end the tracker in your scripts onExit like so @Overridepublic void onExit(){if(tracker != null){ tracker.stop(); }}Your token will be created when deploying the Laravel API to your server, or it will be provided to you if you are choosing to integrate with somebody else's API. From here, OSTracker will automatically handle experience, loot, and script runtime tracking, and by default will submit this data to the API once per hour. Data will also be submitted when the script is stopped. API installation Don't fancy setting all this up? I can host your data for you for $3 USD per month. Spoiler Post-installation instructions / API endpoints Spoiler
  9. Yo, I bought the script and when I click start on stealth and mirror mode nothing happens? The setup box does not appear. My other scripts are working, but not this one? Edit: I just noticed your message from two hours ago. I will try again in an hour or so. Thanks, G!
  10. Could i get a trial please :D? looks awesome
  11. POG EDIT: Will check this out, hopefully OSTracker 3_0 has some node js in it.
  12. Should be back online in a couple hours (2-3) max, apparently some bots aren't launching but staff are always super cool about it and I've requested a re-compile so it launches again ^^ :D I've temp authed you some bots so you don't miss out on any botting, gl sir :D
  13. Should be back up within a couple hours max, having some networking issues atm for some reason the bot isn't launching. I'll message staff they are always kind enough to check it out, we just patched the sand crabs one and this one's next. ETA 2-3 hours max. Just temp authed you guys a couple scripts so you don't miss out on any botting feel free to use them.
  14. Hi, I have tried restarted, reinstalling, looked all over the forums and still no luck. I just bought your pest control script and it will not start at all, no messages in the log either...? Can you help me with this? All my other scripts run fine!
  15. 1 point
    Best motherload script 100% Never had any problems with it getting stuck easy to configure its clear to see that the scripter has used alot of time on this script 100% would recommend any of Khals scripts works like a charm ๐Ÿฆพ
  16. 1 point
    Assuming this is your first script on OSBot, if so, well done.
  17. 1 point
    holy shit , nice
  18. how do i use this bot for sand stone grindering?
  19. Khal Thieving updated to V1.02: - Fixed runing away from guards and ardy knights - Fixed hovering fruit stalls - CLI loading updated Will be live soon! Khal
  20. Congrats on release Khal, bought it yesterday and it's amazing
  21. Somehow the script is not starting up at the moment, when I click it to start from the store it is doing nothing.
  22. could i please have a trial of this mining script please ?
  23. Bump this bot is great!
  24. 1 point
    Very pog. Nice
  25. started script and dosent do anything
  26. holy shit homie, u didnt have to auth the other scripts!!! YOU ARE A BALLER!!! thank you so very much edit: everything is working great again, thank you again for the auths, and thanks for getting it resolved!!!! <3<3<3
  27. yea ur stronghold one didnt launch eaither i dont think, but thats a weird one i dont use often anymore, even though its mint.
  28. so the bot shows up on the client, but when you try to use it, nothing happens. the gui doesnt pop up, the script doesnt start at all. nothing shows up in the logger at all. ive tried refreshing, restarting the client, but not sure ๐Ÿ˜› hopefully nothing major, wouldnt think of using any other runecrafting bot!
  29. 1 point
    Could I get a 24h trial please? Thanks! Nvm, I just bought it.
  30. Congrats on the release!!! Can't wait to get my hands on it
  31. yeeeee, script not available anymore :((( was just using it hours ago.
  32. I sure hope so!
  33. I bought this script a while ago. No longer see it under my scripts?
  34. Thx for the support guys!
  35. hey mate could i please have a trial of the script, interested.

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.