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 02/15/16 in all areas

  1. Quests should be properly cached in this version; once on bot load and every time you complete a new quest in the same bot session. This should fix a variety of issues users are experiencing. In addition I added a bunch of links on Neitznot to include runite mining along with other miscellaneous areas. If you are a scripter that would like to add new links, there are a few copy-pasta snippets in the Scripter's Forum. Changelog 2.4.40: -Rewrote quest caching -Added warning message in Account Selector -Added Settings getPlayerWeight() -Added 6 new custom links to WebWalking -Various performance tweaks Changelog 2.4.41: -Removed unused/deprecated methods Please test and post below so we can roll it into a Stable build as soon as possible. -The OSBot Staff
  2. People are intimidated by Task/Node based scripts because they think its difficult to write and understand. Well you shouldn't be scared, because I'm going to cover everything you need to know. Before going on to the tutorial, I'm expecting from you, To have at least basic knowledge of java To have at least basic knowledge of the OSbots API So what are Task/Node based scripts? Well its simply states but in OOP design. Alright, so we are going to make an abstract class for a Task. We will use this code which I will explain in a bit. import org.osbot.rs07.script.MethodProvider; public abstract class Task { protected MethodProvider api; public Task(MethodProvider api) { this.api = api; } public abstract boolean canProcess(); public abstract void process(); public void run() { if (canProcess()) process(); } } Breaking down this code just comes simply to a few things. A constructor which accepts the MethodProvider class, but why shouldn't it accept the Script class? Well because we only want the task to know about the OSbot api, not the whole methods that the Script class can have, like onLoop(), onStart(), etc. protected MethodProvider api; public Task(MethodProvider api) { this.api = api; } An abstract boolean public abstract boolean canProcess(); An abstract method public abstract void process(); And a run method public void run() { if (canProcess()) process(); } When a class will inherit the methods from the Task class, that class will have a constructor, an abstract method and boolean. The boolean canProcess() will be the condition on which the process() method will execute code. So basically we do the checks and processing with the run() method, we would just check if the condition is true and let the process() method execute code accordingly. Now, we got that abstract class Task, we are going to make it do work for us. We are going to make a drop task, the class will extend the Task class and it will inherit the abstract methods which the Task class has. The drop task will have a condition, the condition will be api.getInventory().isFull(), the condition will return true after the inventory is full and let the process() method execute script accordingly, the code will be api.getInventory().dropAll(); Our class will look something like this import org.osbot.rs07.script.MethodProvider; public class DropTask extends Task { public DropTask(MethodProvider api) { super(api); } @Override public boolean canProcess() { return api.getInventory().isFull(); } @Override public void process() { api.getInventory().dropAll(); } } As you can see we declare a constructor public DropTask(MethodProvider api) { super(api); } Now you might ask why the constructor looks a bit differently from the abstract Task class and what super(api) means? the super() keyword invokes the parents class constructor AKA the Task's class constructor. Now going further we see @Override public boolean canProcess() { return api.getInventory().isFull(); } So that is how our condition is handled, we just return the booleans variable based on what the getInventory().isFull() returns. In term, if the inventory is full the condition will be true, if the inventory is empty the condition will be false. Further on we see @Override public void process() { api.getInventory().dropAll(); } This is basically what our custom task will do after the canProcess() is true, aka when the condition is true. If inventory is full -> we will drop the items. ' After we got our custom task done, we need to let our script execute the tasks, now how we will do it? Simply we will open our main class which extends Script, meaning that the main class is a script. We declare a new ArrayList at the top of our class, to which we will add tasks to. Our main class should look like this import java.util.ArrayList; import org.osbot.rs07.script.Script; public class Main extends Script{ //this is our array list which will contain our tasks ArrayList<Task> tasks = new ArrayList<Task>(); @Override public int onLoop() throws InterruptedException { return 700; } } Now we have our ArrayList which we have a non primitive data type in it (<Task>), in term think of it like the ArrayList is inheriting the methods from Task class. All though its a different topic called https://en.wikipedia.org/wiki/Generics_in_Java you can look into that if you want. Alright, so we have our ArrayList, time to add our tasks to it. In our onStart() method, which only executes once when the script starts we simply add tasks.add(new DropTask(this)); So basically we are adding a new task to the ArrayList, by doing that, to the .add() we add a new object of our DropTask by doing .add(new DropTask(this)); our DropTask has a constructor for MethodProvider which we simply pass by doing DropTask(this) the keyword this references this class that contains the code. Now why does it work by referencing this class, its because the Main class extends Script, the Script class extends MethodProvider as its stated in the OSBots API docs. So we added our tasks to the ArrayList, now we need to check the conditions state and execute the code accordingly. We simply add this to our onLoop() method. tasks.forEach(tasks -> tasks.run()); Which will iterate trough all the tasks in the ArrayList and execute the run() method, as we remember the run() method in our abstract Task script simply checks the condition and executes code if the condition is true. After all this our main class should look like import java.util.ArrayList; import org.osbot.rs07.script.Script; public class Main extends Script{ ArrayList<Task> tasks = new ArrayList<Task>(); @Override public void onStart(){ tasks.add(new DropTask(this)); } @Override public int onLoop() throws InterruptedException { tasks.forEach(tasks -> tasks.run()); return 700; } } Now after all this you can start making your own tasks and adding them to the list. Alright for those who want quick pastes you can find them here in this spoiler: So no need to be scared, you just really need to try and do it, hope this tutorial helped.
  3. 👑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
  4. Abusing a bug, malicious intent.
  5. So I ended up getting busy with classes, and got burnt out from doing any other programming besides school related work. I just finished up the script, currently getting a proggy to get it released. Features: Food support for low levels Banking and killing Banking, tanning, and killing Node Framework for quick task switching Simple GUI Pretty much unbreakable. Obviously it can happen, but using the web walker makes it pretty hard for the script to get stuck somewhere. Simple Paint, more will be added to it Only interacts with your loot pile/loot close to the cow you just killed, so the script won't run around fighting other bots for cowhide. Switches to a different cow if another player is attacking one the bot first clicked on. On a side note, I've noticed cows get super crowded. I want to keep this script free, but if it gets to a point where f2p worlds are too overcrowded, it may need to become premium.
  6. ItemOnItem Select item A Select item B Set milliseconds between interactions (slightly randomized each interaction) ??? Profit LINK CHANGELOG 00.00.02 --- design tweaks 00.00.01 --- design tweaks 00.00.00 --- initial release
  7. 4 points
    I joined OSBot one year ago... u guys I hope my impact on this bot and community has been a positive one.
  8. 3 points
    I'm not sure if many people watch The Walking Dead here but i really enjoy it and i highly recommend people to watch it Season 6 episode 9 just came out today go watch it!!!
  9. Was listening to Frankie while making this, got the idea when "fly me to the moon" came on lol. Hope you like it!
  10. Gotta love the states vs tasks fight. Big boys write everything in onLoop() :ph34r: :ph34r: :ph34r:
  11. 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 use - Link to Sand Crabs script thread (better exp/h!) - Requirements: Camelot tabs / runes in main tab of bank Designated food in main tab of bank ~ 20-30+ combat level Features: CLI Support! (new!) Supports Ranged & Melee Attractive & fully customisable GUI Attractive & Informative paint Supports any food Custom cursor On-screen paint path and position debugging Supports [Str/Super Str/Combat/Super combat/Ranged/Attack/Super attack] Potions Collects ammo if using ranged Stops when out of [ammo/food/potions] or if something goes wrong Supports tabs / runes for banking Option to hop if bot detects cannon Global cannon detection Option to hop if there are more than X players Refreshes rock crab area when required Avoids market guards / hobgoblins (optional) Automatically loots caskets / clues / uncut diamonds Enables auto retaliate if you forgot to turn it on No slack time between combat Flawless path walking Advanced AntiBan (now built into client) Special attack support Screenshot button in paint GUI auto-save feature Dynamic signatures ...and more! How to start from CLI: You need a save file! Make sure you have previously run the script and saved a configuration through the startup interface (gui). Run with false parameters eg "abc" just so the script knows you don't want the gui loaded up and want to work with the save file! Example: java -jar "osbot 2.4.67.jar" -login apaec:password -bot username@[member=RuneScape].com:password:1234 -debug 5005 -script 421:abc Example GUI: Gallery: FAQ: Check out your own progress: http://ramyun.co.uk/rockcrab/YOUR_NAME_HERE.png Credits: @Dex for the amazing animated logo @Bobrocket for php & mysql enlightenment @Botre for inspiration @Baller for older gfx designs @liverare for the automated authing system
  12. 2 points
    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:
  13. DAY 80/120 Main Goals Create 12 maxed accounts to farm corpreal beast farm corp beast with 12 maxed accounts (will use a mate, 6 accounts each) All Sigi's Drops (Acrane, Spectral & Elysian) Make 10,000$ from corp beast only Mini Goals Create 12 accounts & finish island Get 60 60 60 melle stats Get 90 90 90 melle stats Get 43 prayer Get 90 mage Get all NMZ quest stats (listed below) Complete all NMZ quests (listed below) Kill a corporeal beast Progress Rewards Total progress table Timescale FAQ Supporters If you like this thread click the like button below
  14. Hey guys my name is Casper and this will be a little goal I will try to achieve I will 100% not stop if I reach 20k, will only try to aim higher.. yolo Total Made in 2016: $1785 January-$0 February(2/3/16)-$700 February (2/23/16)-$300 February (2/29/16)-$220 March (3/16/16) - $265 March (3/18/16) - $150 March (3/18/16) - $150 Overview of how things are going: I only spend 3hrs a day on RS btw Grinding real hard this month, should easily be able to hit that 2k a month hopefully after this month but who knows. What counts as profit: Anything I sell and cashout to my savings account If I have a large stock of gold, it does not count as profit until I sell it. Example: Have 500m bank right now but not selling What have I spent previous earnings from RS on?: TBH i bought a bunch of stupid shit... can't sum it up better Income Streams: Max Main Rental (Offsite) Account Services Account Sales How do I plan to increase my revenue from RS?: 1. Increase account sales production 2. Potentially make a website? 3. Increase passive income streams Long Term Goal: 1k USD Per Month 2k USD Per Month 3k USD Per Month Looking to make some money with me? No longer need anyone ty tho friends
  15. Hey guys, so I used to be a GFX designer on a somewhat popular RSPS called OS-Veldahar about a year ago. If you happen to have played that server and were active on the forums/server, my name was Nautical. Anyway, when I started making signatures on that server, I was using photoshop cs4 I believe. I then worked my way up to CS5 and started playing around with Cinema4D a bit. I'm not claiming to be an amazing GFX designer, but I was still learning and I like to think I was somewhat decent. Here's a few of my works, all done completely from scratch (Please note, looking back at these I see some things I did wrong and some things I could have done better. Once again, I'm not claiming to have been an MLG artist): I also did some work for a clan on the server called PvM Pures. Here's the banner, the logo I came up with, and an icon I made for one of the members. I was improving my skills more and more each day, then eventually I hit a plateau. I was also going through a lot of stress at the time, so this combined with the pressure of having to fulfill orders and work on multiple signatures/icons/banners each day led me to just quit the server and forums entirely without saying a word to anyone except the leader of the clan, to who I refunded money because I couldn't fulfill an order he had payed for. Anyway, I was thinking of getting back into it now that I'm in a better place in my life, and I also really like this community, so it would be cool to be known (or at least recognized) for something around here. I still have a lot to learn though if I want to be considered good, but I'll get there. So I was wondering if I should get back into it? And if I did, I'd hand out 4 free, completely custom signatures OR icons to those who request them here just for the sake of getting some practice and broadening my abilities a bit. So let me get your thoughts, and if you want a free signature, just post on here saying so with the following template filled out and if I decide I want to give this graphics thing another chance, I'll get to it. [icon or signature] [Name you want it to say] [Font: (optional, but thicker fonts look better in sigs;leave blank if you don't really give a shit)] [Overall theme] [Graphic (optional)] [Any other instruction/preferences] Thanksssssssssssssssssssssssssssssssssssssssssssss EDIT: Made the font a bit bigger bc walls of text with a small text size are no bueno, also changed up the template a bit
  16. The first thing I saw was a cursive lowercase R that uses the T as the beginning. I found that part cool.
  17. If someone recoverers one of those accounts we have no evidence of what was sold, please start using new threads for these 'proper' accounts,
  18. 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!
  19. Want to buy with OSGP? Contact me on Discord! Detailed feature list: - Supports all Normal and Lunar tablets - Supports all lecterns - Multiple Banking-butler methods Rimmington - Unnote clay Edgeville banking - Mounted glory Castle wars banking - Ring of dueling Butler (Advised option for max profits) Demon butler (Note when using butler, have Noted soft clay and coins in your inventory) - When NOT using a butler Use a friends house by name Use the advertisement house Use your own house - Worldhopper - 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 671: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 managers you do not need to specify -script 671): -script 671:TaskList1.4515breaks (With breaks) -script 671:TaskList1.4515breaks.discord1 (With breaks & discord) -script 671:TaskList1..discord1 (NO breaks & discord)
  20. I am proud to announce my official relaunch! CMHScripts is officially back! Current scripts: CMHMiner CMHRockCrabs CMHStronghold ASK FOR A TRIAL NOW! (24 hour trials) Must have post count > 20 or have a rank. Simply post with the script that you wish to get a trial for. YOU MAY NOT ASK FOR MULTIPLE TRIALS ON THE SAME SCRIPT. Doing so will result in loss of access to any CMHScripts product. DO NOT PM ME. POST HERE, AND WAIT FOR ME TO PROCESS IT.
  21. sick of countless bans and having to run through tutorial, anyone know if theres a script for it?
  22. have had script for a while. Its a good script but RC just has a high ass banrate
  23. Running it now on the teletab method and so far so good thank you
  24. masterbait to that bro. wtf u complaining.
  25. 1 point
    1 year das it mane
  26. I have a question??? Does this script work with MIRROR MODE??? THANKS BRO
  27. Love it! could i grab a trial my man?
  28. Script version 1.5.0 - Graphical redesign of settings interface - Added support for Combat & Super combat potions - Added support for Stamina & Super energy potions - Added support for a secondary weapon for special attack - Added a route using the arceuus barrows teleport - Added an option for above route to teleport out of the tunnels - Added mind runes to the loot priority option - Using protect from melee for tunnel traversal is now optional - Can now equip bolt racks to make space - Now gets killcount in the room with lowest levelled enemies on route - Fixed an issue with banking barrows loot also used in gear setups - Fixed an issue with remembering where the tunnel is after emergency bank runs __________________________ The script now uses local image resources instead of online resources; if there are any issues with this transition, I will try to fix them ASAP when the update goes live. Additionally, if there are any issues with resize-behavior with the new settings UI, please report that to me as well.
  29. 1 point
    SDN Manager just changed so might take some time :tears:

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.