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 03/31/15 in all areas

  1. Not mine, but thought it would be nice to share:
  2. 4 points
    I know it is nothing special but for me, using a normal chair (diningtable chair) over the last three month, it is like a new world If someone wants to know, the price was 149€ from Ikea
  3. 4 points
    You can recover an account even after 10years.(Account transactions are never safe) So there is no point in letting someone verified hold the payment till recovery questions are changed. However, if you are afraid to go first you can always use a middle man. Also the whole staff team works as hard as possible to avoid ban evaders and is very successful with its work. The system is in no way "broken as fuck" as you said. Compared to other communities, osbot provides one of the best market places, kept safe by the dedicated staff team. Of course there will always be black sheep's that break the rules. But we try our best to keep them as low as possible. If you want to make a serious suggestion you should inform yourself upfront, instead of blaming the current system to be "fucked up"!
  4. LOOOOOOOLL~~!~#@~E@DWASR
  5. ur late , me and anne already got this
  6. I say we also make a thread called "who is banned from the forums? A quick head count".
  7. Anyone voting yes who isn't banned ill make it happen then
  8. 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
  9. 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; } }
  10. As always, please update your mirrorclient.jar mirrorclient.zip Release notes: Updated for osrs #76 Miscellaneous bugfixes
  11. It's just best practice not to provoke or wake up sleeping dogs.
  12. Jokes on you, it's still March where I live.
  13. 2 points
    Then what is this: http://osbot.org/forum/topic/68611-paska-500s-f-cape-service/?p=761424 And yes, the Skype paskaosbot is linked to you. There's no need to change the skype in your thread to paska.osbot and pretending that it was an imposter as that Skype doesn't even exsist. Enjoy your ban.
  14. The domain being a .com/.net/.org and so on doesn't have a heavy weight on your SEO whatsoever, the 2015 SEO is based on actual unique content of your website and off-site SEO as backlinks coming from relevant sources within your actual niche.
  15. 2 points
    Where is apaec?
  16. 2 points
    The user will have to refund or complete the service, the choice is his. The workers he had left him with orders he had to complete, he claims he did make progress on his own and wanted to catch you online so you didn't play "tag" with offline messages since he had explaining to do for the lack of progress since @Crippeh scammed and he had to do his orders etc.
  17. 2 points
    Implementing what @Precise said: public long getElapsed(long startTime){ return System.currentTimeMillis() - startTime; } if(getElapsed(startTime) >= 30000){ //code to execute startTime = System.currentTimeMillis() // resetting the start timer }
  18. 2 points
    We are fully aware that he's a ban evader and we're handeling his appeal, but that doesn't give anyone the right to scam him. Can you please clarifiy which rules he has broken?
  19. they sell 1m ea on the grand exchange rofl
  20. I've seen numerous of users who apparently have 0 profile views, which most likely is incorrect, since I can see people are viewing their profile yet. I assume this is a bug by the system.
  21. I need all amazon gift cards for 50-80% of the value depending on the value. Please post here the value or pm me your skype + the value and how much you want. I can pay in paypal/07Gp
  22. 1 point
    buying 70atk and def, done by hand, name ur price and timeframe pls paying with paypal or 07gp current stats:
  23. Mirror client versionv1.052.291 Console output / terminal outputNone Crash report if a crash occurredNone Script that you ranExtreme Tabs Hooks that failedNone JVM/Browser bit version (32 / 64)32 Script wont logout when it runs out of supplies. I think this is a Mirror client issue since the scripter ignored my posts about it.
  24. Just make your own method? public static boolean hasJunk(Script s, String... notJunk) { Item[] items = s.getInventory().getItems(); if (items == null || junks == null || junks.length <= 0) return false; for (Item item : items) for (String junk : junks) if (item != null && item.getName() != null && !item.getName().equals(junk)) return true; return false; } Goodluck!
  25. nonoono not like that like this ah ah ah ah stayin alive, stayin alive (heads nod on the beat) B)
  26. Post a dispute here : http://osbot.org/forum/forum/114-disputes/ Using this form : http://osbot.org/forum/topic/44082-dispute-report-template-rules/
  27. Hello please make a dispute for the false feedback as well for the scam report.
  28. All drawings that jagex makes is weird
  29. Playing in a germany world while I am from the Netherlands.
  30. Haha yeah m8 I'm getting some other ones just have to get that euro gear atm its about summer here ^.^, and post a picture of the shoes you would get!
  31. 1 point
    you got any rsgp i can do it also if mald doesnt want too
  32. 1 point
    There will be a warriors guilds script that's free for VIP's, I will probably have it ready for testing by the end of this week. Also a Bandits script will be released, I still have a private one laying around that I used for myself a long time ago but it still works.
  33. 1 point
    Looking good. Better for your back...
  34. I have still been having issues while fishing monks, the script seems to get stuck in the bank window sometimes, and also sometimes missclicks on the talk to option when banking and gets stuck there.
  35. 1 point
    I never agreed to any tos because I placed the order through Skype, not osbot.
  36. I did motherload mine till 70 then I got banned, didnt use mirror though. Reach 70+ and then you got a nice shot a being undetectable
  37. 1 point
    I've requested him to post here and moved him into the TWC usergroup.
  38. notepad++ and some time
  39. That is not a good build, namely because of the CPU. First off the cooler will not handle the FX-9590 simply due to the fact that it draws ~250w alone and NEEDS a high end liquid cooling unit to keep it adequately cooled. That motherboard isn't rated for the disgusting 220w power draw required for that CPU either, meaning you'll likely end up with a VERY hot or dead motherboard. Really though, change that CPU to a sensible option, because there are literally thousands out there that make more sense.
  40. Just go and sell it all to someone like rsmalls or other big gold resellers. You can probably get 2.2/m. Big whoop, you get 10 less cents per mill but you don't have to worry about retard kids charging back the money.

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.