Jump 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/14/16 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. The bot is currently down, please wait while the developers fix it. There is no ETA meaning no one really knows when its going to be fixed , therefore don't ask when its going to be back up.
  3. Some background info for some people that might like it: Jagex changed some hooks regarding Character.getHealth() and Character.getMaximumHealth(). From now it's not possible anymore to get the precise amount of health a character has, you can only get the a health percentage instead. I assume that Character.getHealth() and Character.getMaximumHealth() will be removed from the API. Some scripts might also be broken after this update so don't expect everything to work flawless when the bot goes live again.
  4. A souls bane One small favour Wanted Slug menace Elemental workshop II All quests cost more than 1m and all reward 1qp except for one small favour With the list i provided he could have gotten atleast 15 qp instead of the 6 from those quests, which to me, looks like it would have been much much more beneficial than what was done. He wants me to pay 25m for 19 qp, thats like 1.4m per qp. He also told me that it would be better if i let him choose the quests, which is why i did. I requested dt and lunars specifically (which means he'd have to do prequests where needed to) however the fact that 9m was spent on 5 quests while i provided a very very long lost of quests which cost less than 1m with some costing 100k/500k/700k means that i couldve gotten much much better value for my money than what was provided. Also, the feud shouldnt really be included from the quests since it cost 2m and helped him with thieving (which he was also supposed to do) so yes, i feel like if i had known he would have picked all the expensive quests and neglect a lot of cheaper ones i wouldve chose them myself.
  5. Here is a simple class I have written to retrieve grand exchange information for specified osrs items, using the json file hosted by rsbuddy at: https://rsbuddy.com/exchange/summary.json Note the retrieval of this data should only be done once at the start of your script, and you should store the map for use later rather than re-calling the method. You may also get better performance using a JSON library. RSExchange.java import java.io.BufferedReader; import java.io.InputStreamReader; import java.net.URL; import java.net.URLConnection; import java.util.HashMap; import java.util.Map; import java.util.Optional; import java.util.regex.Matcher; import java.util.regex.Pattern; public final class RSExchange { private final String ITEMS_JSON; public RSExchange() { ITEMS_JSON = getItemsJson().orElse(""); } private Optional<String> getItemsJson() { try { URL url = new URL("https://rsbuddy.com/exchange/summary.json"); URLConnection con = url.openConnection(); con.setRequestProperty("User-Agent", "Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36"); con.setUseCaches(true); BufferedReader br = new BufferedReader(new InputStreamReader(con.getInputStream())); String json = br.readLine(); br.close(); return Optional.of(json); } catch (Exception e) { e.printStackTrace(); } return Optional.empty(); } public final Optional<ExchangeItem> getExchangeItem(final String itemName) { return getItemID(ITEMS_JSON, itemName).map(id -> new ExchangeItem(itemName, id)); } public final Map<String, ExchangeItem> getExchangeItems(final String... itemNames) { Map<String, ExchangeItem> exchangeItems = new HashMap<>(); for (final String itemName : itemNames) { getItemID(ITEMS_JSON, itemName).ifPresent(id -> exchangeItems.put(itemName, new ExchangeItem(itemName, id))); } return exchangeItems; } private Optional<Integer> getItemID(final String json, final String itemName) { return getItemFromJson(json, itemName).flatMap(this::getItemIDFromItemJson); } private Optional<String> getItemFromJson(final String json, final String itemName) { Matcher matcher = Pattern.compile("(\\{[^}]*\"name\"\\s*:\\s*\"" + Pattern.quote(itemName) + "\"[^}]*})").matcher(json); return matcher.find() ? Optional.of(matcher.group(1)) : Optional.empty(); } private Optional<Integer> getItemIDFromItemJson(final String json) { Matcher matcher = Pattern.compile("\"id\"\\s*:\\s*(\\d*)").matcher(json); return matcher.find() ? Optional.of(Integer.parseInt(matcher.group(1))) : Optional.empty(); } } ExchangeItem.java import java.io.BufferedReader; import java.io.InputStreamReader; import java.net.URL; import java.net.URLConnection; import java.util.Optional; import java.util.regex.Matcher; import java.util.regex.Pattern; public final class ExchangeItem { private final String name; private final int id; private int overallAverage = -1; private int buyAverage = -1; private int sellAverage = -1; private int buyingQuantity; private int sellingQuantity; public ExchangeItem(final String name, final int id) { this.name = name; this.id = id; updateRSBuddyValues(); } public final String getName() { return name; } public final int getId() { return id; } public final int getBuyAverage() { return buyAverage; } public final int getSellAverage() { return sellAverage; } public final int getBuyingQuantity() { return buyingQuantity; } public final int getSellingQuantity() { return sellingQuantity; } public void updateRSBuddyValues() { try { URL url = new URL("http://api.rsbuddy.com/grandExchange?a=guidePrice&i=" + id); URLConnection con = url.openConnection(); con.setRequestProperty("User-Agent", "Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36"); con.setUseCaches(true); BufferedReader br = new BufferedReader(new InputStreamReader(con.getInputStream())); String json = br.readLine(); br.close(); getItemValue("overall", json).ifPresent(overallAverage -> this.overallAverage = overallAverage); getItemValue("buying", json).ifPresent(sellAverage -> this.sellAverage = sellAverage); getItemValue("selling", json).ifPresent(buyAverage -> this.buyAverage = buyAverage); getItemValue("buyingQuantity", json).ifPresent(buyQuantity -> this.buyingQuantity = buyQuantity); getItemValue("sellingQuantity", json).ifPresent(sellingQuantity -> this.sellingQuantity = sellingQuantity); } catch (Exception e) { e.printStackTrace(); } } private Optional<Integer> getItemValue(final String key, final String json) { Matcher overallAvgMatcher = Pattern.compile("\"" + key + "\"\\s*:\\s*(\\d*)").matcher(json); if (overallAvgMatcher.find()) { return Optional.of(Integer.parseInt(overallAvgMatcher.group(1))); } return Optional.empty(); } public final String toString() { return String.format("Name: %s, ID: %d, Overall AVG: %d gp, Buying AVG: %d gp, Selling AVG: %d gp, Buying Quantity: %d, Selling Quantity:%d", name, id, overallAverage, buyAverage, sellAverage, buyingQuantity, sellingQuantity); } } Usage: final RSExchange rsExchange = new RSExchange(); rsExchange.getExchangeItem("Yew logs").ifPresent(System.out::println); This would print out Name: Yew logs, ID: 1515, Overall AVG: 355 gp, Buying AVG: 355 gp, Selling AVG: 354 gp, Buying Quantity: 90576, Selling Quantity :71726
  6. Dear Community, I've removed the ability for trade with caution to access the market. They can no longer view any section in the market, except the dispute section and Currency section. They are no longer allowed to engage in any other market. They also can not use the pm feature in the chat box to remove any access to market. thanks, @Maldesto
  7. 3 points
    i was wondering the same thing, his question was in fact calm, cool, collected and with warrant. Don't be such a dick
  8. Brought to you by the #1 most sold script series on the market. Come and see why everyone's choosing Czar Scripts! This is the most advanced Agility bot you will find anywhere. BUY NOW $9.99 NEW! Added Both Wyrm Courses! SCRIPT INSTRUCTIONS Optimal Setup for the bot: Please set the mouse zoom to far away (to the left, like below) so that more obstacles can be seen in the view, and so the script can be more stable and reliable Also, make sure to have roofs toggled off (either go to settings tab or type ::toggleroof) for optimal results
  9. 2 points
    Before buying, please ensure you check-out with the correct script. Swapping scripts is not possible. View in store $4.99 for lifetime access Features: All spawns - Supports every multi-crab spawn point both along the south coast of Zeah and Crab Claw Isle All combat styles - Supports Ranged, Magic and Melee combat training. The script will not bank runes of any type Saving GUI - Intuitive, re-sizeable and fully tool tipped GUI (Graphical User Interface) allowing you to tailor the script session to your needs, with configuration saving / loading Human replication - Designed with human simulation in mind - multiple options to replicate human behaviour available in the GUI Setup customiser - Inventory customiser allows you to visually see your trip setup CLI support - The script can be started from the command line All potions - Supports all relevant potion types (including divine potions!), multiple potion types simultaneously and varying potion ratios Healing in a range - Dual slider allows you to specify a range within which to consume food. Exact eat percentages are calculated using a Gaussian distributed generator at run time Healing to full at the bank - When banking, the script will eat up to full hit points to extend trip times Safe breaking - Working alongside the OSBot break manager, the script will walk to safe place approximately two minutes before a break starts to ensure a successful log out Anti-crash - Smart crash detection supports multiple anti-crash modes (chosen in the GUI): Hop worlds if crashed - the script will walk to a safe place and hop worlds until it finds a free one, at which point it will resume training Force attack if crashed - the script will fight back and manually fight pre-spawned sand crabs until the crasher leaves Stop if crashed - the script will walk to a safe place and stop Ammo and Clue looting - Clue scroll and Ammo looting system based on a Gaussian-randomised timing scheme All ammo - Supports all OSRS ammo types and qualities Spec activation - Special attack support for the current weapon to maximise your exp per hour Auto-retaliate toggling - The script will toggle auto-retaliate on if you forget Move mouse outside screen - Option to move the mouse outside the screen while idle, simulating an AFK player switching tabs Refresh delay - Option to add a Gaussian-randomised delay before refreshing the chosen session location, simulating an AFK player's reaction delay Visual Paint and Logger - Optional movable self-generating Paint and Timeout Scrolling Logger show all the information you would need to know about the script and your progress Progress bars - Automatically generated exp progress bars track the combat skills that you are using Web walking - Utilises the OSBot Web alongside a custom local path network to navigate the area. This means the script can be started from anywhere! Safe banking - Custom banking system ensures the script will safely stop if you run out of any configured items Safe stopping - Safely and automatically stops when out of supplies, ammo or runes Dropping - Drops useless/accidentally looted items to prevent inventory and bank clutter All food - Supports pretty much every OSRS food known to man. Seriously - there's too many to list! ... and many more - if you haven't already, trial it! Things to consider before trying/buying: Mirror mode - currently there appear to be some inconsistencies with behaviour between Mirror mode and Stealth Injection meaning the script can behave or stop unexpectedly while running on Mirror. I would urge users to use the script with Stealth Injection to ensure a flawless experience! Since Stealth Injection is widely considered equally 'safe' to mirror mode and comes with a host of other benefits such as lower resource usage, this hopefully shouldn't be a problem. Using breaks - the script supports breaks and will walk to a safe place ready to log out approximately two minutes before a configured break starts. However, upon logging back in, your spot may no longer be open. If you configure the crash mode to be either 'Hop if crashed' (default) or 'Stop if crashed', this will not prove to be a problem. However if using 'Force attack if crashed', the script will attempt to take back the spot by crashing the occupying player and manually attacking spawned sand crabs. Be aware that players have a tendency to report anti-social behaviour such as this! Avoiding bans - while I have done my utmost to make the script move and behave naturally, bans do occasionally happen, albeit rarely. To minimise your chances of receiving a ban, I would strongly suggest reviewing this thread written by the lead content developer of OSBot. If you take on board the advice given in that thread and run sensible botting periods with generous breaks, you should be fine. That being said, please keep in mind that botting is against the Oldschool Runescape game rules, thus your account will never be completely safe and you use this software at your own risk. Setting the script up - I have done my best to make the GUI (Graphical User Interface) as intuitive as possible by making all options as self explanatory as I could, however if you are not sure as to what a particular setting does, you can hover over it for more information. If that doesn't help, just ask on this thread! Web-walking - alongside a network of paths, the script moves around with the OSBot web-walking system, using it when in unknown territory. While it has proven very reliable, there are naturally some areas for which the web-walker may struggle. As a result, prior to starting the script, I would highly recommend manually navigating your player close to the sand crabs bank, however in practice, anywhere on Zeah should be fine. Script trials: I believe that trying a script before buying is paramount. After trying the script, hopefully you will be convinced to get a copy for yourself, but if not you will have gained some precious combat experience! If you're interested in a trial, please follow the instructions on my trials thread which can be found here. Gallery: Start up GUI (Graphical User Interface): Paint (optional, movable and self-generating): User screenshots: Recent Testimonials: Starting from CLI: This script can be started from the command line interface. There is a single parameter, which can take two (and only two) values: 'gui' or 'nogui'. 'gui' will start the script and show the gui, 'nogui' will skip the GUI setup and start the script using your save file as the configuration. To start from CLI with 'nogui', the script requires a valid GUI save file to be present - if you haven't already, start the script manually and configure the GUI to suit your needs. Then hit 'Save configuration' and in future starting from CLI will use these configured settings. The script ID is 886. Example CLI startup: java -jar "osbot 2.4.137.jar" -login apaec:password -bot apaec@example.com:password:1234 -debug 5005 -script 886:nogui
  10. Molly's Chaos Druids This script fights chaos druids in Taverly dungeon, Edgeville dungeon and Ardougne. Profits can easily exceed 200k p/h and 60k combat exp/ph, this is a great method for training low level accounts and pures. Buy HERE Like this post and then post on this thread requesting a 24hr trial. When I have given you a trial I will like your post so you will receive a notification letting you know you got a trial. Requirements - 46 Thieving for Ardougne -82 Thieving and a Lockpick for Yanille - 5 Agility for Taverly(recommended) - No other requirements! Though I do recommend combat stats of 20+ as a minimum Features: - Supports eating any food - Hopping out of bot worlds - Recovers from deaths(respawn point must be lumbridge), includes re-equipping items on death - Potion support - Automatically detects and withdraws/uses Falador teleport tabs if using Taverly dungeon - Automatically detects and withdraws/equips/uses glories if using Edgeville dungeon - Supports looting bag Setup: Start the script, fill out the GUI, and be in the general area of where you want to run the script. CLI setup: Proggies: In the works: Known bugs: Bug report form, this is a MUST for problems to be resolved quickly: Description of bug(where, what, when, why): Log: Your settings: Mirror mode: Y/N
  11. Howdy all! Just lost my Main OSRS account to Jagex with a Perm ban... I created this account in 2004. It also had insane RS3 stats. Unfortunately, I also kept my riches on this account .. It won't stop me though, So I'm back making another OSRS Main BUT with no botting... I really need a bot free account (Seeing as it's been a very long time since I had botted on this account, must have pissed of Jagex with all the bot account's I had been making recently) ... Here's my journey to hopefully a lovely high skilled Main account with plenty of 99's and lots of gold. I had 4M left on another account that I transferred over. Any kind donations to help me back on my feet & to support me on my journey.. are really appreciated! Any goal suggestions/tips/advice are more than welcome! Feel free to PM me for Username .. Let's be Friends Keep updated! - Follow this post. The Journey Begins. [14/07/2016] Starting Skills/Bank/Quests Current Goals: 60 Attack. 80 Strength. 60 Defence. Goals Achieved: 1st Goal: 40 Attack, Strength, Defence 2nd Goal: 70 Strength Account Events: Coming Soon! -- Diary Updates: -- Update #1. 3:16AM 15/07/2016 Bank / Quest's remain the same. Info: N/A Update #2. 9:48AM 15/07/2016 Bank / Quest's remain the same. Info: N/A Update #3. 12:16AM 20/07/2016 Bank / Quest's remain the same. Info: Had break over weekend.. of course Update #4. 4:11AM 30/07/2016 Bank / Quest's remain the same. Info: Apologies for slow progress & updates! Currently moving home so can only get limited training done at moment. Diary Legends (Current Supporters - Donate to become Legend ) iSkill4U Diary's Last Update: 4:16AM 30th July 2016.
  12. I have my private updater. An updater searches for bytecode patterns to search for fields, classes and methods.
  13. everytime i see you post, i stare at your signature for like an hour
  14. 2 points
    nahh these acc take over 50 hours of combat i think you are underestimating 40 attk 70 str 60-70 str is over 10 hours alone plus its bonded thanks for your opinon tho
  15. I didnt go through all the quests which cost lower than 1m but the point still stands, as maldesto said, you wanted to do the most expensive quests so i could pay more. My suggestion for a settlement would be you doing all the quests (which i can do) which cost less than 1m. Because point still stands you tried to get as much money as possible from me and make me py i really hefty price for a service which wouldnt cost the amount of gp you planned on making me pay. Also, the 16qp i mentioned cost 6.7m while you did 6qp for 9m.. So yeah. After further discussions with the user my settlement i just posted doesnt really suite him. I dont know why, but he doesnt want to do it. Seeing as he did deceive me by telling me that him choosing the quests would be better for me, and evidently, they werent i think we should go with what maldesto said.
  16. After some research i could have gotten 16 quest points for 6.7m! He got me 6 quest points for 9m. Its pretty obvious that he didnt do the quests which would be 'better' for me, as he supposedly said. So, as maldesto said, there was a much much cheaper alternative.
  17. 2 points
    its time to have a life for 1 hour
  18. Lol wtf, I just levelled a new account to 80 agility and still no bans, make sure to bot responsibly man, it will reduce ban rate by soo much 2-3:1 hr break ratio, avoid botting on rs update days, rs hours, reply to ingame chat, etc etc. 2 hours then 4 hours is far too quick for a ban, sounds almost unbelievable it's not really difficult
  19. New update: v116 - Added port sarim upstairs fix, with banking now - Added an update for sand/rock crabs AFK mode - Added an update for b2p mode - Added a button 'Guthans mode' Can a mac/linux user please test the script (v115 is currently live), I hope it works this time I still need to test guthans mode, I just converted the code from aio stronghold script to the fighter script (it already works in stronghold script) please let me know if there are any bugs. I will test it asap, just levelling a new account real quick. At 70 70 65 so far For b2p mode, the script will now convert bones to peaches even if there aren't many bones in inventory (only for surviving) and if there are no bones the script will go to nearest bank and then stop script good luck all Keep the suggestions/feedback coming ^^ update should be live within a few hours
  20. It's beside the "File" button. Can't post screenshot because I don't have any accounts going for a while.
  21. Want to buy with OSGP? Contact me on Discord! Features: - Recently added: Strength pumping - Supports every Bar available - Potion support (Optional) - Restocking coffer (Optional) - Coal bag support - Use a bucket too cool bars (If no ice gloves available) - Ice/gold gaunlets swap when making gold bars for the extra Experience - A clean and easy interface to start and track the script. - Custom webwalking using A* pathfinding algorithm - Randomized pathing system, humanlike paths, no repetitive clicking. - Script will never idle, start script and let it run forever! Antiban / Anti-pattern: - Randomized clicking positions - Random actions to break the pattern - Pathing is andom and close to human behaviour - Random/dynamic sleep times for humanlike interactions How to use CLI parameters: - Example Usage: -script 630:SAVEFILE.BREAKFILE 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: -script 630:SteelCoalBag.4515breaks Frequently asked questions (FAQ): Q: Where can we find this script? A: This can be found at the store here Q: How and where do I start this script? A: Simply start the script at Blastfurnace Q: Why does the script pays the Foreman A: If your smithing level is below 60, you have to pay 2500gp every 10min Will also pay the foreman after every restart Proggies: Blast Furnace Guide:
  22. 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:
  23. Release notes (2.0): Drastically decreased cpu usage Fixed issues with attaching after login Different bot instances will no longer try to attach to already used client Configurable fps and reaction time (Lower your cpu usage even more!) New hook/callback support Miscellaneous other bugfixes Release notes (2.1): Reduced memory usage Fixed crashing/instability issues after client has been running for some time Does not block F2-F4 keys anymore Note: Please use latest dev build of osbot for additional cpu usage reductions. 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.
  24. 1 point
    http://socialblade.com/youtube/user/newdramaalert/realtime Quite fun watching subs drop tbf.
  25. 1 point
    That's not the full set. Final clue is a combination of all the previous clues. It has not been cracked by anyone yet.
  26. when will the bot be online?
  27. A trial would be stellar
  28. Liked the post, looks very interesting! Possible to try it out in a trial before buying?
  29. 1 point
    Shots fired
  30. I've updated it. Should be a bit more memory efficient now. Still some improvements that could be made but I cba
  31. Yeah I will be improving this further, I just wrote this up quickly to get things started
  32. I have another thread post where it is public to test/review. And it shut down on you because it was a 3 day trial starting the day i made this thread. I will message you the link to the other thread. Yezir, I can do this. Sorry for some reason I never got any notifications to people commenting on this thread. I will work on that soon, pretty busy with school at the moment. Glad you like it though man! I still haven't been ban using it yet. Hope everyone else has the same luck. EDIT: Punchbaggies, I will message DL link for non trial version as soon as I wake up. Currently on 1 hr wait before I can send another message.
  33. Hey im ready to start str training on my pure with this script, where do i do the sand crab settings? sorry for being lazy.
  34. 1 point
    The script used a addy dagger p++ since i did the quest on a low level, it poisons the demon and then hides and lets poison kill it. Very smart by scripter, just buy an addy dagger p++ or something like that
  35. It only makes sense, Bernie was out of the race and he is a Democrat. He'd rather another Democrat win then a Republican.
  36. Could I have a trial please? Also does this bury any kind of bones the monster drops? Like some monsters drop 3 kind of bones, does it bury them all?
  37. May I please have a 24 hour runtime trial? I'd really appreciate it, thanks in advance!
  38. Order finished , knob wasted 2 days to let other pleb do quest for him
  39. No problem! I've added it to you post ;)

Account

Navigation

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.