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

    Global Moderator
    19
    Points
    23415
    Posts
  2. Jams

    Trade With Caution
    16
    Points
    2812
    Posts
  3. Scotty

    Members
    7
    Points
    154
    Posts
  4. Maldesto

    Administrator
    7
    Points
    19230
    Posts

Popular Content

Showing content with the highest reputation on 08/17/15 in Posts

  1. 16 points
    motherfucker.
  2. ๐Ÿ‘‘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
  3. 4 points
    there has never been a guy called james on osbot who has not scammed you have been warned community
  4. Hi im new botter like 2 bot. I have bot buyed bot and use it every 2 hours 30 mins break! This community seems like so much fun and I like fun! Maybe if you're nice you can give me all ur methods and maybe an account so I can join in on your farm! Hoping most of the bot price goes down to $1 so I can buy it! And Hope I learn how 2 script so I can not fail as much as Valk and break every script I touch. Thnaks lads have gud day
  5. 3 points
    this is a story about how i fell in love with maldesto: i really like maldesto because he gave me a second chance on osbot, i was a cunt to him to once when i got shown some stuff - i did some bad things but he forgave me, i have seen since that he is a gr8 individual i really like him - my love doesn't die - although he doesn't like me back
  6. 3 points
  7. Alright man, just thought I'd drop you another proggy ~103 hours
  8. I tried running the bot and got a message saying I had to update. tried downloading your .jar multiple times and get the error; " error:invalid or corrupt jarfile C:/OSBot 2.3.99 " just thought you guys should know.
  9. 2 points
    This may work (wrote in 10 minutes): import java.awt.Color; import java.awt.Graphics2D; import javax.swing.JOptionPane; import org.osbot.rs07.api.model.Character; import org.osbot.rs07.api.model.Player; import org.osbot.rs07.script.Script; import org.osbot.rs07.script.ScriptManifest; @ScriptManifest(author = "LiveRare", info = "", logo = "", name = "Beast of Burden (attack)", version = 0) public class MasterSlaveAttack extends Script { private String status; private String mastersName; Player me = null; Character<?> myInteractor = null; Player master = null; Character<?> masterInteractor = null; @Override public void onStart() throws InterruptedException { mastersName = JOptionPane.showInputDialog("Who's your daddy?"); } @Override public int onLoop() throws InterruptedException { if (master != null && master.exists()) { assert(master.getName().equalsIgnoreCase(mastersName)); me = myPlayer(); myInteractor = me.getInteracting(); masterInteractor = master.getInteracting(); if (isMasterInteractingWithAnyone()) { if (isInteractingWithMastersTarget()) { status = "Waiting."; } else { status = "Attacking."; if (masterInteractor.interact("Attack")) { sleep(random(500, 1000)); } } } else if (isInteractingWithMaster()) { status = "Waiting (following)."; } else if (master != null && master.exists()) { status = "Following."; if (map.distance(master) >= 7) { status = "Walking to master."; if (getLocalWalker().walk(master)) { sleep(random(250, 500)); } } else { status = "Following master."; if (master.interact("Follow")) { sleep(random(500, 1000)); } } } } else if (mastersName != null && !mastersName.isEmpty()) { status = "Finding master..."; master = getPlayers().closest(mastersName); if (master != null) { log("Found masa!"); } else { log("Master went and fucked off"); stop(true); } } else { log("...Are you even trying?"); stop(false); } return random(250, 500); } @Override public void onPaint(Graphics2D g) { g.setColor(Color.BLACK); g.drawString(status, 26, 26); g.setColor(Color.YELLOW); g.drawString(status, 25, 25); } public boolean isMasterInteractingWithAnyone() { return masterInteractor != null && masterInteractor.exists() && !masterInteractor.equals(me); } public boolean isInteractingWithMastersTarget() { return myInteractor != null && myInteractor.exists() && masterInteractor != null && masterInteractor.exists() && myInteractor.equals(masterInteractor); } public boolean isInteractingWithMaster() { return myInteractor != null && myInteractor.exists() && master != null && master.exists() && myInteractor.equals(master); } } Run this script on the 'slaves'. The slave cannot overcome obstacles like the Clan Wars portal/Wilderness ditch, so do it yourself. If you're the master account -- DON'T INTERACT WITH SLAVES. Special attack's not supported. As master, attack players/NPCs. For other players, merely follow them and your minions will attack (this is literally that primitive). Give it a go and tell me if you get the desired outcome. I'll re-read it later tonight and I may stumble upon fuck-ups that I've missed. Download the compiled class file and place it in your OSBot/Scripts folder. You can ask someone do decompile and to check it; the file contains only code shown in this post.
  10. Ill come too and then we can drive back north and go to six flags! ;) (From the North Shore of Illinois, welcome to the midwest!)
  11. by Czar Buy now (only $8.99!) 143 HOURS IN ONE GO!!!!! update: this bot is now featured on the front page of osbot! More reviews than every other fishing bot combined! 100 hour progress report!!! How to use Script Queue: ID is 552, and the parameters will be the profile name that you saved in setup! This process is really simple, just to save you headache
  12. This tutorial will cover everything required to write your own OSBot scripts. Although it is quite lengthy, don't let this put you off - it shouldn't take more than a couple of hours to follow through, at the end of which you will have learned the scripting basics and will have your very own tea thieving script which you can modify to your liking. Good luck! Previous required knowledge: None Knowledge of basic java helps but is not required! What this guide covers: Downloading your code editor (IDE) Basic programming concepts A quick guide to java Writing a script with the OSBot API Running your script Downloading Eclipse: Setting up your project: Language basics: Java basics: Script backbone: Compiling the script: Writing the script: Best practices and conventions: Completed Tea thieving source code: That's the end of this tutorial, hopefully it was useful and concise enough. As I mentioned earlier, remember to ask LOTS OF QUESTIONS! Also remember that google is your friend! ? Although it may seem OSBot scripting is a niche use of java, many questions can translate to more widely adopted counterparts - use this to your advantage. If you have any questions do not hesitate to post as a reply below. Since I follow this thread, I will receive a notification if you do and will do my best to get back to you ASAP! - Apaec
  13. Progress Reports Instructions โ€‹Select the tab you are interested in, e.g. Cutting or Stringing, Arrows / Bolts / Darts Select the settings in that tab you want Press start in a bank, or at the Grand Exchange Note: The script will use the settings in the tab you currently have selected, so you need to make sure you double check for starting the script. -------------------------------------------------------------------------------------------------------------------------------------------------------------------------- PLEASE REPORT ANY BUGS USING THE TEMPLATE BELOW SO THEY CAN BE FIXED ASAP OR ADD ME ON SKYPE ENJOY!
  14. Arctic's RS Gains Preamble Hi everyone! My name is Arctic and I have been involved in the RS black market for 6 years this August. Over this time I have handled around $80,000+ US worth of virtual goods and have amassed an approximate total of 2,600 feedback on the 3 major RS Botting sites I mainly have done this to build a good reputation and to give back to the community, via the means of giveaways and also gaining positions on staff teams which helped me use my skills to rid communities of scammers and reach more users and interact with them As well as being able to contribute to these communities I have quite obviously made profit from trading and plan to make a lot more profit to reach this new goal! So feel free to follow what I have gained so far from my market trading and what I aim for from future trading! Benefits of Past Trading The New Aim Progress Supporters Ways you can trade me I sell OSBot Store Vouchers - Click here. I sell many Digital Goods [LoL/XBL/PSN/WoW/Steam GC/iTunes] - Click here. I work for RainbowGP gold shop - Click here. I sell OSBot compatible proxies - Click here.
  15. Goddamn that movie turned me on. Who else saw it? I never realized Ice Cube was such a G. I just thought he had mediocre music and played in funny movies. Life changed
  16. Hi, getting back into RS for a bit. About to start the last year of my CS degree and I've always wanted to write a script for RS so here I am right now getting started. Hopefully, I stick to this and don't jump around like I usually do with side projects haha. Any and all advice are welcome
  17. 1 point
    Hey everyone, I just started playing oldschool then I remembered I'm a cheater so I googled for a bot and found osbot! My names Jeremy, I'm 20, from London.
  18. So has anyone botted 2 accounts off the same IP address at the same time for a couple hours and been banned before? I normally only bot 1 account per IP address but I just wanted to give 2 bots a try and so far Ive been successful. Maybe Ive been lucky so I wanted to see how you guys have done with that method..
  19. Well, isn't working for me lol
  20. It's Yews, but rather not say where, sorry . Also Czar, how is your Fletching bot atm? Thinking about getting it.
  21. Awesome! Thanks for taking the time to make such a great piece of software. I didn't have to think twice shelling out $8.99 for it because it's so flawless perfect. I look forward to future updates Edit: Corrected ;)
  22. Would be nice and very helpful to see one back. with tab support and different layout support would pay $7 for it =]
  23. Solid script as usual
  24. 1 point
    Almost 99 cooking. Half way to 97 so far.
  25. http://osbot.org/forum/topic/72423-tutorial-how-to-properly-cancel-automatic-renewal/
  26. User moved to TWC and asked to post here, he stated he was the Original owner, so he is liable for a refund.
  27. Just bought it and works flawlessly as expected ;)! It doesn't act suspiciously quickly and great xp/h!
  28. wowe such warm welcomes
  29. hi there, thankyou i figured it out. i needed it zoomed in becase i play on a 50" t.v and all the icons are too small otherwise. can you give me a trial of the script again please? i havent gotten a chance to use it because of the issue. thankyou.
  30. Sorry I don't like you because you stole my boyfriends name
  31. very well done script, i would pay 3$ for you to make me the same one with cannon support
  32. Good luck on ur goal!
  33. DAMN!? 7m 1-65? I spent like 2-3m and got 64.
  34. 1 point
    Just gave those requesting trials 72hr trials.
  35. drive to southern illinois i meet you for some food/drinks my treat
  36. fixed you should have the script and 51 cents :p
  37. I'm definitely not a good example for learning, as I just dive in without looking at anything, much like assembling IKEA furniture ;) I believe there are a few good GUI tutorials on here, so look around the tutorial section!
  38. Looks good bro, nice work

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.