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.

Bobrocket

Members
  • Joined

  • Last visited

Everything posted by Bobrocket

  1. But you've yet to give anyone the money, so you can simply refund it. Not an issue.
  2. They can always get the mouse position, not sure if it actually returns anything if the mouse is out of the window.
  3. What I have found that works best is to have a web portal that automatically updates when they get more money, and that they can cash out whenever (within reason ofc). This will mean that they can quit whenever they want but of course they wont get any money for stuff they don't do. It also gives the idea that you are flexible as their job is. You should also have a "pending" balance where it shows the amount that is waiting for confirmation (eg the guy actually confirming that he received it and was not scammed etc)
  4. I got 27-40 in about 2-3 hours, so no more than 6 hours I would imagine. Just supply a few inventories of decent food.
  5. I'll charge you 1.5M, however it will be botted with my private script.
  6. I always found OBS complicated to use. I much prefer Fraps as no set up is actually required (and I like that). It also records lossless HD perfectly on my computer, including 60fps on cs:go (high settings, full resolution; surprised me) When I'm recording RuneScape, I actually use Hypercam 2 as it is super lightweight and allows me to change the resolution easily for OSBuddy (and it has super small file sizes) + the "Unregistered Hypercam 2" isn't there anymore!
  7. Windows 7 comes with a lot of additional crapware too, and you can just disable it. I imagine it would be the same for Cortana and everything else. I'm considering upgrading as I have a Windows tablet and would love to try out Win10 to see if it really is better than 7. If not, I'll just downgrade. The only problem I am going to face is the fact that my processor is a tad old, so there may not be any drivers on Win10 for it. Hopefully there will be some and all runs well, as the rest of my hardware is fairly new.
  8. As of this update (2.3.71), it doesn't dismiss randoms on injection mode either. Before the update (2.3.70), it didn't dismiss randoms on mirror mode (but did perfectly fine on injection)
  9. Been a few days since an update: -Account 3 is a member, and is currently thieving with a private script. -Account 2 is on holiday, as I am running low-ish on resources as of now. No bans as of yet, although I feel Account 3 may be flagged. That same sort of feeling that someone is watching you, except instead of a pedo it's a jmod (same thing really, but who am I to judge?)
  10. Glad to see this new update, I have a feeling that ban rates will be reduced with this new entity interaction. Alek, do you think you could implement a font API of sorts somehow? For example, being able to call something like (getFonts().RS_DIALOGUE) may help a lot of scripters make custom methods for interaction with dialogue and interfaces. If this is already included somewhere, ignore this. Just a suggestion
  11. I actually have a bot that does this (albeit for gold rings instead), could easily modify it to make amulets instead.
  12. Bobrocket replied to Master GFX's topic in Archive
    Are they f2p or p2p? Moreover, will you supply axes?
  13. So I decided to add Silk stall support and in 2 hours I went from 20 to 39 thieving! The script has a lot of failsafes in place for the knights that see you stealing, as well as other things getting in the way and walking away from the stall. I can average anywhere from 400-500 steals per hour, which is a maximum of 12k exp/hr. The script sacrifices some exp for my human-like antipattern, which so far, I have only seen one random. Going to add Master Farmer support now.
  14. This works brilliantly, thank you so much
  15. I fixed it a different way: if (getMouse().getOnCursorCount() > 1) { if (lock == 0) stall.interact("Steal-from"); else log("Locked!!"); } else { if (lock == 0) getMouse().click(false); else log("Locked!!"); } Seems to work better for me. No idea why Another problem I'm having: both localWalker and getMap() refuse to move my character one square to the left.. while (!getMap().walk(p)) { } log("trying to walk " + myPlayer().getPosition() + " " + p); It will log, so it shows that the while loop ends (indicating that the walk has executed) although the mouse doesn't move and the neither does the player; it's stuck there forever.
  16. Thank you Will this still work if there are things in the way? For example, if there is a guard in the way the first option would be "Pickpocket" for the guard, but the first option for the stall is always "Steal-from".
  17. What I mean is that item in the top left when hovering over something interactive: How can I get this? For example, if it's "Steal-from", I left click, if not I right click.
  18. //Quick way if (<npc>.hasAction("Attack")) { //Can be attacked } //Slower way (requires mouse to hover over) <npc>.hover(); while (!getMenuAPI().isOpen()) { getMouse().click(true); sleep(250); } //right click boolean hasAttack = false; for (Option o : getMenuAPI().getMenu()) { log(o.action); if (o.action.equals("Attack")) { hasAttack = true; break; } } if (hasAttack) { //Can be attacked }
  19. IF YOU ARE WILLING TO TEST THE SCRIPT, PLEASE MESSAGE ME! Features: Pickpockets amazingly fast; on par with a human Smart eat: will eat anything in inventory and eat health is randomised Will insult other players killing whom you pickpocket Brilliant antipattern which is randomly generated every time (feels much, much more realistic) Simple paint Hovers over food and NPC - more human, and less likely to fail too. Uses a smart keyboard when typing to minimise ban rates Looking for testers - PM me if you're willing to suicide bot at men or something for a few days
  20. I was thinking about typos. What I'm going to do is make a little keychar map with nested arrays (for example, "a" typos could be "q", "s", "z") and then have a chance to see and correct it before typing (pressing backspace x amount of times and then pressing the correct key) or simply not noticing and then in a new message doing the classic "word*". Edit: the equation for a random typo could just be (100000 / (wordsPM * 10) - rand.nextInt(5))? This way it still has a degree of randomness, but it still scales nicely with the words per minute factor (ofc you're not going to make many or any typos at 1wpm but you will at 120wpm) Edit 2: working typos! Set at 125wpm in the example, with the original text "The quick brown fox jumped over the lazy dog the quick brown". Currently, there is a 33% chance that the controller will actually fix the typo. You can change this in the typeString method (where it says if (typos && rand.nextInt(2) == 1 ) {) Good luck everyone, and happy botting
  21. Thanks, I will try that
  22. Alright, so after reading the "My Ban Theory" thread, I decided to take the idea of a normal distribution to keyboard typing. What I have made is experimental and may not work as expected to. All I aim to do with this is help to educate those with typing correctly. How it works: Calculating based on words per minute, it sleeps a variable amount based on the value (assuming the average word has 6 characters) With the help of normal distributions, the mean is the mode and the median (which is also usually the midpoint), so we can calculate a normal distribution of sleeping using the mean. It types character per character It wraps the Script sleep function to pause the appropriate time frame (Version 1.1 and onwards) now makes typing errors based on the words per minute setting! Version 1.1 (newest; typos included): Version 1.0 (old; no typos included): Usage example: SmartKeyboard sk = new SmartKeyboard(this, 60); //60 words per minute if (sk.typeString("The quick brown fox jumped over the lazy dog", true, true)) { //Third parameter to true -> enables typos log("Typed the string and pressed enter!"); } if (sk.typeCharacter("g")) { log("Typed the character 'g'"); } if (sk.typeInteger(4)) { log("Typed the number 4!"); } sk.typoConstant = 10000; //Default 100000; lower = more likely to cause a typo; equation ((typoConstant / (words per minute * 10))+ rand.nextInt(6)) If there are any problems with this, let me know. Jagex may be smart, but we're smarter. Proof of typos: (set at 125wpm; original text "The quick brown fox jumped over the lazy dog the quick brown") Feel free to use the SmartKeyboard class however you want, but credit is always nice

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.