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

    Trade With Caution
    18
    Points
    1699
    Posts
  2. Oliver

    Ex-Staff
    16
    Points
    5204
    Posts
  3. Apaec

    Scripter III
    13
    Points
    11174
    Posts
  4. Anne

    Java Lifetime Sponsor
    11
    Points
    6983
    Posts

Popular Content

Showing content with the highest reputation on 03/30/15 in Posts

  1. Dear community, Some really old legacy code in our updater, which amazingly lasted 2 years before it broke, broke today on OSRS update #76. I've patched it and you can all return to your bots. Happy botting! Regards, The OSBot team P.S. Users of the Mirror Client - don't forget to update your mirror client.jar here: http://osbot.org/forum/topic/68899-mirrorclient-v1052/#entry760314
  2. As always, please update your mirrorclient.jar mirrorclient.zip Release notes: Updated for osrs #76 Miscellaneous bugfixes
  3. Just did the easter event on my main account, it's a great way to get your hands on ~6 easter eggs and it's really quick to do! If you get stuck, here's how to do it: REQUIREMENTS: None RECOMMENDED: Energy / Stamina potions REWARDS: 2 easter eggs, full bunny outfit, ring of egg, + access to chocolate lair where you can get bonus eggs. THIS QUEST WILL TAKE 15 MINUTES MAXIMUM! Getting there: Head south of falador to this location: Once you get there, head down the 'Rabbit hole' in the floor to enter the Bunny's lair. When you click the hole, converse with the rabbit until you see this option: Click it and you will be inside the Bunny's lair. Once you're in the lair, you will see a short cutscene. Run west then south, and finally head east until you reach the office of the bunny. Here's a minimap guide: -> -> -> Once you are in the office, talk to the bunny. Ask the bunny how to get rid of the creatures, then leave the room and head back to the ladder. SHORTCUT! WHEN YOU LOG OUT ANYWHERE IN THE CAVE, YOU WILL LOG BACK IN NEXT TO THE LADDER! DO THIS TO MOVE AROUND QUICKER! Once you are at the ladder, head north until you see a giant easter bird. How to get to the bird: Once you are at the bird, search the crate to find a blaster and a bronze pickaxe. Then head south back towards the ladder, and continue past the ladder until you reach a mining spot (visible on the minimap). Once there, mine the Rocks to get three 'Volatile Mineral's. You will NOT recieve any mining exp. You do not need any more than 3. Once you've mined three, use them on the blaster to get an 'incomplete blaster'. Then run to the pool and use your blaster on the black oil floating ontop of the water: You should now have an 'Easter Blaster'. Now you need to hunt all the chocolate creatures in the cave. To do this, open your combat tab and click either of the attacks to fire a projectile in the direction you're facing. if the projectile hits a chocolate creature, they die. the blaster has unlimited uses. There are a total of 5. you'll need to find them yourself, but they should be near to where mine are: For the spider, stand where I am standing and use the explosive attack. When you kill the last one, a boss will spawn. He cannot damage you, but he can freeze you in place for 5 seconds. Kill him the same way you did the others, however he will take a few more hits to kill. When you kill him, return to the bunny in the office to get your reward! And that's the event done! for the extended reward, enter this door: You can then kill bunnies in this room until you receive the message that you've gained all the possible rewards from the bunnies. Hope that helped. It really only takes 15minutes maximum! Apaec
  4. The client is currently offline due to a Runescape update. There is no ETA when the bot will be back up but it will be as soon as one of the developers comes online to fix it. What you can do in the meantime? - visit the chatbox and come for some nice talk - browse the forums - browse scripts you may want to purchase in future What you should not do: - create another topic about the client being offline. - spamming the chatbox why it does not work Happy Monday everyone and let's look forward for the client to be back up soon For further questions, comment below! Update: The developers are now online and work on a fix
  5. 6 points
    Thank god i don't have to ask about 20 people if they have bonds anymore
  6. @Maldesto thought you would appreciate this
  7. http://imgur.com/a/fTlXW SVE Wheels and the other box is a California Special spoiler 2014 Black mustang
  8. 4 points
  9. 3 points
    And bye again.
  10. 3 points
    only 90's kids
  11. 3 points
    Mald, howmuch would it cost to pin a script thread ?
  12. So you mean they were voted on. Just because they were stuck to each other doesn't mean you didn't vote on them, just means you couldn't vote on them separately.
  13. After doing some research I found out it's him. He played it well but didnt think about one small detail which got him caught. Thanks for reporting !
  14. I'm sure somebody will find this useful. import java.io.BufferedReader; import java.io.IOException; import java.io.InputStreamReader; import java.net.URL; /** * GrandExchange Price Class * * @author Reid * */ public class GrandExchange { private static final String BASE = "https://api.rsbuddy.com/grandExchange?a=guidePrice&i="; /** * Default Constructor * */ public GrandExchange() { } /** * Gets the overall price of an item. * * @param itemID * @return itemPrice * @throws IOException */ public int getOverallPrice(final int itemID) throws IOException { return parse(itemID,"overall"); } /** * Gets the buying price of an item. * * @param itemID * @return itemPrice * @throws IOException */ public int getBuyingPrice(final int itemID) throws IOException { return parse(itemID,"buying"); } /** * Gets the selling price of an item. * * @param itemID * @return itemPrice * @throws IOException */ public int getSellingPrice(final int itemID) throws IOException { return parse(itemID,"selling"); } /** * Retrieves the price of an item. * * @param itemID * @return itemPrice * @throws IOException */ private int parse(final int itemID, String choice) throws IOException { final URL url = new URL(BASE + itemID); BufferedReader file = new BufferedReader(new InputStreamReader(url.openStream())); String line; String price = null; while ((line = file.readLine()) != null) { if (line.contains("{")) { price = (line).trim(); } } if (choice.equals("buying")){ price = price.substring(price.indexOf(",") + 10, nthOccurrence(price, ',', 1)).trim(); } else if(choice.equals("selling")) { price = price.substring(nthOccurrence(price, ',', 2) + 11 , price.indexOf("sellingQuantity") - 2).trim(); } else { price = price.substring(price.indexOf(":") + 1, price.indexOf(",")).trim(); } file.close(); return Integer.parseInt(price); } private int nthOccurrence(String str, char c, int n) { int pos = str.indexOf(c, 0); while (n-- > 0 && pos != -1) pos = str.indexOf(c, pos + 1); return pos; } }
  15. Dear community, Some time this week we will release an update that will give the client a nice performance boost, especially when interacting with entities. Today I have rewritten the model triangularization, which gave a nice boost to the mouse movements. There is another part though, the part where the mouse movements for entities are evaluated which requires an overhaul. Without it the gains gained by the first part I did today are still useless as the second part is a rather large bottleneck. On top of that, we will introduce overal performance on accessing most entity types. Overall this should boost OSBot's performance in terms of speed and also CPU and memory usage spikes. These should also give a noticeable performance boost to the mirror client mode. Regards, The OSBot team
  16. Each tracker is a component that can be made to share a window. But in this demonstration, each tracker has its own window. Each tracker also has the ability to be configured in 'brief mode' that displays the most rudimentary information a botter/legit player may be interested to know: Forgot to add text anti-aliasing, here's what it looks like with: So far I'm interested to hear feedback about the design, with suggestions and improvements. Here's the current run-down: Each skill has an icon, primary and secondary colour. The colours are picked from EoC skill capes. The bottom portion of the gradient is black. The top is the primary skill cape colour. The progress bar uses both primary and secondary colours in its design. Download Here Have fun, and remember to credit me! Oh and OSBot, implement it pl0x!
  17. idk where to post this as there is no section for site suggestion, so my apologies. As wel all know, on the good old thursday, or on other days when an RS update has occured, the chatbox will overflow with people asking about the bot being down, i feel very sorry for the Chatbox Assistant's in the chatbox, as they litteraly have to spam the message that the bot is down, @Acerd even put up a autotalker for this let's all take a moment of silence So, my suggestion: When entering the chatbox when OSbot is down, show a message explaining the bot is down and to please not ask about it in the chat, as the developers are aware. ChatBox.Enter() { if(Osbot.isdown) { MessageBox.Show("The bot client is temporarely down due to an RS update, please do not ask about this as the developers are aware, Thank you!"); } } i keed about the code part but srsly, i think this is a good idea EDIT. orrrrrrr you could just put it as errormessage onscreen in the bot! that would probaly fix the problem
  18. 2 points
    Asuna was here Arctic is nub
  19. Last chance on resolving this, or I'll suspend both of you trolls. Because I feel like both of you are just trying to waste eachother's and my time.
  20. Giving a shout out to Acerd on his day of birth. Happy birthday bruh. You're all of our favorite Iranian
  21. Dispute closed, user is a troll.
  22. Thanks @Maxi it has been hell in the chat box today ^_^
  23. Wtf

    2 points
  24. Wtf

    2 points
  25. 2 points
    I watched 2 backroom casting couch videos so far, going on the 3rd. I skip the porn, I just watch the interview.
  26. 2 points
    How is this fair? @Maldesto, what kind of sorcery are you using?
  27. 2 points
    Ban both pls
  28. or people can stop acting like tards and check bot stats
  29. The people of 07 RS didn't want all that extra BS. They had the chance to vote on what they wanted and they chose to only use it for membership and nothing else. I think it's pretty nice, though. I never did like either of the runecoins or the keys.
  30. Plot twist What if puush wasn't infected and the malware is in the removal tool? Thought about that? Khaleesi
  31. 2 points
    Hmm I don't have that implemented. I also don't really have an account available who has that... I can try to make a beta for it, but you'll have to test when it's on SDN Khaleesi Will try to run varrock and fally course at the evening, and i'll try to get it fixed.
  32. I do think deposit fee's are definitely important just in case a worker does scam. I feel if the worker is given no jobs and they decide to leave they are entitled to get all of the deposit back. However if they do decide to leave after doing jobs then the service owner should be entitled to take 10% (Or whatever the agreed % per job completed they normally take is agreed to be) of their deposit as they have actually provided them with work. Service owners shouldn't take a persons deposit just because they have "earn't more" than the service fee. The service fee is there to reimburse customers if they are ever scammed by a worker; workers who do what is asked then decide to leave should not be dealt with the same card if they do nothing wrong. The only time a worker should not be reimbursed other than for scamming IMO is if they break the service owners T.O.S such as not replying for 3 days, or whatever the specific services T.O.S state.
  33. A couple of days I go used the regular OSbot client with dreamfighter. Used a brand new, fresh proxied account. Got banned day 2 after about 20 hours. Currently on my pure I've ran 10-14 hours a day of botting with mirror, switching up between diff skills and what I bot for about 2 weeks now. Also using a main account on a proxy and botting barrows. About 12 hours a day of strictly botting barrows, (on normal client, not mirror). However I do complete elites whenever I get them from chest. I feel like you've got it spot on. I used to think that ban rates were about the script and location however i know dreamfighter is a great script and it didn't get stuck once. I also botted in varrock sewers for those 2 days which is one of the most discrete locations and I didn't receive a single report. However, My friend has ran MTA for 20 hours a day for a week on normal osbot client. He only got banned after using a f2p agility script for 2 hours. And that was only a 2 day Mod ban. I think you're spot on with the new accounts being watched a lot more than older ones. Hope this helps.
  34. Current Price 3.50 USD Contact Via Skype Jagex Bonds Cost $5.99 Good for: if you dont want to purchase gold ! GE Limit 24hrs of play !
  35. Hi it was stuck at the bank like i suspected because it couldn't find mind runes. what im doing now is im loading inv as 2000 mind runes and im putting lets say 50k mind runes in the bank hopefully it wont get stuck in the bank then. it would be nice if you could add a quick magic xp tracker to start off with and then perhaphs make it magic friendly for autocasting spells with staff. thanks!
  36. Good job man! Nice to see some stuff around here
  37. 1 point
    Had like a 30 hour progress but forgot to take pic, anyways here is it
  38. Awesome might buy a bond for my second acc soon if it stays this cheap
  39. Here's a list of bugs i've noticed not sure if they've been fixed or not tho: If you start out with more than one cammy tabs in your inv it will use all of them at once instead of just using one and running to cammy bank When it logs out and runescape updates it will continue to try and log in even thought it says "Runescape's been updated" maybe patch it so it'll terminate the script when that happens? Not sure if this is a problem or not but i noticed this: If you set it to aggressive all i saw was it attack other peoples crabs, maybe make it so on aggressive it attacks all crabs instead of just other peoples.
  40. shhhh dont make it sound like you didnt put effort into it x)
  41. I'm interested in knowing how much would you run me for a Sick version of my current avatar? If possible would like "Kami" in there to match but not needed. going off to bed now, get back to you tomorrow.
  42. 1 point
    Yes, this bug is way more frequent on mirror client though due to the complex data caching system that can take time until cache is invalidated.
  43. I just got banned for 2 days also

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.