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 03/22/16 in Posts

  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. 4 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
  3. Example WarriorsGuild wg = new WarriorsGuild(this); //... Defender next = wg.getNextDefender(); if(next != null) { if(next == Defender.NONE) { //Go talk to Kamfreena } else if(next == Defender.RUNITE) { // If inventory contains rune defender -> go unlock Lorelai's door // Else -> continue killing regular cyclopses } else if(next == Defender.DRAGON) { // Kill high-level cyclopses } else { // Kill regular cyclopses } } Code package org.botre.warriorsguild; import java.awt.Point; import org.osbot.rs07.script.MethodProvider; public class WarriorsGuild { public static final int CONFIG = 788; public enum CatapultProjectile { SPIKED(679, CatapultDefenceStyle.STAB), ANVIL(680, CatapultDefenceStyle.BLUNT), KNIVES(681, CatapultDefenceStyle.SLASH), MAGICAL(682, CatapultDefenceStyle.MAGIC); private int id; private CatapultDefenceStyle defenceStyle; private CatapultProjectile(int id, CatapultDefenceStyle defenceStyle) { this.id = id; this.defenceStyle = defenceStyle; } public static CatapultProjectile forId(int id) { for (CatapultProjectile value : values()) { if(value.id == id) return value; } return null; } public int getId() { return id; } public CatapultDefenceStyle getDefenceStyle() { return defenceStyle; } } public enum CatapultDefenceStyle { STAB(1, new Point(564, 232)), BLUNT(2, new Point(564, 288)), SLASH(3, new Point(563, 344)), MAGIC(0, new Point(563, 401)); private int maskedValue; private Point widgetPosition; private CatapultDefenceStyle(int maskedValue, Point widgetPosition) { this.maskedValue = maskedValue; this.widgetPosition = widgetPosition; } public int getMaskedValue() { return maskedValue; } public Point getWidgetPosition() { return widgetPosition; } public static CatapultDefenceStyle forConfigValue(int configValue) { for (CatapultDefenceStyle value : values()) { if(value.getMaskedValue() == (configValue & 0b00000011)) return value; } return null; } } public enum Defender { NONE(0), BRONZE(1), IRON(2), STEEL(3), BLACK(4), MITHRIL(5), ADAMANTITE(6), RUNITE(7), DRAGON(-1); private int maskedValue; private Defender(int maskedValue) { this.maskedValue = maskedValue; } public int getMaskedValue() { return maskedValue; } public static Defender forConfigValue(int configValue) { if(isLorelaisDoorUnlocked(configValue)) return Defender.DRAGON; for (Defender value : values()) { if(value.getMaskedValue() == ((configValue >> 3) & 0b000001111)) return value; } return null; } } private MethodProvider ctx; public WarriorsGuild(MethodProvider ctx) { this.ctx = ctx; } public CatapultDefenceStyle getCatapultDefenceStyle() { return CatapultDefenceStyle.forConfigValue(ctx.getConfigs().get(CONFIG)); } public boolean isDefendingFromCatapultProjectile(CatapultProjectile projectile) { return getCatapultDefenceStyle() == projectile.getDefenceStyle(); } public Defender getNextDefender() { return Defender.forConfigValue(ctx.getConfigs().get(CONFIG)); } private static boolean isLorelaisDoorUnlocked(int configValue) { return ((configValue >> 12) & 0b00000001) == 1; } public boolean isLorelaisDoorUnlocked() { return isLorelaisDoorUnlocked(ctx.getConfigs().get(CONFIG)); } }
  4. โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€ 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.
  5. 2 points
    Want to buy with OSGP? Contact me on Discord! Detailed feature list: - Supports banking at 99% of the locations - Task based setup (1-99) - Supports every fish (Shrimps, sardine, herring, anchovies, mackerel, trout, cod, pike,salmon, tuna, lobster, bass, Leaping trout/salmon/sturgeon, swordfish, monkfish, shark, dark crab, angler fish, sacred eel, infernal eel) - Supports almost every bank location (New ones can be requested) (Lumbridge swamp, Al-Kharid Sea, Draynor, Lumbrdige river, barbarian village, shilo village, Catherby, corsair cove, fishing guild, piscatoris, port piscarilius, karamja, jatizso, seers, gnome stronghold, Lands' end, Zul andra, Mor Ul rek) - Fish & bank (Preset) - Fish & bank (Custom) supports almost every location - Fish & Drop (Custom) supports every fishing spot - Barbarian fishing (Select leaping fish at fish & drop) - Cook fish when fire is nearby (Fish & Drop Only) - Minnows support - Karambwans + Karambwanji support - Aerial fishing support - Drift net fishing support - Humanlike idles - Dragon harpoon special - Barehand fishing option - Fishing barrel support - Spirit flakes support - Drop clue bottles support - 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 571: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 571): -script 571:TaskList1.4515breaks (With breaks) -script 571:TaskList1.4515breaks.discord1 (With breaks & discord) -script 571:TaskList1..discord1 (NO breaks & discord) Proggies:
  6. 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:
  7. Click a door 30 times during tutorial island -> instaban.
  8. 1 point
    Want to buy with OSGP? Contact me on Discord! Detailed feature list: - Chop & Bank (Presets) Preset locations for quick a start without too much settings to choice from (Barbarian assault, Castle wars, Catherby, Draynor, Edgeville, Falador-East, Gnome stronghold, Grand exchange, Hardwood grove, Mage training arena, Neitiznot, Port sarim, Rimmington, Seers, Varrock-East/West, Woodcutting guild, ...) - Chop & bank (Custom) Chop on any location of your choice Set a chop position and a chop radius Select the tree type you want to chop Banks at the closest bank possible - Chop & Drop Chop on any location of your choice Set a chop position and a chop radius Select the tree type you want to chop Drops all logs (unless fletching is used) Option to fletch your logs into arrow shafts OR bets item possible based on your level and Logs UIM mode (Only drops logs, carefull with bird nests etc.) - Redwood Option to drop logs instead of banking - Forestry support (Struggling sapling, Tree roots, Fox, Pheasant, Ritual circles, Leprechaun, Entlings, Beehive) - Log basket support - Bird nest pickup support - Axe special attack (Crystal, Dragon, Infernal, ...) - Progressive axe upgrading - Humanlike idles - Menu invokes - 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 569: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 569): -script 569:TaskList1.4515breaks (With breaks) -script 569:TaskList1.4515breaks.discord1 (With breaks & discord) -script 569:TaskList1..discord1 (NO breaks & discord) Proggies:
  9. 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
  10. This tutorial will cover everything required to write your own OSBot scripts. Although it is quite lengthy, don't let this put you off - it shouldn't take more than a couple of hours to follow through, at the end of which you will have learned the scripting basics and will have your very own tea thieving script which you can modify to your liking. Good luck! Previous required knowledge: None Knowledge of basic java helps but is not required! What this guide covers: Downloading your code editor (IDE) Basic programming concepts A quick guide to java Writing a script with the OSBot API Running your script Downloading Eclipse: Setting up your project: Language basics: Java basics: Script backbone: Compiling the script: Writing the script: Best practices and conventions: Completed Tea thieving source code: That's the end of this tutorial, hopefully it was useful and concise enough. As I mentioned earlier, remember to ask LOTS OF QUESTIONS! Also remember that google is your friend! ? Although it may seem OSBot scripting is a niche use of java, many questions can translate to more widely adopted counterparts - use this to your advantage. If you have any questions do not hesitate to post as a reply below. Since I follow this thread, I will receive a notification if you do and will do my best to get back to you ASAP! - Apaec
  11. 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
  12. 1 point
    Molly's Orber This script is designed to make earth orbs and air orbs for over 350k gp/ph with the added benefit of getting over 30k mage exp per hour! Buy HERE Requirements: - 66 mage for air orbs, 60 for earth orbs. - 40+ hp recommended(especially at low def) Features: - Supports using mounted glory in house(requires house teleport tablets) - Supports eating any food at bank, when under a set hp - Hopping out of bot worlds - Recovers from deaths(respawn point must be lumbridge) - Emergency teleporting when under a set hp - Stamina potion usage, the bot will use one dose prior to each run - World hopping in response to being pked to prevent pkers from farming. -Ability to bring one food with you in case you drop below the emergency teleport hp, script will still tele if you drop below it and have already eaten your food. -Enabling run when near black demons to prevent some damage. -Re-equipping armor in inventory on death. Setup: Start at Edge bank, have all supplies next to each other in your bank, preferably in the front tab at the top. You must have the item "Staff of air" for air orbs or "Staff of earth" for earth orbs. Have a fair amount of cosmic runes and unpowered orbs, glories, as well as some food to eat as the bot walks past black demons and will take some damage. FOR EARTH ORBS YOU MUST HAVE ANTIDOTE++. If you are using house mounted glory option set render doors open to "On" under your house options in Runescape. CLI setup: Proggies:
  13. Joined Osbot in November. Here is my progress so far. Current Total level: 1300+ Skills I didn't bot: Slayer, and Prayer. -no bans so far -I don't use any scripts other than the ones I write myself. **I used APA AIO cooker before I wrote my own. I rate APA's cooker 10/10** -I don't bot one skill for more than three hours at a time Goal is at least 1750 Total Lvl Thanks for providing a great service Osbot
  14. Changelog 2.4.43: Misc. webwalking fixes, including fix to http://osbot.org/api/org/osbot/rs07/api/webwalk/impl/CustomInteractingScript.html#install-boolean-org.osbot.rs07.api.map.Position-java.lang.String-java.lang.String:A-org.osbot.rs07.api.map.Position-org.osbot.rs07.api.map.Position- Improved certain anti-detection features. Now collects certain data from client to help us improve anti-detection features even more (Can be opted out in launcher's "About" tab). Other silent fixes.
  15. 1 point
    Welcome, good luck with scripting.
  16. http://translate.google.com
  17. Khal #1 I will post 99 strength for you too Khal!
  18. - trial length 2 days - Reason for trial - Looking for a runecrafting script that works . Never bought script so far - Are you ging to give feedback on the script? Iff I see something to improve, I will
  19. You gotta put some effort into botting if you want to avoid bans, set character appearance to something original, (no level 3 typical botter appearance), reply to in-game chat, bot on non-UK work hours to stay off the radar, log out during RS livestreams etc etc. The actual bot can only do so much for bans, the rest is up to you for not getting banned :P Here's a quick proggy for my new pure: going for 36 wc for lost city XD
  20. Make sure you set your bank pin in the OSBot account manager dude, the script doesn't handle anything account-related, it only bots :P The OSBot client handles logging in, banking, break handler etc etc, for security reasons I guess As for waterbirth, the option is there, I have given a 24hr trial good luck ;)
  21. 1 point
    Had a look, added another check to see if main hand is equipped before banking, gotta wait for sdn update
  22. so

    1 point
    I simply give him some cadava berries.
  23. However they look perfectly legit I am wondering what the secret is of this training method. Would you gain faster XP the more people are there? Is Jagex keeping secrets from us?
  24. What do I need to see? Only see some legit players that have not cared to change their bald head and clothing
  25. .

    1 point
    someone needs to fix that other than that, congrats @Asuna PS: i did a something
  26. so

    1 point
  27. Can I get a trial? Thanks!
  28. just bot and send a print screen to @jagexweath on twitter.
  29. 1 point
    Hopefully the update will be pushed soon that will sort the hp issue D: but thank you
  30. There is a rule that says you can't rwt...
  31. 1 point
    Trial please
  32. hi, can i have a trail please? i will give a postive feedback if i like it and after i buy it ofc!
  33. I shove my pinky up there anyways
  34. I'd like to grab a 6h trial please khal
  35. obviously has no idea who botre is anyway looks nice bud
  36. May I try this thing ( Perfect Crabs ) Once more? I did not see how it works when I had this last time for 5 hours and received ban. I'm considering to buy it, TBH loved your range guild, hope this is even better.
  37. Hey Czar I found a bug when it went to bank it stood idle at the bank for a couple hours when the menu came up saying if I was sure if I asked for my bank to have a pin put onto it.
  38. Is @The Hero of Time actually making some Java gainzzz
  39. 1 point
    They do not forgive They do not forget They are JaGeX
  40. This is good advice. If I'm just gold farming I'll make several accounts, bot whatever I'm doing to make gold nonstop over a weekend, transfer the gold early Monday AM. But if it's an account I care about I don't bot long hours, no matter the script. I play legit, mix in a couple hours here and there botting different things.

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.