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 06/18/17 in all areas

  1. Preventing RS Botting Bans V3 Written by Alek 1. Introduction This guide is Version 3 of my original guide released 4 years ago. I decided to focus more on commonly asked questions and general misconceptions about botting. Many of the topics are very technical and there are brilliant engineers who both bust bots and create them. The majority of botters who come here have little to no programming experience, or very little knowledge in subject areas such as reverse engineering. It’s very difficult to fully explain all key concepts, however hopefully this material will give you a base reference to draw your own conclusions. 2. How to not get banned The secret formula to botting is keeping a very, very, low profile. This game has been around for 15+ years, that is a TON of data to play with. Generally speaking: -Don’t bot more than 4 hours per day -Don’t bot more than 10 hours per week -Diversify your tasks -Don’t use a VPN/VPS/proxy -Don’t bot more than one account -Do quests -Don’t RWT/goldfarm -Don’t bot in hot spots, use places like Zeah You’re going to have a ton of people say, “oh I suicided for 11 years straight, never logged out, I make $500k/year”, etc. They simply don’t. Either they haven’t botted long enough or their claims are baseless. If you want to keep your account relatively safe then don’t bot longer than the times I recommended above. Time played is a key factor into profiling a bot, it’s been even talked about on official livestreams during live bot busting events. 3. Misconceptions The biggest misconception is that the company doesn’t have any automatic detection systems. Although the detection vectors improve over the years, there are official statements claiming that all bans are manually reviewed before being issued. THIS DOES NOT MEAN ACCOUNTS ARE NOT AUTOMATICALLY FLAGGED. Common situation: Suicide bot on the weekend without getting banned, account gets a ban on the following Monday or Tuesday. This is because your account was probably flagged over the weekend, then eventually reviewed for the final determination on the following business days. Another misconception is that if you “survived the weekend”, then you are safe. This is certainly not true, most anticheat will "flag and monitor". This means that you were in fact detected but the anticheat is watching your actions very closely to grab more information about what you are doing. Information from these monitoring sessions are used to quickly detect and ban in the future. For Runescape, one example is the use of bot worlds. Another non-Runescape example is Valve-AntiCheat profiling numerous hacks over the course of months and then issue behemoth ban waves all at once for games like Counter-Strike. 4. Antiban/Antipattern Scripters who include antiban/antipattern methods in their scripts are either naive, new scripters, or are trying to earn more sales by making false promises. Competitor clients further this perpetuation by forcing script writers to implement these methods. It’s a gimmick and overall you’re going to get banned whether you use these "special methods" or not. Some of these “special” (aka worthless) methods are: -Moving your mouse randomly -Checking your exp -Examining random objects -Moving your camera angle randomly -Implementing “fatigue” systems -Diversifying the way you interact with objects One of the special methods I’d like to talk about which was not listed above was randomizing sleep time between actions. This is especially special because there are numerous flaws with it. 1. Your computer doesn’t perfectly execute actions in the same time every time 2. Your script doesn’t perfectly loop in the same time every time 3. Your ping fluctuates causing a delay between the client and server 4. If the top three all remained constant, you could find the upper and lower bounds of the mean and use statistics to recreate the sleep time. Anti-pattern is a bit different, but a lot of scripters have been wrongly claiming their script having “antipattern” when they’re really using the same “special methods”. Examples of antipattern: - Talking to other players (Cleverbot) - Mixing up tasks (perhaps after accumulating X gold, go to the Grand Exchange and sell) The goal of anti-pattern is to reduce the chances of being manually reported by other players for botting. Although “antipattern” is more desirable than “antiban”, there is still no definitive proof of the impact it has in the total picture. 5. Client detection 5A. I’m going to keep this relatively brief because this is probably the most technical aspect of this guide. There is an overarching debate over Injection vs Reflection and it’s pretty silly. Both are detectable because both have different ways you can detect it. In the non-Java hacking world, this would be equivalent to something like ReadProcessMemory versus LoadLibrary. To better put it, reading memory from outside the process versus inside. There are ways to hide it, ways to find it, ways to hide against the ways to find it, and ways to find the ways how to hide it against from finding it. As you can see, it’s really cat and mouse and it boils down to implementation. 5B. Additionally, you can be detected for macroing without even using a client. You can banned for using Gary's Hood or AutoHotKey. Both of these use some sort of Windows API function like SendInput, from protected mode. This is how color-bots also get detected without injecting/reflecting the client. 5C. Mirror Mode adds some protection to users where the normal OSBot client can be detected. Think of mirror-mode as a safety catch rather than a comprehensive antiban measure; and yes mirror mode has genuinely protected users at least on one confirmed occasion. In summary, you will still get banned because mirror-mode only protects you from one aspect of botting and there are potentially hundreds of detection vectors. 6. Conclusion and final remarks Having good botting habits like I outlined in section two, and having a good script which is reliable and not prone to getting baited (locked behind doors, etc), is your safest bet. There are people who do “studies” and “research” but ultimately their results are inconclusive, non-definitive, and certainly only proves a correlation and not causation. There are too many variables to isolate to make any data worthwhile; ip address, computer, scripts, clients, botting locations, skills, account time, bot time, quests, RWT, java exceptions, client detection, the list goes on and on. Too many variables to isolate, too much that we cannot prove. The bottom-line is that the only people who know specifics about the anticheat system are the anticheat developers.
  2. 👑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
  3. Simple and native: int twistedBowId = 20997; String webAddress = null; String webContents = null; Map<String, String> jsonData = null; try { webAddress = "https://api.rsbuddy.com/grandExchange?a=guidePrice&i=" + twistedBowId; webContents = downloadWebpage(webAddress); jsonData = parseJsonKeyValuePairs(webContents); logger.debug(jsonData); } catch (IOException e) { logger.error("Failed to load price for: " + twistedBowId, e); } Which outputs: All that's missing is the parsing and possibly even a wrapper class. But the content's there. The other functions (downloadWebpage & parseJsonKey: /** * Download all contents from a URL * * @param address * - Web site address * @return Contents * @throws IOException * Error input/output */ public static String downloadWebpage(String address) throws IOException { String result = ""; String nextLine = null; try ( InputStream inputStream = new URL(address).openStream(); InputStreamReader inputStreamReader = new InputStreamReader(inputStream, StandardCharsets.UTF_8); BufferedReader bufferedReader = new BufferedReader(inputStreamReader); ) { while ((nextLine = bufferedReader.readLine()) != null) { result += nextLine; } } return result; } /** * Simple JSON parser to extract key & value pairs. * * Note: values must be numbers. * * @param input * - JSON input * @return Mapped contents */ public static Map<String, String> parseJsonKeyValuePairs(String input) { final Map<String, String> result = new HashMap<>(); final Pattern pattern = Pattern.compile(".*?\"(.*?)\":(\\d+)", Pattern.CASE_INSENSITIVE | Pattern.DOTALL); final Matcher matcher = pattern.matcher(input); while (matcher.find()) { result.put(matcher.group(1), matcher.group(2)); } return result; } I wrote my own JSON parser, but it's very simple and will only work where the values are numeric. I'm staying away from any libraries that aren't packaged with Java. Also, don't suppress errors. If the errors are thrown at a point in the code where it can't be logged out, just keep throwing it on up the stack until it reaches a point where it can. Errors are useful; if you suppress them, then you're going to have a bad time.
  4. All accounts have the following benefits: Legacy logins, 300+ days old, No email linked, Played on Residential IPs, Instant delivery Join the discord: discord.gg/w3SuTG6ng7 Please purchase the accounts here: antoniokala.mysellauth.com Accounts for sale: LEGACY LOGINS (tut not completed) The account has only been created. TUTORIAL ISLAND COMPLETED ACCOUNT - LEGACY LOGIN The account has been created, and tutorial island is completed. Extra benefit: some accounts may have completed extra quests after completing tutorial island. TRADE READY - MINING ACCOUNT - LEGACY LOGIN 30+ mining - 10 Quest points - Over 100 Total Levels - 6 Quests completed - Legacy Login - 20+ Hours played time Example levels: TRADE READY - WOODCUTTING ACCOUNT - LEGACY LOGIN 40+ woodcutting - 10 Quest points - Over 100 Total Levels - 6 Quests completed - Legacy Login - 20+ Hours played time Example levels: All accounts have been created by me and I am the original owner. TERMS AND CONDITIONS: Discord username: antonio_kala Unique discord ID: 122031094752215044 Stock: 5k+
  5. It's how he got Scripter 3, he implemented the best moveMouseVeryVeryVeryVeryVeryRandomly() that I've ever seen.
  6. An old anti-ban meme:
  7. Notice "How to not get banned" basically makes botting worthless. The key to botting is to accept that you will get banned and maximize profit before it happens.
  8. ────────────── PREMIUM SUITE ────────────── ─────────────── FREE / VIP+ ─────────────── ──────────────────────────────────────────────────────────── ⌠ Sand crabs - $4,99 | Rooftop Agility - $5,99 | AIO Smither - $4,99 | AIO Cooker - $3,99 | Unicow Killer - £3,99 | Chest Thiever - £2,99 | Rock crabs - $4,99 | Rune Sudoku - $9,99 ⌡ ⌠ AIO Herblore - FREE & OPEN-SOURCE | Auto Alcher - FREE | Den Cooker - FREE | Gilded Altar - FREE | AIO Miner - VIP+ ⌡ ──────────────────────────────────── What is a trial? A trial is a chance for you to give any of my scripts a test run. After following the instructions below, you will receive unrestricted access to the respective script for 24 hours starting when the trial is assigned. Your trial request will be processed when I log in. The trial lasts for 24 hours to cater for time zones, such that no matter when I start the trial, you should still get a chance to use the script. Rules: Only 1 trial per user per script. How to get a trial: 'Like' this thread AND the corresponding script thread using the button at the bottom right of the original post. Reply to this thread with the name of the script you would like a trial for. Your request will be processed as soon as I log in. If i'm taking a while, i'm probably asleep! Check back in the morning Once I process your request, you will have the script in your collection (just like any other SDN script) for 24 hours. Private scripts: Unfortunately I do not currently offer private scripts. ________________________________________ Thanks in advance and enjoy your trial! -Apaec.
  9. Dashboard Concept I began taking UI/UX Design seriously as this is my career path that I will be taking. I still need to learn how to animate as well to present good prototypes. Live Prototype: https://xd.adobe.com/view/edb93f4a-44f4-424f-abfc-28568f08d66d/ EDIT:
  10. I'm glad to see people are enjoying the script! Congrats on 99 str! I joined the OSBot community without intending to make a profit - I'm fortunate enough to have a well-paying job and lots of disposable income. While I appreciate the gesture (really I do, thanks (-: ), the money would be much better spent with an organization such as the Electronic Frontier Foundation (EFF). The EFF has been fighting for the rights of netizens since its inception. If you really would like to make a donation, please make it to them as it will benefit not just me, but everybody else too @gearing @Mew @Failed4life
  11. @Howest @Aaron @Sysm @IamBot @Hokage - the only people i trust with services if it helps
  12. 2 points
    Features🤖 Mines Anywhere Banks Anywhere Ore Selection Pre-Hovering Banking/Dropping World Hopping Instructions📔 Have usable Pickaxe with you Start script next to ores Select Ore(s) Push Start Download⬇️ Here Avoiding Bans Donate🙏
  13. 2 points
    okay
  14. Shit guide. Reported for selling weed. I have premium antiban methods that literally hack jagex
  15. Please do not trade the user Zlay, he appears to have been compromised.
  16. If this is all true Alek, then explain why @Tom has the best antiban the world has ever seen.
  17. Here is the same question asked a thousand times before (over the last month): https://osbot.org/forum/topic/123963-bans/ https://osbot.org/forum/topic/123804-weath-didnt-leave-the-office https://osbot.org/forum/topic/121657-how-much-safer-is-weekend-botting https://osbot.org/forum/topic/119320-banned-on-weekend-rip-all-my-moey https://osbot.org/forum/topic/121519-question-about-mondays https://osbot.org/forum/topic/120508-weekend-botting https://osbot.org/forum/topic/119318-is-sunday-bans-common/ https://osbot.org/forum/topic/101664-weekend-bans/#comment-1133738
  18. 2 points
    business is business my man
  19. Disappointing OT: Add my skype: Khalidbanihani
  20. 2 points
    premium but the antiban sliders turned to 11. Jk it's not on this client. ~ 11 minute breaks every 1- 1 1/2 hrs on their equivalent mirror mode. Gotten a 99 with it before. Top class.
  21. Want to buy with OSGP? Contact me on Discord! Detailed feature list: - Supports all rooftops (Draynor, Al-Kharid, Varrock, Canafis, Falador, Seers, Polivneach, Relekka, Ardougne) - Supports most courses (Gnome stronghold, Shayzien basic, Barbarian stronghold, Ape toll, Varlamore basic, Wilderness (Legacy), Varlamore advanced, Werewolf, Priffddinas) - Supports Agility pyramid - All food + option to choose when to eat - (Super) Energy potions + Stamina potions support - Progressive course/rooftop option - Waterskin support - Option to loot and sell pyramid top - 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 463:ScriptFile.BreakFile.DiscordFile SAVEFILE = Saved Filename BREAKFILE = Breakmanager Filename DISCORDFILE= discordSettings 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 463'): -script 463:TaskList1.4515breaks (With breaks) -script 463:TaskList1.4515breaks.discord1 (With breaks & discord) -script 463:TaskList1..discord1 (NO breaks & discord, leave 2nd parameter empty) Proggies:
  22. 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!
  23. PPOSB - AIO Hunter Brand new trapping system just released in 2024! *ChatGPT Supported via AltChat* https://www.pposb.org/ ***Black chinchompas and Black salamanders have been added back*** Supports the completion of Varrock Museum & Eagle's Peak OR CLICK HERE TO PAY WITH 07 GOLD! The script has been completely rewritten from the ground up! Enjoy the all new v2 of the script JOIN THE DISCORD CHAT FOR QUESTIONS/ SUPPORT/ CHATTING/ UPDATES! New GUI: Features: Click Here Current functioning hunter tasks: (green - complete || yellow - started || red - incomplete) Screenshots: Progressive Leveling: 1-19 --> Crimson swift 19-43 --> Tropical wagtail 43-63 --> Falconry 63+ --> Red chinchompas Updates How to setup Dynamic Signatures Report a bug CLI Support - The script now supports starting up with CLI. The commands are given below. Please put in ALL values (true or false) for CLI to work properly. Make sure they are lowercase values, and they are each separated with an underscore. The script ID for the hunter bot is 677. Parameters: EnableProgression_EnableVarrockMuseum_EnableEaglesPeak_EnableGrandExchange Example: -script 677:true_true_false_true ***Don't forget to check out some of my other scripts!*** OSRS Script Factory Click here to view thread LEAVE A LIKE A COMMENT FOR A TRIAL The script is not intended for Ironman accounts. It still works for Ironman accounts, but you must have all equipment, gear, and items.
  24. 1 point
    Molly's Thiever This script is designed to quickly and efficiently level your thieving! Check out the features below. Buy HERE Features: - Capable of 200k+ per hour and 30k+ exp/ph on mid-level thieving accounts. - Quickly reaches 38 thieving to get started on those master farmers for ranarr and snap seeds! - Fixes itself if stuck. - Hopping from bot-worlds. - Stun handling so the bot doesn't just continually spam click the npc. - Drops bad seeds if inventory is full at master farmers. - Eats any food at the hp of your choosing. Supports: -Lumbridge men -Varrock tea -Ardougne cake -Ardougne silk -Ardougne fur -Kourend Fruit Stalls -Ardougne/Draynor master farmer -Ardougne/Varrock/Falador guards -Ardougne knight -Ardougne paladin -Ardougne hero -Blackjacking bandits as well as Menaphite thugs, this has limitations, click the spoiler below to see them Setup: Select your option from the drop down menu, it will tell you the location where the target is located. Fill out the gui and hit start. Simple setup! Proggies: Proggy from an acc started at 38 theiving:
  25. Had someone alrdy but they dont wana give pin which is pointless to me since i need to keep restocking on supplies *You provide everything i need,pots,gear etc * i need to have complete access to the acc 24hrs b4 thursday * I need access to bank so i can resupply the acc once i fail ( so have anything u dont want me to see off the acc) *you get a free inferno cape which most likely be valued at 75m+ within the 1st week
  26. Dank, you use illustrator?
  27. Quests are largely thought to be a component of their profiling, not the entirety. Doing a couple of quests won't prevent a ban. We can draw conclusions from F2P trade restrictions with 7QP and time requirements that are designed to hinder bot farmers.
  28. i fail to see how his 500$ donor stops you from using a middleman
  29. 1 point
    Welcome to my shop, I am offering these services to all you out there that need a Ban-safe account , ready to go. Air orbers ( 66 magic, 35 HP, 30 Defence ) : 6m EA Fungus bots ( Nature Spirit quest, 20hp , 43 prayer ) : 5m EA + 3m bond cost 40/40/40 accounts : 4m each Runecrafters ( 40 defence , 50 agility , 43 runecrafting , 50 mining ) : 15m each + 3m bond cost TOS: You can supply me with your level 3 accounts, you will pay BEFORE the service. OR ; I train my level 3 and you pay AFTER.
  30. It selects option 1.
  31. it will just select yes
  32. 1 point
    Muffins abusing power nothing new
  33. got me 62-82 no problems, no ban. thanks!
  34. Hit me up on skype if you still need ;)
  35. SKYPE is kholdsworth94@hotmail.com off work next few days can put in gains can discuss pricing on skype
  36. You cost more than top quality cocaine
  37. 1 point
    did u just post ponies on my osbot
  38. 1 point
    ....Share i tbed
  39. id like to trial this, does it work for brutal black drags in zeah?
  40. Guthans mode just needs a few more improvements until it actually works flawlessly, I just couldn't test it because of high reqs (expensive + levels), so I had to unit test a different armor and change the name after. I hope you have started the script with your current gear (non-guthans) and -then- enabled guthans mode? So the script knows which gear to revert to after healing. I will post a quick set-up guide for guthans no worries ^^ There is no need to be rude, I already said I am working on guthans I just need some time to get it right because it is difficult to code something that you can't actually test, so it will take a few updates to get it flawless, hopefully you guys understand ^^ As for move mouse outside screen - fixed, for plugins too As for prayer flick - it should be working as confirmed above by another user, although I will test again to make sure ^^ The timing is delicate so you may have to restart the script a few times to get the absolute perfect timing. Here's the latest update: New Update (v197.3) - Guthans mode improvements: fighting now added, healing trigger fixed, healing boundary fixed - Potion boost input level - you can now choose when to consume potions (how many level differences) - Fixed move mouse outside screen - Fight boundary walking is now randomized - BBD Plugin: script will now avoid deaths from other dragons by attacking the current dragon faster and getting in position faster - Teleport tabs added to GDK plugin anti-pk - Another attempt at OSX profile loading, again I can't test this because I don't have mac I will keep trying until I get it right ^^ update will automatically go live within 24 hours, this was a pretty easy update to code. If the script keeps going to bank, (plugins) make sure to set food in the inventory loadout so the script knows it's safe and will not die, otherwise the script will just keep going to the bank.
  41. Bigger letdown than all of saiyan's scripts tbh

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.