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. Juggles

    $100.00 Donor
    24
    Points
    9601
    Posts
  2. Eliot

    $100.00 Donor
    15
    Points
    4523
    Posts
  3. Czar

    Global Moderator
    9
    Points
    23415
    Posts
  4. Turkoize

    Java Lifetime Sponsor
    6
    Points
    1891
    Posts

Popular Content

Showing content with the highest reputation on 04/05/17 in Posts

  1. 7 points
    Also pray to JaGeX and perform elaborate "anti-ban dance rituals" before starting your farm. Praise be.
  2. 4 points
    I'm going to share my tips for everyone. 1) Use a 10 tier mule system. Mule 1 receives loot from slaves. M1 trades M2. M2 trades M3. M3 trades M4, etc until you reach mule 10. This is the most efficient Antiban and will never get a mule banned. If you need help setting this complex system up, contact @Lewis. He runs a 25 man mule system but I don't think this is too necessary. 2) Use one proxy per Account. Investing $3.50 per account per month is worth it if you never get banned. 3) Bot til your slaves become so stressed they become as bald as Bob the Bot. 4) Always switch up your mule spots. Jagex tracks hotspots so make sure your mule is constantly switching locations. Have your mule roam all of Varrock and let your slaves come to him. Will add more to this later. Going to go eat a burrito now
  3. option == random(2) if option == 1 , do method1 else method2
  4. 3 points
    brb unliking everything
  5. Hi if you need a private script, pm me
  6. 👑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
  7. I decided to take a look at some of the reports in the Client Bugs & Suggestions and came up with a few things. 1. @Reveance Reported an issue with gRandom not correctly generating random numbers on a normal distribution, and he was correct. Unfortunately when I went to go back and make the formula correct, it broke a lot of our API. I took the lazy approach and deprecated all the gRandom methods and re-documented the method. 2. There were a few random reports about the GrandExchange buyItem/sellItem methods not working correctly on low cpu mode. I tested it, found a few areas of concern, and made it a bit more stable. It's a lot of code and anyone who says they wrote their own "in a few minutes" is either a blatant liar, doesn't perform all the checks, or is using breakable code (such as static ids). Speaking of performing checks, there was a check to see if you already had the buy/sell interface screen open. It however didn't check to see if there was an offer. Now it does both checks; so if there is an offer already in it backs out to the main Grand Exchange interface and selects the next available box. 3. When looking through Grand Exchange API I realized we had a broken function in ConditionalSleep. Probably lived there for many years, oh well squashed for now. 4. Spaghetti witchcraft mouse methods are getting removed. The following methods are deprecated and do nothing: -moveSlightly(int sleep) -moveVerySlightly() Additionally moveRandomly(int sleep) now only calls moveRandomly() without sleeping. Want the old functionality? Call moveRandomly(); sleep(time);. 5. We also took a look at some of the failed to fetch worlds list errors, hopefully thats resolved. Best of luck, let me know how this version works for you guys!
  8. Snorlax was a big add dude, lol. Lester stopped trading a while ago. He was doing personal stuff - think it might have been schooling or something. I can't remember as we haven't talked in forever. Sonic was some scrub @Dex I don't know what happened to abi, though we didn't talk but so much.
  9. 2 points
    Babysit the hell out of it, That's what I've done on multiple accounts, Not a lot else you can do about it, Unless you're willing to go the extra length with Proxies, VPN/VPS etc. I'd never bot on an account i'm not willing to lose either XD
  10. 2 points
    25 man is necessary, if you use 24 or less i cannot guarantee you will be ban free
  11. 2 points
    if that's how u feel
  12. Just remember the random can be a zero. EDIT: Villius sniped me.
  13. 2 points
    I am really thinking about buying this one - would it be possible with a trial? Tyvm in advance! Also, does it have failsafe in terms of accidently clicking on an archer (i.e running away and then back again; resuming the minigame?). Edit: Okay, I just went from a part-time retard to full-time. I already own the script but since its been ages I've botted, I didn't realize. Pardon (you can still answer my question though )
  14. 2 points
    Added proggy to main thread good job Will add screenshots on levelling in next version ^^ @dawg hmm make sure you followed the script setup instructions on main thread. which option have you tried? try esc mode it doesn't require too much setup, only enabling the esc hotkey in settings tab in rs ^^
  15. You need to check if cow is != null. if (!myPlayer().isUnderAttack() && cow != null && ....)
  16. 2 points
    what about a PT Cuiser?
  17. From the stack trace, you can see that you have an NPE thrown at line 61 of your code. An NPE (null pointer exception) is an exception which is thrown when attempting to work with a null value (it's a bit more complicated that this, but essentially a null check is what you're looking for). Unfortunately I cannot tell which line is 61 in your code, but i'm guessing it's in the bank state where you define 'NPC banker = npcs.closest(...).' The next line will try and interact even if the banker is not present. To fix this, slip this line in: NPC banker = npcs.closest("Banker"); if (banker != null) { banker.interact("Bank"); } Also, just a side note, in your getState, instead of comparing true to true, simply use the evaluation: myPlayer().isUnderAttack(). myPlayer#isUnderAttack returns a boolean value so you can use this directly. Good luck! let me know if you have any further questions ~apa
  18. if (!bank.isOpen) { if (banker!=null) { banker.interact("Bank"); sleepconditon until bank is open; } } else { getBank().depositAll(); } Also, your script is going to break if you're not in the cows or bank area since you only call it to walk when you're there. Structure the script like this: If (inv is full and !bank contains my player){ walk to bank } If (inv is full and bank contains my player){ bank } If (!inv is full and !cowpen contains my player){ walk to cowpen } If (!inv is full and cowpen contains my player){ lootHides } This will make the script not get stuck walking
  19. 1 point
    Explv's Map A map tool to allow the simple creation of areas, poly areas, paths and positions. GITHUB: https://github.com/Explv/Explv.github.io WEBSITE: http://explv.github.io/ NOW SUPPORTS DUNGEONS (Type the dungeon name into the search box): If you would like to assist me with identifying dungeons and other areas The first set of areas is around 2868, 4658, 0 (you can go there by typing the coordinates into the boxes at the top right). Move the map around and you will see a bunch of areas without names. The second set of areas is around 2875, 9452, 0 Provide me with the name of the dungeon, and the x, y coordinates
  20. 1. Pictures of the account stats 2. Pictures of the login details 3. Pictures of the total wealth (if there is any) Warriors ring (i), nmz is full of absorb potions/overload potions and around 2m points. 4. Pictures of the quests completed https://i.gyazo.com/79e0626b7ce56c2413dbf52e1d4ef413.mp4 5. The price you will be starting bids at 30M 6. The A/W (Auto-win) for your account 30M 7. The methods of payment you are accepting 07GP 8. Your trading conditions You go first unless trusted. 9. Pictures of the account status 10. Original/previous owners AND Original Email Address Original owner is @Flax. Email will be registered to yours.
  21. 1 point
    May I have a trial?
  22. 1 point
    I restarted the client to keep botting again sorry mate. I'll let you know if it happens again.
  23. What do you recommend (personal opinion, based on your experience in botting and knowledge of the system) as the best 'anti-ban' set-up for this specific script of yours? As I, personally focus a whole lot on reducing the risk of getting struck by the banhammer when botting on such heavily monitored minigame/activity such as the range guild.
  24. open task manager and click processes like so: and check whats using the highest cpu/ram, will help you debug what is causing it
  25. Turn off the npc attack option and it will never attack the guards ^^ the only fail safe to worry about is the coins, make sure you have more than enough so you won't run out
  26. This is all i have under banking . I have only made it so it wont deposit my chaos runes.
  27. Is there a trick to making it withdraw food , or is there some foods it doesn't support? I have used it at few different locations incase one of the banks wasn't supported. but i still seem to be having the same issue. It will deposit the loot but will not withdraw any food, though i have specified Trout x20 or something similar.
  28. oww its for everyone i tougth its only mine, yes after its done with an portal it waits at the portal so a little faster would be perfect maybe, but it runs like a beastt tyvmm for ur script
  29. To prevent it I'd suggest that the script runs closer to the Altar and is clicked whilst in view, web walking probably has something to do with it idk
  30. Can i try this out? I wasn't sure which page to actually post on for the free trial but id like to try the aio Fighter please
  31. Hi I was wondering if i could try a free trial? I plan to buy it for a month afterwards but I'd like to try it out first
  32. Could I trail this making brews
  33. hey my dawg, think I could get a trial? Would love to buy if it works well enough
  34. Since i've been using it all day, I have to disagree with you. Kenyon
  35. Since it has the 2 option modes the script is broken...
  36. Private scripts can help lower your bans - however at the end of the day it's always still botting so there's always a risk with it - try and not bot anything you don't want to risk losing - especially a main :p Private scripts: @Eagle Scripts @Imateamcape @Magarac @naaiz Botting less common things also is good; (such as not botting flax/oaks/yews) but training skills with either aren't commonly botted; and avoid heavily common things like Blast furnace etcc. Some training locations (especially AFK) can be better for lower ban rates (sand crabs) as less clicks etc. Goodluck!
  37. Are the rock crabs next to the raids supported ?
  38. New Update (v188) - Added stand away X tiles from npc target option - Added an update for safespotting and fightzones (metal dragons) - Big bones are now prioritized if using b2p mode - Added alerts for prayer potion (when prayer reaches X points) - Select all button disappear bug fixed update will go live within 24 hours automatically, good luck everyone ^^
  39. RC

    1 point
    Ever since i got back into RS 4 months ago i wanted to bot RC to 99.. Only tried it a few times before giving up. Would really love to give it another go.. Tbh though i feel like the only way to make it somewhat success would be to use a private script, since RC is such a high ban. Opinions? Success stories? It's one of the only skills i struggle to bot! Thanks fam
  40. Just want to say, This script is AMAZING, been using it for a while now and it hasn't failed me yet. Had a 6hour proggie today which i forgot to screenshot, which leads me to my next question; Could you implement a feature where a screenshot could be taken, every level or every hour, that way, i won't miss important milestones Loving the new updates btw, The camera move, Esc mode, i'm currently getting 39k xp per hour with a 132+ range bonus. Thanks again mate Kenyon
  41. 1 point
    NEW UPDATE - Code can now be pasted into the output area and it will be displayed on the map

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.