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

  1. Czar

    Global Moderator
    23
    Points
    23408
    Posts
  2. Extreme Scripts

    Trade With Caution
    15
    Points
    10702
    Posts
  3. Alek

    Ex-Staff
    11
    Points
    7878
    Posts
  4. Khaleesi

    Developer
    9
    Points
    27742
    Posts

Popular Content

Showing content with the highest reputation on 04/04/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. I finally had some time to go through the Client Bugs & Suggestions forum. Thank you to all who made a report; I am still going through the pretty extensive list. In addition I made some more updates to the Script Analyzer so hopefully it's working for more users. Changelog 2.4.46: -Patched GrandExchange setOfferQuantity, buy mode (reported by @lisabe96) -Patched Chatbox getMesssages MessageType.GAME (reported by @FrostBug) -Patched Mouse move(int, int) returning false (reported by ) -Updated and various fixes to Script Analyzer Changelog 2.4.47 -Fixed issue with analyzer loading scripts from jar format -Improved resource management Changelog 2.4.48 -Patched issue with Bank scrolling Happy Botting -The OSBot Staff
  3. 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!
  4. Ehe, Osbot and @Czar's thiever 1 - 0 Jagex and yush im like super smart for posting it here already because like maybe shorter life span and such but whatever..
  5. Useful to spot nasty jvm, system and memory-specific issues (outdated java, exotic operating system, incorrect memory allocation, etc...). I personally only decorate critical / fatal exceptions with this. There's no point in casually wrapping it around everything (unless you really love verbose stack traces). Example: public class Test { public static void main(String[] args) { try { System.out.println(1/0); } catch (Exception e) { ThrowableDecorator.withSystemAndMemoryInformation(e).printStackTrace(); } } } Snippet: public final class ThrowableDecorator { private ThrowableDecorator() { } public static final Throwable withSystemAndMemoryInformation(Throwable throwable) { StringBuilder sb = new StringBuilder(); //System sb.append("\n\tSystem information:"); System.getProperties().entrySet().forEach(entry -> sb.append("\n\t\t" + entry.getKey().toString() + ": " + entry.getValue().toString())); //Memory sb.append("\n\tMemory information:"); sb.append("\n\t\tAvailable processors (cores): " + Runtime.getRuntime().availableProcessors()); sb.append("\n\t\tFree memory (bytes): " + Runtime.getRuntime().freeMemory()); sb.append("\n\t\tMaximum memory (bytes): " + Runtime.getRuntime().maxMemory()); sb.append("\n\t\tTotal memory (bytes): " + Runtime.getRuntime().totalMemory()); return new Throwable(sb.toString(), throwable); } } Example trace: java.lang.Throwable: System information: java.runtime.name: Java(TM) SE Runtime Environment sun.boot.library.path: C:\Program Files\Java\jre1.8.0_77\bin java.vm.version: 25.77-b03 java.vm.vendor: Oracle Corporation java.vendor.url: http://java.oracle.com/ path.separator: ; java.vm.name: Java HotSpot(TM) 64-Bit Server VM file.encoding.pkg: sun.io user.country: GB user.script: sun.java.launcher: SUN_STANDARD sun.os.patch.level: java.vm.specification.name: Java Virtual Machine Specification user.dir: ***** java.runtime.version: 1.8.0_77-b03 java.awt.graphicsenv: sun.awt.Win32GraphicsEnvironment java.endorsed.dirs: C:\Program Files\Java\jre1.8.0_77\lib\endorsed os.arch: amd64 java.io.tmpdir: ***** line.separator: java.vm.specification.vendor: Oracle Corporation user.variant: os.name: Windows 10 sun.jnu.encoding: ****** java.library.path: ***** java.specification.name: Java Platform API Specification java.class.version: 52.0 sun.management.compiler: HotSpot 64-Bit Tiered Compilers os.version: 10.0 user.home:***** user.timezone: java.awt.printerjob: sun.awt.windows.WPrinterJob file.encoding: Cp1252 java.specification.version: 1.8 java.class.path: ***** user.name: bjorn java.vm.specification.version: 1.8 sun.java.command: org.botre.exception.Test java.home: C:\Program Files\Java\jre1.8.0_77 sun.arch.data.model: 64 user.language: en java.specification.vendor: Oracle Corporation awt.toolkit: sun.awt.windows.WToolkit java.vm.info: mixed mode java.version: 1.8.0_77 java.ext.dirs: ***** java.vendor: Oracle Corporation file.separator: \ java.vendor.url.bug: http://bugreport.sun.com/bugreport/ sun.io.unicode.encoding: UnicodeLittle sun.cpu.endian: little sun.desktop: windows sun.cpu.isalist: amd64 Memory information: Available processors (cores): 4 Free memory (bytes): 253398816 Maximum memory (bytes): 3795845120 Total memory (bytes): 257425408 at org.botre.exception.ThrowableDecorator.withSystemAndMemoryInformation(ThrowableDecorator.java:21) at org.botre.exception.Test.main(Test.java:9) Caused by: java.lang.ArithmeticException: / by zero at org.botre.exception.Test.main(Test.java:7)
  6. .

    3 points
  7. 3 points
    http://osbot.org/forum/topic/95670-we-have-a-new-scumbag-undercover-scammer/ tfw saiyan writes a whole essay trying to prove poopy was a scammer when the braindead guy just admits it himself
  8. APA Chest Thiever Deadman mode & Level 3 friendly! $3.99 $2.99 _______________________________________________________ Demo Video: Please note: This video was made before support for alching was released. Please refer to below for the new GUI and paint changes Requirements: 13 Thieving for basic chests, 28 for Nature rune chests Features: Rapid reaction speeds mean script will never fail to loot a chest Wide range of chest locations including Ardougne and Rellekka Easy to set up with highly customisable user interface Attractive and informative paint tells you everything you need to know Self-generating paint means it's only as big as it needs to be Real-time profit tracker using live grand exchange data Supports alching while looting (free magic exp!) High and low alching supported Alchs any item you can think of Profit tracker keeps account of alching expenses, calculating net change Customisable anti-ban system ensures script acts like a human Supports food (misclicks can happen (very rarely!) - this is just a failsafe!) Informative location tracker tells you details of every chest Looting system picks up any stray nature runes / coins should anyone die! Dynamic signatures allow you to keep track of your total progress ...and much more! Chest Locations: Example Setup: Screenshots:
  9. 2 points
    Haha funny meme
  10. 2 points
    Welcome to my GFX shop! What can i make? Signatures Avatars Everything for scripts Thread layouts -If you want other thing, pm me Prices? Because i just started here, Its for free! My work? I just made this one for free for Realist: http://oi64.tinypic.com/fxsdfp.jpg I like animation so that will be used alot for signature/thread layouts! Leave your skype below, so we can discuss on skype! My skype is: britt.kuperus (under my signature for direct link) or pm me Waiting list:
  11. 2 points
  12. What's NMZ? I'm trying to make my own 99/99/99/99 staker.
  13. Hey everyone, thanks for the quick replies. I'll speak with you guys after I get home from work tonight, I just got called in and should be back home in 5-6 hours. Looking forward to working something out with one of you.
  14. 2 points
    You da best! enjoy!
  15. Well, I can say that mine's the most popular... but the best is for you to decide! I would suggest going to the threads and asking for trials of each rock crabs script. From there you can decide whos you wish to purchase To start you off, i've given you a 24h trial of my rock crabs script. Enjoy! ~apa
  16. tbh i liked the other thread (With that hair pulling) better but this gave me a good giggle
  17. 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:
  18. import org.osbot.rs07.script.Script; import org.osbot.rs07.script.ScriptManifest; import java.awt.*; @ScriptManifest(name = "Skeleton", author = "Alek", version = 1.0, info = "", logo = "") public class Skeleton extends Script { @Override public void onStart() { //Code here will execute before the loop is started } @Override public void onExit() { //Code here will execute after the script ends } @Override public int onLoop() { return 100; //The amount of time in milliseconds before the loop starts over } @Override public void onPaint(Graphics2D g) { //This is where you will put your code for paint(s) } }
  19. PORTFOLIO: https://ashdesigns.net/ TEMPORARY RETAKING ORDERS AGAIN
  20. Requirements Recommended gear Progress reports GUI preview Dynamic signature Update log Click on the logo or the thread design to direct you to the store. If you have any questions or you are in need of support, comment on the thread, pm me or simply add my skype.
  21. Trail please
  22. Quests: Members -Death Plateau 900k -Fight Arena 400k -Waterfall Quest 500k -Big Chompy Bird Hunting 1m -Priest In Peril 400k -Fight Arena 400k F2p -The Restless Ghost 150k -Black Knights' Fortress 400k -Cook's Assistant 100k -Demon Slayer 500k -Doric's Quest 100k -Ernest the Chicken 450k -Goblin Diplomacy 100k -Imp Catcher 100k -The Knight's Sword 600k -Pirate's Treasure 500k -Prince Ali Rescue 900k -Romeo and Juliet 300k -Rune Mysteries 300k -Sheep Shearer 100k -Shield of Arrav 300k -Vampire Slayer 300k -Witch's Potion 400k total: 9.2m Can start in 15mins, and have done tonight. Skype: jamOSRS if you're interested.
  23. PM me your skype Lets discuss
  24. Request Template: - Script name motherload - trial length 24 hours - Reason for trial first time using a bot and looking to purchase a good mining bot. - Are you ging to give feedback on the script? If needed
  25. One mad algorithm, this might be the solution against bot detection.
  26. hey i want to try your script before purchase
  27. Nah id leave strength alone. With the low hp and combat level thats a beast pure and would own its combat bracket. This is worth a fair amount and would be good for risk fighting IMO Did you range guild range?
  28. 60M - 90M, you could easily get alot more if you were to improve the Strength Level.
  29. well if you even need someone to talk to, i am here same goes to any other osbot member feeling lonely or depressed
  30. 1 point
    that would get abused lol
  31. Why would they call you dumb? you botted the whole thing and it took less than a week, you literally didn't do anything lol. Nice proggy tho ;)
  32. Massive respect for posting this! (Ignore anybody that calls you dumb, this is kind of funny)
  33. Trial please Edit: Just bought. Working well so far.
  34. Still the best agility script out there. Khal never disappoints.
  35. 1 point
    was patched
  36. i think ur forgetting someone..
  37. buddy, i would really need a screenshot of the moment it stops working and from the logger. I have no idea where to look at with this information
  38. If you need help setting up mirror mode pm me

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.