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 11/12/15 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. Wouldn't sell to you for paypal in all honesty. You want a trusted seller, then in return people should expect a trusted buyer. You have 1 feedback.
  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. I Just Bought the script without testing because I trust in Czar. Anyone know how long it takes for it to update and show i have the script?
  5. Small API for the new attack option stuff they introduced in the update today. Usage: AttackOptions.setNPC(this, AttackOptions.Option.HIDDEN); AttackOptions.setPlayer(this, AttackOptions.Option.HIDDEN); AttackOptions.getNPC(this) AttackOptions.getPlayer(this) import org.osbot.rs07.api.ui.RS2Widget; import org.osbot.rs07.api.ui.Tab; import org.osbot.rs07.script.MethodProvider; import org.osbot.rs07.utility.ConditionalSleep; import java.util.List; /** * Created by Flamezzz on 12/11/2015. */ public class AttackOptions { public enum Option { DEPENDS_ON_COMBAT("Depends on combat levels"), ALWAYS_RIGHT_CLICK("Always right-click"), LEFT_CLICK_WHERE_AVAILABLE("Left-click where available"), HIDDEN("Hidden"); String str; Option(String str) { this.str = str; } } private static boolean DEBUG = true; private static int[] CONFIGS = {1107, 1306}; private static final int CONTROLS_ROOT = 261; private static void debug(MethodProvider api, String str) { if (DEBUG) api.log(str); } private static boolean openControls(MethodProvider api) { RS2Widget controls = api.widgets.singleFilter( CONTROLS_ROOT, w -> w.getInteractActions() != null && w.getInteractActions().length > 0 && "Controls".equals(w.getInteractActions()[0])); if (controls == null || !controls.isVisible()) return false; return controls.getSpriteIndex1() == 762 || controls.interact("Controls"); } public static Option getNPC(MethodProvider api) { return Option.values()[api.configs.get(CONFIGS[1])]; } public static Option getPlayer(MethodProvider api) { return Option.values()[api.configs.get(CONFIGS[0])]; } public static boolean setNPC(MethodProvider api, Option o) { return getNPC(api).equals(o) ? true : set(api, o, "NPC 'Attack' options:", 1); } public static boolean setPlayer(MethodProvider api, Option o) { return getPlayer(api).equals(o) ? true : set(api, o, "Player 'Attack' options:", 0); } private static List<RS2Widget> getOptions(MethodProvider api) { return api.widgets.filter( CONTROLS_ROOT, w -> w.isVisible() && w.getInteractActions() != null && w.getInteractActions().length > 0 && "Select".equals(w.getInteractActions()[0])); } private static boolean set(MethodProvider api, Option o, String searchStr, int idx) { if (api.tabs.open(Tab.SETTINGS) && openControls(api)) { debug(api, "Opened controls"); RS2Widget child = api.widgets.singleFilter(CONTROLS_ROOT, w -> w.getMessage().equalsIgnoreCase(searchStr)); if (child == null || !child.isVisible()) return false; debug(api, "Found child [" + child.getRootId() + "," + child.getSecondLevelId() + "," + child.getThirdLevelId() + "]"); RS2Widget openOptions = api.widgets.get(child.getRootId(), child.getSecondLevelId(), 1); if(openOptions == null || !openOptions.isVisible()) { debug(api, "openoptions can not be found"); return false; } List<RS2Widget> options = getOptions(api); debug(api, "Found " + options.size() + " options"); if(options.size() != Option.values().length) { openOptions.interact(); debug(api, "Opening option list"); if (!new ConditionalSleep(5000) { public boolean condition() throws InterruptedException { return getOptions(api).size() == Option.values().length; } }.sleep()) { return false; } } debug(api, "Clicking option"); RS2Widget selectOption = options.get(o.ordinal()); return selectOption.interact() && new ConditionalSleep(5000) { public boolean condition() throws InterruptedException { return api.configs.get(CONFIGS[idx]) == o.ordinal(); } }.sleep(); } return false; } }
  6. 2 points
    You should be banned for posting that..
  7. Often you don't realize what you're doing at that moment and forget about the consequences. So yeah I believe it's possible.
  8. My virginity levels are too high to answer this question.
  9. When you buy Czar scripts you know you are buying quality
  10. Breaks dont work on deadman mode since the 10 second timer doesn't let you log out.
  11. You got it! Looks like I have to wait an hour to send another PM since I'm new here, I'll be sure not to forget
  12. 2 points
    troll.jpg troll.png troll.gif troll.exe troll.troll
  13. This release marks the final interface which was split from Netbeans, so that takes a tremendous load off of my plate. I took this opportunity to overhaul the design of our client interface which suffered from a few design issues. Specifically speaking, this new design allows for us to implement resizable mode because the logger and side panel (bot monitor) were re-worked. No ETA on resizable mode or even a promise to work on it, but the option is a bit more available now. The breakdown: 1. The side panel with a list of bots has now been moved to a menu with a "bot monitor" placed right on your current bot. It looks pretty snazzy in my opinion, it's also a bit easier to navigate. See the screenshot below for reference. 2. The logger has been completely removed from the client interface and it has received its own interface. Once again, this was mainly done with resizable mode in mind in case we decide to work on it. 3. Script function buttons are now "intelligent", this should help guide newer botters. For instance if your script is running, the play button will be disabled and the pause button and stop button will be enabled. There was a ton of code changed and I tried to be pretty careful, however bugs on a big initial release is inevitable. I'll be monitoring this thread closely; please let me know of any issues you encounter. Hope you guys like the changes -The OSBot Staff
  14. Depends on how much you value the account, if its a main / valued account break longer, if not think is it worth taking the risk and botting for longer periods for faster gains, then slowly put more breaks in as the account increases in value
  15. Thanks for letting me know about rules! No i'm not here to scam.. My 07 account got hacked which sucks... And no interest playng on this acc. I better sell it for GP or $ to keep training my pure. Thats why i am here.
  16. 1 point
    A Nissan 350z Looks nice and isn't too pricy (used obviously)
  17. I need to preface this by saying I am not condoning infidelity(which I will define as secretly having sex with someone else besides your partner in a monogamous relationship where you both rely on each others promise to remain faithful). People have said based on my outlook and not being a jealous person I could be a swinger but when two people go into a relationship with the plan to remain exclusive for each other, boundaries need to be respected. If both parties don't mind an open relationship/swinging that's a whole different story but if you cheat and contract an STD/STI and your partner has no way of knowing that's a big fucking problem! All that said It's hard to parse the question because you have to define what love is. It's purely subjective and emotional so love will mean different things to different people. A betrayal of trust(Ie cheating in a monogamous relationship) is generally going to be frowned upon in cultures where monogamous relationships are the norm. Even so I believe there are scenrarios where the act could be seen in a more favorable light. For example what if the wife is terminally ill and you two are incapable of making love anymore? Is it really fair for her to force you not to have sex with someone else to satisfy those physical needs? In that sense depending on how you define love you could still be there for her emotionally supporting her through those tough times but physically you belong to someone else. Shit that went on longer than I expected. You raised an interesting question though that's really open to interpretation based on the individual and their cultuture heritage/character traits. Well they don't call me for nothing ;). Thanks for joining me at Noah's Philosophy hour *round of applause*
  18. I would like to Trial a one of your great scripts. Script: DreamRockCrabs Reason to Trial: I currently have no Rock Crab script and I would like to Trial several scripts to test the best one before purchasing, I can gain up to 18 hour Sessions, so I feel this would be a great way to test a Beta script and report any Bugs I may run into. Thanks in advance.
  19. Yep 3+ rocks at Colony Will try again later, can't get mirror working ATM
  20. Well since you propose to buy from trusted people only, then i assume you should trust them. Hence buying osrs gp and gaining a few feedback's before offering paypal ^_^
  21. 1 point
    Ban rate is 10.9%
  22. can i please get a trail also do you still get a free script if you have brought 2 already? as i already have 3 of yours and they are fantastic. if you still allow the free script can i get the thiever please. https://gyazo.com/e10a9a21ebfb5d416bb2b200bf20b78 regards gumboa
  23. Really good script!
  24. You can make a lot of money botting but in order to do so you need to know. What to bot, when to bot and how to bot. Jagex love to ban accounts so don't rush into it.
  25. 1 point
    Maybe you do. Maybe behind all that Fruit there is a Zulrah
  26. I appreciate all the bug reports and your understanding, since the script has a few bugs, I will offer you any premium script of mine for free, choose a script
  27. Version 0.14 - Now closes bank before thieving - All other npcs are prioritized update will be live within a few hours, thanks for all the feedback Sorry about those, it is still a brand new scripts, just a few tweaks here and there and it will be normal again When it says version 0.14 (after they update my script) these changes will be live
  28. I did not find the trial from repository of my account
  29. visit www.java.com and download it once you have installed it, just open osbot
  30. 2 Questions off the bat. Sometimes the camera angle can be over the roof but it still spam clicks the knights so maybe adjust cam with that but i'm not really sure. Also it might be beneficial to have it focus on a specific knight like the one in the house? After banking it is thieving from them around the middle by the stalls and it seems to be faster Xp on the knight in the house. Edit. I guess i could disable rooftops as a solution to #1.
  31. Done, I have activated it manually, enjoy Atm I highly recommend pickpocketing and chests, those are the two that can never go wrong. As for stalls, make sure to go in a high populated world because the bot will know which place to thieve from I have added an update for thieving stalls which makes it so you know how to get back, and I reduced the misclick chance %, and fixed Steal 1 drop 1 option good luck ! here is a pic of version 0.11 with new tea stall update, stable ~50k/hr and it walks back and drops perfectly
  32. it miss clicks the tea stall then it won steal anymore
  33. can I get a trial please! and I hope you add black jacking soon!!
  34. 1 point
    I tried to log onto my account to bot with the osbot client, and when i logged in with my correct details it showed me at tutorial island? I closed it , loaded the Runescape client logged in and i was back at ge...Has anyone else gotten this before? Or can explain to me what happened?
  35. Just finished a signature for my good friend , TheObserver ! What do you guys think?

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.