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 02/12/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. Just throwing this in for potential buyers, you aren't going to get a better deal than this. Especially for diamond accounts.
  3. None of them have a borders. Note: These accounts were bought unranked from shops with over 10k vouches, they were probably botted to level 30 and i raised them to diamond. No scripts other than leveling. Champions and Mastery score vary Starting rate 150$ No skins except for some maybe have the skins from Riot's social media promotions
  4. 3 points
    MethodProvider#stripFormatting removes HTML tags
  5. NEW! supports new south + east shortcuts, new hopper (upstairs), and mouse invokes!!! (just like runelite!) 'the intelligent choice' By Czar 34-99 Mining on video!! Agility Shortcut Setup Window Preview 70 hours run time https://i.imgur.com/wiF6VPO.png
  6. Click here to go to the SDN page to add the script. Display: Games supported and their general rules: Note: This script is a realised script request with help from a RS veteran gambler, pauliokas123, Please refresh your script list before running this script!
  7. SAPI Hello world. Here's a sneak peak of a little library I'm working on, its goal is to simplify high-level interaction between bot/script and game, useful when you need a superficial game variable but don't have the time or knowledge to fetch it via code or a clunky GUI. Currently, the following types are selectable (with more to come): Entities Widgets Positions Bank slots Inventory slots Prayer buttons Magic spells Currently, the following brushes are available (with more to come): Point Shapes: Arc2D, Ellipse2D, Rectangle2D, RoundRectangle2D The library will be free & available for everyone. No ETA but shouldn't be too long. Code example @ScriptManifest(author = "Botre", info = "", logo = "", name = "Example Script", version = 0) public class Example extends Script { private Sapi sapi; @Override public void onStart() throws InterruptedException { super.onStart(); // Initialize API. sapi = new Sapi(this); // Add a filter to the inventory module: only empty slots are made selectable. sapi.getInventorySlotModule().getFilters().add(slot -> slot.isEmpty()); // Change the painter. sapi.getInventorySlotModule().setPainter(new DefaultItemContainerSlotPainter(this) { @Override public void paint(Graphics2D g2d, ItemContainerSlot object) { g2d.setColor(Color.BLUE); g2d.drawString(object.getItem().getName(), 0, 0); super.paint(g2d, object); } }); // Activate the module / enable selection. sapi.getInventorySlotModule().setActive(true); // Start the API. sapi.start(); } @Override public void onExit() throws InterruptedException { super.onExit(); // Stop API. sapi.stop(); } @Override public int onLoop() throws InterruptedException { // Iterate over selected items. for (ItemContainerSlot slot : sapi.getInventorySlotModule().getSelected()) { log(slot.getItem().getName()); } return 500; } @Override public void onPaint(Graphics2D g2d) { super.onPaint(g2d); sapi.getInventorySlotModule().paintBrush(g2d); sapi.getInventorySlotModule().paintSelected(g2d); } } Screenshots
  8. Please correct me if I'm wrong, you were going to be paid 48m for this service, 18m of that was for the supplies. @Dbuffed is holding the rest, @sibbernski gave you three accounts which you got banned for macroing, you've since made him two more. Since you broke your TOS your customer is entitled to a full refund if they see fit, and it seems @sibbernski does. Therefore I'm going to ask @Dbuffed to release the money back to @sibbernski and request that you refund the 18m paid in supplies, you can keep the accounts you made unless Sibbernski would like to buy these off you. script - 1) In computer programming, a script is a program or sequence of instructions that is interpreted or carried out by another program rather than by the computer processor. You were using a script.
  9. Once in a while a widget API call will fail resulting in: [ERROR][Bot #1][02/11 10:40:58 PM]: Failed to wrap : class client.YR java.lang.RuntimeException: Could not initiate wrapper : RS2Widget at org.osbot.core.api.Wrapper.wrap(bg:159) at org.osbot.rs07.api.Widgets.getWidgets(gg:120) at org.osbot.rs07.api.Widgets.isVisible(gg:3) at org.osbot.rs07.api.Bank.isOpen(fn:471) at blastFurnace$10.condition(blastFurnace.java:471) at org.osbot.rs07.utility.ConditionalSleep.sleep(ed:70) at blastFurnace.openBank(blastFurnace.java:473) at blastFurnace.depositAll(blastFurnace.java:501) at blastFurnace.takeBars(blastFurnace.java:388) at blastFurnace.onLoop(blastFurnace.java:210) at org.osbot.rs07.event.ScriptExecutor$InternalExecutor.run(ff:33) at java.lang.Thread.run(Unknown Source) Sometimes bank.isOpen() will return true when the banking interface is not visible, and has not been accessed in a few seconds I cannot accurately reproduce the bug, however it occurs more often when my system is under higher load I'm using Java JDK 8 (64bit only), latest client. This only occurs in Mirror mode The function in question is private boolean openBank() throws InterruptedException{ Entity chest = objects.closest(chestID); if(bank.isOpen()){ return true; } else { widgets.closeOpenInterface(); if(widgets.get(28, 107) != null && widgets.get(28, 107).isVisible()){ clickMiniMapPosition(chest.getPosition()); new ConditionalSleep(random(1000,3000)) { @Override public boolean condition() throws InterruptedException { return myPlayer().isMoving(); } }.sleep(); } if(chest != null){ if(myPlayer().getPosition().distance(chest.getPosition()) < 4 && myPlayer().isMoving()){ sleep(random(100,250)); return false; } if(chest.interact("Use")){ new ConditionalSleep(random(1000,3000)) { @Override public boolean condition() throws InterruptedException { return bank.isOpen(); } }.sleep(); log("Chest is open"); } } } return false; } The error occurs in the ConditionalSleep at "return bank.isOpen();"
  10. why would you even ask us
  11. This is actually really fucking cool! Great job on this!
  12. Antiban doesn't mean that u won't get any bans.
  13. I'm having the same issue, I made a nother bug report about this 2 days ago People getting pretty pissed off by this issue
  14. 1 point
    I see the problem, I'll have it fixed asap!
  15. got 81 rng so far started from 35 rng. running stealth mode. on other acc reached 99 rng with no bans. some tips to reduce ban chances, it works for me it might also work for you guys. bot only outside uk working time 08:00-17:00 do not bot more then 10h and take every hour breaks 10-20 minutes when there is a live stream announced log out directly.
  16. Holy... never even knew warriors could be so much per hour, might as well start training there even w/o bot haha
  17. Well yeah, in that place where there are many zombies and only 2 crawlers.. Not sure were they missclicks but mainly it fighted to crawlers.. And yeah works great on crawlers spot and ps, zombies drops steel arrow very often and its good money so it would be great update :P
  18. woww these are like the best proggies I've ever seen
  19. Yo czar. when i stunalch, it will stun away, but it doesn't seem to alch the maple longbow (u) that i have? Can you explain why? i'm really curious
  20. Looks good! Will consider buying this after pest control script
  21. I'm presuming an agreement was reached like Sibbernski said.
  22. Be been using this since 40 off and on for the past month. Im 83 range. Im hopefully gonna get 87-89 in a week or so then stop for 2+ weeks and focus on other combat groups. I recommend this for all. I also recommend, botting for 4 hours and take a 1 hour break. I haven't got banned yet.
  23. Hey guys thanks for the comments as stated in original post themail 154 hours is basically what I thought I could achieve it in by looking at your valid arguments I see will take longer which is fine just means doing more streams (gonna need alot of coffee and rebuild on hand) thanks for input my account is on its way to be ready for stream I'll make sure to post on here you will have to come watch :-P And as always after account has 99 slayer it shall be fs hahaha will need to make some gold back as it is a big money sink haha
  24. my bad, you were responding to a different question so i thought my issue was solvable my another means. EDIT: just saw there was an AFK mode with powerfishing but im using the banking method which i dont see that option there.
  25. Another great script by you Czar! Keep up the good work! Thanks a lot!
  26. best crab script i've used yet. just purchased after flawless trial ty czar
  27. 1 point
    Here you go, it's not much compared to the other proggies but its a thing I guess also hit 22m mark! http://prntscr.com/a22tvg
  28. Can confirm they have internet in the afterlife.
  29. Can i get trial before u switch em so i can start my pure proggress?
  30. I see, I'll take a loog this evening on how much I can extend the area Thx for the suggestion! Khaleesi
  31. While fletching steel darts, the bot makes 20 darts (2 actions) then just stops and hovers over the dart tips. How can I fix this??
  32. You obviously have never heard of the magical item called amphetamines.
  33. 1 point
    This is porn:
  34. Woody's Scripts If you want a trial to one of my scripts, please read the requirements and post in this thread. SCRIPTS: Requirements: Hit the like button on this post AND the first post in this thread When I like your post in this script, it will mean that the trial as started. Please leave some feedback/progress report(s) in the script's thread!
  35. Dear community, This post is regarding the following sections: - Account sales - Account price checks - Picture shares of your accounts via CB or the forum. Today we caught an Osbot member leaking pictures of account sales to Jagex over Twitter. This led to a permanent ban of the account for real world trading. Even though the user is permanent banned from OSBot, we can not guarantee that it won't happen again. Therefore we highly recommend you for your own safety to block out a few stats of your account stats picture. You can do this by using any photo edit program! I would recommend you www.picmonkey.com as no download is needed. Kind regards, The Osbot Staff Team

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.