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

    $100.00 Donor
    6
    Points
    1775
    Posts

Popular Content

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

  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. 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!
  20. Now open source: https://github.com/Explv/Explvs-AIO Download on GitHub: https://github.com/Explv/Explvs-AIO/releases/latest Explv's AIO From Tutorial Island to your dream account. Script ID: 890 CLI Usage: java -jar "OSBot 2.5.31.jar" -login osbot_user:osbot_passwd -bot osrs_user:osrs_passwd:pin -script "\"Explv's AIO v3.2\":example.config" Advanced task system featuring 7 different task types Level task: Perform an activity until a level in a skill is reached Resource task: Perform an activity until a quantity of an item has been obtained Timed task: Perform an activity for a number of minutes Quest task: Complete a quest Grand Exchange task: Buy or sell items at the Grand Exchange Break task: Pause the script for an amount of time Loop task: Repeat selected previous tasks any number of times Tutorial Island Support The script completes Tutorial Island if your player starts there, with fully randomized customer character creation GUI Preview Supported Activites Agility Cooking Crafting Firemaking Fishing Fletching Herblore Mining Ranged Runecrafting Smithing Thieving Woodcutting Quests
  21. 24/7 goldfarm, they get banned, load up a new hatch of bots, start again. That would not work for zulrah bots unfortunately, your idea of botting 4-6hours a day is pretty safe.
  22. Saying this is near maxed is like saying @Czar's scripts wont get you banned
  23. 1 point
    200-300M if you were trusted
  24. Please stick to the 0.01% of stories where W10 doesn't work properly, W10 is a great operating system, once you disable the spying settings.
  25. Why thank you And yeah that feature will be useful, Especially for yourself if you want a nice proggie...not that you need any more haha
  26. Was not really thinking about that. I don't code
  27. Used it for a max of 3 hours within 4 days, was perma banned. Did a lot of other stuff, so wasn't bad botting just got unlucky i guess.
  28. 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
  29. Can i not safe spot and cannon at same time, ?? been trying this with no luck.
  30. 1 point
    grats man, great scripts you have and good job keep it up!
  31. is this not working correctly at the moment? i left the bot running for about 25-35 minutes and it only did 2 inventories. it seems to stall and freeze alot.
  32. 1 point
    I think they means the car, which I can excuse.
  33. Thanks for the update @RoomScape & @Marteezy. Dispute closed.
  34. Could I trail this making brews
  35. Considering you only need 30 smith which takes 15 mi with the knight sword quest is pretyt eays to remake accounts ^^ The prices change a lot aswell so hard to tell On monday all the banns of the weekend kick in so thats pretyt normal to get banned I usually suicide from fridya evening until monday morning wihtout issues on most goldfarming sscripts
  36. hey my dawg, think I could get a trial? Would love to buy if it works well enough
  37. Since i've been using it all day, I have to disagree with you. Kenyon
  38. Since it has the 2 option modes the script is broken...
  39. 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 ^^
  40. Order Form:- What is your Skype?: Predzzzzzz - What service do you need?:skilling hand done - Payment method? (rsgp/btc): rsgp - Do you agree to my TOS?: yes added on skype

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.