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 12/31/13 in all areas

  1. They have 5 auths to give to whoever they want. http://osbot.org/bot/sdn/auths.php I thought this was removed because people were selling for gp, but it has been confirmed by Zach that 5 auths are allowed.
  2. hello i have decided to attack all services today with the following they are all false advertising which i believe is a serious crime committed on osbot and should be dealt with immediately our first offender is club heaven http://osbot.org/forum/topic/26858-clubheavenbest-group-on-osbotfcapesquestingpowerlevelingjoin-today/ they state Club Heaven is known all around Runescape for our superb service and extreme speed. well i went investigating on runescape not one person known what club heaven is so it isnt well known on runescape im sorry but that is a false claim i went all around runescape into mutiple fcs into w301-302 to 325 and i could not find one scaper who knew what the hell club heaven was
  3. 1 point
    http://www.youtube.com/watch?feature=player_embedded&v=J-OOuWiG-rg
  4. 1 point
    OSFletcher - by Daniel Current Version: 3.0 (06/21) - Supports OSBOT 1.7.X Price: FREE Status: Running perfectly Feel free to donate to me if you love this script. Welcome to OS Fletcher! This script supports all type of bow fletching, from regular shortbows, to magic longbows. This script will run for hours on end with no glitches or problems. To use, simply add OSFletcher to your scripts on the store and run it from your remote free scripts on OSBot 1.6.x. If not running on 1.6.x, download the jar file at the end of the post, add it to your script folder (no unzipping or copying/pasting necessary) and run the bot from any bank in Runescape! - I would suggest running it in the Pest Control bank, however, since there are no randoms. Have fun and enjoy the script! Remember to leave an progress report! IF FLETCHING START WITH KNIFE IN INVENTORY. MAKE SURE YOU'RE ON THE LATEST OSBOT VERSION (1.4.2) Report any problems and I'll get on them ASAP. I can't stress this enough. I can't improve this script unless people explain errors with as much detail as possible. Update Log: V1.0: Release - Known issue with banking, bot failsafes and it works anyway though - just slows it down a bit. Will fix next release. V1.1: Fixed banking issues V1.2: Added a method to deal with leveling up V1.3: Stringing is now supported. V1.31 Theoretical fix for leveling up problem. Also switched from zip to jar. V1.32 Some bug fixes, stringing should be flawless now (with double clicks). V1.40 Fixed xp/hr on the paint and now continues on level up. V1.41 Fixed magic bows not fletching. V1.42 Really fixed magic bows. Also added a lot of speed improvements. V2.0 Support for OSBOT 1.4.1 added. Massive amounts more of xp/hr. Support for every bank booth added. Updated paint slightly too. V2.01 Fixed withdrawing bowstring issue. V2.02 Fixed level up on last log/bow. V2.10 Massive speed improvements on stringing. V2.20 Updated to support fletching regular shortbows and longbows. V2.21 Addressed banking issues. V2.30 Addressed more banking issues. V3.00 Completely re-coded, fixing banking and knife issues. (Bot currently says 2.0 not 3.0). Current problems: None To do: Add more anti-ban More sophisticated paint (will do on next bot update)
  5. You will receive Pandemics AIO Fighter free for 2 weeks, the giveaway shall begin in approximately 3-4 days There will be 3 winners and I haven't decided how we will do this yet so if you have any ideas please post them below! Thanks
  6. How do you plan on giving it for 2 weeks at a time?
  7. What do you expect from a 12 year old
  8. 1 point
    Ooh nice Good guy Scrub.
  9. 1 point
    Very nice, Good luck man
  10. Guest
    Aren't those like $0,5/1M? XD
  11. 1 point
    Glad to see you making some progress, best of luck to you with your release of your first script.
  12. This isn't a game. 1. You deleted him barely 2 minutes after and. 2. You lied. 3. Why delete him after less than two minutes? Why lie?
  13. Hmm I always thought the random method started at 1 my apologies then, I'll fix now. Thanks to both
  14. Twerk on my face? ... You missed that out.
  15. gl with that max casshh
  16. For some reason, OSBot doesn't have this already. So here: public boolean selectMenuOption(String action, String noun) throws InterruptedException { if (!client.isMenuOpen()) return false; boolean found = false; int index = 0; List<Option> menu = client.getMenu(); for (; index < menu.size(); index++) { if (menu.get(index).action.equals(action) && menu.get(index).noun.contains(noun)) { found = true; break; } } if (found) { int x = client.getMenuX(); int y = client.getMenuY() + 21 + index * 14; return client.moveMouseTo(new RectangleDestination(x, y, client.getMenuWidth(), 10), false, true, false); } return found; } Clicks a menu option from a currently visible menu.
  17. Ah.. Should have checked the Snippets section yesterday when I needed this; Anyway, I've made a similar implementation; I suppose people can choose what fits their needs import java.util.ArrayList; import java.util.List; import org.osbot.script.mouse.RectangleDestination; import org.osbot.script.rs2.Client; import org.osbot.script.rs2.ui.Option; /** * * @author FrostBug */ public class Menu { private List<Option> options; private List<String> strOptions; private int x, y, width; private Client client; private static final int OPTION_HEIGHT = 15; private static final int TOP_PADDING = 19; private Menu(Client client) { this.strOptions = new ArrayList<>(); this.options = client.getMenu(); this.x = client.getMenuX(); this.y = client.getMenuY(); this.width = client.getMenuWidth(); this.client = client; for (Option o : options) { strOptions.add(o.action); } } public static Menu getActiveMenu(Client client) { if (client.isMenuOpen()) { return new Menu(client); } else { return null; } } public boolean hasOption(String action) { return strOptions.contains(action); } private RectangleDestination getDestinationRect(int index) { return new RectangleDestination(x + 4, y + TOP_PADDING + (index * OPTION_HEIGHT), width - 8, OPTION_HEIGHT); } public boolean moveMouseToOption(String action, boolean click) throws InterruptedException { int index = strOptions.indexOf(action); boolean success; if (index > -1 && client.isMenuOpen()) { RectangleDestination rect = getDestinationRect(index); success = client.moveMouse(rect, false); if (click && success) { client.clickMouse(false); } } return success; } public boolean isMouseOnOption(String action) { RectangleDestination rect = getDestinationRect(strOptions.indexOf(action)); return client.isMenuOpen() && rect.destinationReached(client.getMousePosition()); } }
  18. 100K € by end of 2014 Flipping bitcoins/litecoins, goldfarming, irl job GL to all
  19. 1 point
    Goodluck on the learning on how to script i've never had the patience for it. Any idea what kind scripting goals you have?
  20. 1 point
    I'am learning as well, i'am currently writing a money making script :P
  21. 1 point
    Good guy that scrub!
  22. 1 point
    Alright, If you need any help PM.
  23. 1 point
    Waiting for some scripts from u
  24. MEeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee
  25. annoying liar peasent fagget the things you are
  26. RESERVED. Oh me me me, pick me. Ah very possibly ME! In on it once you release the terms.
  27. Really good job on those pictures! Simple yet elegant.
  28. When people are being really annoying... and are lieing the whole time their in the chat they deserved to be kicked. Chatbox mods wont kick them for being annoying... Like someone offers the option and depending on how many people in the chat he should get kicked. Like if 70 percent of the people do yes then hell be kicked.... This suggestion is fucking awesome...
  29. if g,e comes back and bh target ep system with vesta vls korasi claws and sum...basicly rs in 2009/10 it will get loads of people, idc id happily have all that tbh i peferd 2009/10 was much better
  30. Actually , You are pretty funny, And I'm not gonna act like a retard now. You should quit acting like my 4 year old sister, Grow up please.
  31. Eat more cheeseburgers. Buy more spins. Ban more people. /ModMark
  32. I can literally Google/Youtube all of this for free. Plus I wouldn't trust someone who has a picture of Spongebob getting splooged on as their avatar.
  33. How many Master Queef's u need to put a d in a box? Peasant's don't have D.
  34. I'm not from US... but god am I hungry.
  35. yer it's menu api is pretty bad compared to other clients for example a small client that I'm on has 1 Dev and has like 3 scriptwriter's and 10 users has a better MENU API than osbot lol but the rest of there API is behind Good contribution to site!
  36. ''but i rly legit'' l0l0l are u retarded? 0 feedback hahah best joke l0l0l0l
  37. 4 inappropriate language mutes? You should probably try cutting that down to a minimum first.
  38. NMZ hands down. Best xp in the game, also can make some gp from points you collect. -Herbish

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.