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

Popular Content

Showing content with the highest reputation on 01/08/16 in Posts

  1. Firstly - DO NOT LOCK SPAM THREADS UNLESS THEY'RE AGAINST MAJOR OSBOT RULES, IN WHICH CASE MOVE THE THREAD TO ARCHIVE (OR DELETE IT?) This currently happens a lot, I go onto a thread and I WANT to post on it, but it's fucking locked and I don't know why? FUCKING DELETE OR REMOVE IT Secondly - ALLOW RELEVANT OLD THREADS TO BE 'GRAVEDUG' BY ORIGINAL POSTER If like me, you're an old member with a lot of AMAZING historic spam section threads - WHY NOT BUMP OLD RELEVANT SPAM THREADS? (both of these rules are to applied in the spam section only)
  2. edit: seriously though, osbot private server would be a sick idea, and i proposed it long time ago, because a) the community needs something to do while they are botting.. on this botting forum.. and b.) scripters can test scripts, no we don't need a replica of the game we just need a map, a player and npcs/objects, which is included in the server readily downloadable The only challenge is moving to newer rs versions, you would have to get all the xtea, client interfaces, access masks , refactor client etc. each time you move rs versions, but it isn't really an issue
  3. ๐Ÿ‘‘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
  4. This year has been pretty exciting for all the development on OSBot. As new bots emerge and fade away, we have retained our position as a leader in the old school botting community. Although most of the team has obligations outside of this project, we love our product and jump to the chance to work on it. I really think this shows and it instills confidence in our customers, scripters, and s. As always, we work on security first, performance and stability second, followed by innovations and improved design. Highlights of 2015 Mirror Mode Released WebWalking Released InteractionEvent and MoveMouseEvent re-written and improved Improved security of scripts, connections, and local data Replaced interfaces with widgets, proper handling of grandchildren Added LoginCallback and LoginResponseCodeListener Added new Worlds class, replacing the outdated WorldHopper Added new Walking class, replacing LocalWalker Added Grand Exchange API Updated to Java 8 Consolidated area classes into one class Re-wrote all OSBot interfaces from scratch Added login to the booter Added proxy manager Various performance improvements and API cleanup We hope that you've enjoyed watching OSBot develop since 2013 and you're anticipating the next series of updates over 2016. I'd like to especially thank our VIP/Sponsors that support us with the funding to make all of this happen, we have a few cool new features to make it worthwhile in the future. Have a happy and safe new year -The OSBot Staff
  5. Scripters need to test their script in order to get a functional script. in order to test a script, the scripter needs: An account Stats required for the script the requirements of a script can be quite high, so if a scripter needs an account to test it on, the account will be at risk since it's logged into a bot client + running a script Now here's my idea. Tell me if it's impossible, not likely, or just stupid. OSbot private server An exact copy from OSRS, without modifications. You can test your scripts all you want without getting banned You can set your own stats (example: 63 hunter for a red chin script) Not only will this reduce the bans, throwing away a potentially good account, it will also not require time to train the skills. 63 hunter can take a while to train, and if you bot it, you will have a chance of getting banned along the way Adding to the benefits, a scripter can design a script that he otherwise couldn't make. a script with high requirements, example: Zulrah. There are a lot of other scripts that can be made with high requirements. You could also test your script and go for a 100-hour proggy, without any chance of getting banned server only accesable by scripters / staff obviously
  6. OSBot doesn't allow renting, sorry! Thanks, @Maldesto
  7. 3 points
    Hey, I needed to use the GE in one of my scripts so I came up with this. It's pretty basic but allows you to buy and sell different items at different prices and amounts, as well as collect Items. Currently it's only set up to use the first box but you could easily modify to suit your needs. GrandExchange.java: Lemon Version: Example Usage: public class Script extends org.osbot.rs07.script.Script{ private final String itemName = "Blue partyhat"; private final int itemPrice = 2147137627; private final int itemAmount = 500; @Override public int onLoop() throws InterruptedException { GrandExchange GE = new GrandExchange(this); //new GrandExchange instance with our script if (!getGrandExchange().isOpen()) { //Checks if ge is open GE.openGE(); //open ge randomly using booth or npc } else { GE.collectItems(false); //collect items (boolean true -> to bank, false -> inventory) GE.createBuyOffer(itemName, itemPrice, itemAmount); //creates a buy offer with specified params GE.createSellOffer(itemName, itemPrice, 0); //Sells all of the specified items in inventory at specified price ( 0 = all, int = specified amount) } return 150; } }
  8. Yeah but only americans risk because they have good ping.
  9. Having only played around 3-4 hours in the new great kourend, i'm far from an expert. I was wondering if any of you guys had any ideas which could be added to the premium / free script market? Moneymaking, combat training, skilling... anything really. Just feel free to drop your ideas down in this thread No guarentees i'll make any of them by the way! apa
  10. Spoken via Skype, accounts are to be ready tomorrow. A note to everyone else who ordered and still waiting, sorry about the delay, had a few workers quit on me, but have found stable reliable workers who are working round the clock to complete current orders. Previous workers started services and just vanished, without speaking to myself or my other workers, so a couple days past and then I was already behind, luckily my new workers are working as hard as they can and getting your orders complete. I apologise and will make sure they're done as soon as possible.
  11. I might get the American flag, surrounded by cheeseburgers.
  12. 2 points
    "git gud"
  13. how on earth are you going to get a replica of osrs server? solution #1 bribe one of the Mods soultion #2 physically go in jagex studio and steal the source codE?
  14. 2 points
    Your logic is flawed that's why. You have nested if(random == 2) inside if(random == 1). So the code inside if(random == 2) will never be executed, because it can only be reached if random = 1... It should look more like: public void antiBan2() throws InterruptedException { int random = random(1,3); switch(random){ case 1: sleep(random(1000, 2000)); mouse.moveRandomly(random(1000, 2000)); break; case 2: sleep(random(1000, 2000)); mouse.moveRandomly(random(300, 1000)); mouse.moveRandomly(random(1000, 2000)); break; } } That is because the walker in OSBot walks to a position within (i think) 2 tile accuracy. If you want it to walk to the exact tile, you will need to create your own WalkingEvents.
  15. 2 points
    Apparently I "botted" AKA logged in tomorrow and my offense expires today in a year wtf Jagex xD This is some Terminator Judgement day shit
  16. 2 points
    Ripperino Pepperino xD
  17. have you tried turning it off and on again
  18. OVER 2,000 FEEDBACK ON OSBOT! OSRS ACCOUNTS | Buy OSRS Gold | Buy RS3 Gold | Sell Runescape Gold
  19. Want to buy with OSGP? Contact me on Discord! Detailed feature list: - Supports all 3 boats - Attack portals, defend knight mode - Repair mode (No HP exp mode) - Potions support - Sets auto casting spell after dying - Use Special attack weapons - Only attack monsters mode (Good for low cb players) - Uses quick prayer (make sure to setup before starting) - Worldhopper - Points spender - CLI support for goldfarmers Custom Breakmanager: - Setup Bot and break times - Randomize your break times - Stop script on certain conditions (Stop on first break, Stop after X amount of minutes, Stop when skill level is reached) - Worldhopping - Crucial part to botting in 2023! Script queueing: - Support queueing multiple script in a row - All Khal scripts support flawless transitions in between scripts - Start creating your acc in a few clicks from scratch to multiple 99's - Flawless CLI support - Learn more here: How to use CLI parameters: - Example Usage: -script 589:ScriptFile.BreakFile.DiscordFile SAVEFILE = Saved Filename BREAKFILE = Breakmanager Filename - SAVEFILE: Save file can be created in the GUI. Navigate to the tab you want to run and press "Save As CLI file". Please choose your filename wisely (No special characters) - BREAKFILE (Optional): Breakfile can also be create in the GUI, set the breaksettings you wish to use and press "Save new CLI BreakFile". Please choose your filename wisely (No special characters) - Final form (Note that with some bot manager you do not need to specify -script 589): -script 589:TaskList1.4515breaks (With breaks) -script 589:TaskList1.4515breaks.discord1 (With breaks & discord) -script 589:TaskList1..discord1 (NO breaks & discord)
  20. Hey everyone, I've been spending the past week or so learning how to script by writing an Al-Kharid Warrior killer & looter. The script has come a long way from being ridden with bugs and unoptimized code to now being nearly flawless. I'm posting this here to try to get some input on what I might want to add before release as well as gauge the interest in a script like this. [updated 1/13/2016] - Rewrote most functions for optimization + cleaner code Script Currently: -Fights in either east or west room (tries to choose one without another player) -Will open the door to let guards in for more xp -Can eat / bank a variety of foods ( trout, salmon, lobster, swordfish, monkfish, can add more if need be) -Loots and banks herbs (only the more expensive ones for better gp/h) -Getting roughly 85k gp/h @ 60 att, 65 str, dragon scimmy, and ring of wealth -Antiban features: Random camera movements, checks nearby piles for loot, sometimes hovers next enemy -Supports potion banking / drinking -Better paint -Added GUI for user friendliness -Ready for public release! Plans / Ideas: -Loot count + gp gained + gp/h -Add special attack ability -Would love more ideas on how I can make this better New Paint: My Longest Progress Report: I would also like to give credits to Sinatra for letting people use his Varrock Guard killer as a base for their first scripts. It was a great help to understanding a node based way of writing scripts. I used that as the backbone for this for learning purposes, but mostly everything is changed now except for the banking method. Credits also go to Explv for helping me out on my thread post when I was having issues interacting with doors and drastically helped me with cleaning up my code + optimizations, huge help.
  21. I guess it's called spam for a reason...
  22. what does it say edit: no surrender, I see lol, sorry took me a while
  23. That is incorrect, and also he said walker.walk doesn't work
  24. script that will gain favor would be pretty nice
  25. blood rune crafting,new flax spinning spot,new yew tree spot,new cooking spot if you have 100 favour in one of the houses
  26. 1. We clarified this with the mods, it won't happen anymore. 2. Go for it, if it is worth it, or just make a new thread.
  27. What the hell did I just read
  28. I did not allocate higher mb to it, I left it at it's default amount. I will do that next time, thanks. Can I still have that other script though, or did you change your mind?
  29. Can I get a trial?
  30. Qubit nobody who knows what they're doing cares about your script lol. We're all capable of recreating it anyways but if you don't feel comfortable posting code for us to analyze you're crap outta luck. Troubleshooting method: after each line in the onstart add a log so you can see what checkpoint the code stops at. If you're loading a GUI built with JFormDesigner and it's complex, you might have to redo the GUI because I had that same issue. example: @Override public void onStart() throws InterruptedException { log("a"); UI gui = new UI(this); log("b"); gui.setVisible(true); log("c"); while (gui.isVisible()) { sleep(100); } log("d"); apply method as needed to figure out where the code stops being called.
  31. Well I probably made around 600m exp suiciding in dmm on one account with this script but those days are over. Maybe when u pretend to play legit do quest and bot limited time it will work. But the fact is that you wont see many bots these days especially in dmm. So ye Char I really like your scripts and I abused them a lot but those fat days are over and I dont think that ban rate have anything to do with quality of your work.
  32. Alright then how are we supposed to help? By guessing your code?
  33. Spellbook has changed since last patch with the addition of the Kourend Teleport. Should only affect stun-alchs and Onyx enchanting. Would appreciate a fix soon but I'll do vuln-alchs for now :^)
  34. And then he was like: And we were like:
  35. Perfect miner is fucked up for mining coal at mining guild: http://screencast.com/t/NcXsjSBsn6mn
  36. Hey char I saw people getting free scripts from you when they already have bough some of your work. How does it work? Can I have this miner if I already have thiever and fisher ?
  37. i wanna make ranger 99 in deadman mode could i make it from 40-99 with that script in deadman mode? or i die evry 1min?
  38. yeah think you should add it other than that cant fault it; i made 1 mill in 24 hours started level 30 - 60 in 1 day... shame I cant say the same for khaleesi experiment bot which i also paid same as i did for this after paying it starts and goes "setting up script" im furious.. sorry for going off topic
  39. Just wanted to let you know that the script experiences problems clicking 'String Jewellery' spell and takes a while before it clicks it correctly. Hopefully you can fix this soon. Other than that, works good.

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.