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

    $100.00 Donor
    18
    Points
    10121
    Posts
  2. Anne

    Java Lifetime Sponsor
    9
    Points
    6983
    Posts
  3. Botre

    Members
    8
    Points
    5883
    Posts
  4. Basic

    Trade With Caution
    6
    Points
    3319
    Posts

Popular Content

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

  1. 8 points
    How did three people get infracted when there are no people above him?
  2. 6 points
    Why are you acting immature, is the real question.
  3. I think you need to calm down a bit and I'm more than happy to sent you on a little vacation if you keep this behaviour. Ban evaders should be reported in the correct section without other people to be able to post. The user registered with an IP that has been used by someone who scammed on here, therefor he is banned. It's not Pikachu if you were wondering because you have to be extremely illiterate to make such conclusions biased on the "same avatar". And beside that, RSDK is not linked to any other banned account so your assumptions are completely false. You have been warned. Closed.
  4. Dear community, Today we celebrate the two years existence of the OSBot forums. Exactly two years ago from now the forums were put online for the first time. In a few weeks from now the first release of the OSBot 1 BETA client was made two years ago and from there on the journey of OSBot started. Two years later and many faces have passed the revue, we are determined to get OSBot back to the top spot we once claimed in 2013/2014. Thank you all for being part of OSBot in good and bad times, it has certainly been a blast so far and may the future bring you glory. Happy birthday OSBot, a big thanks to all the developers and staff that have been working hard lately to get OSBot to the top spot again! Regards, The OSBot team
  5. A quick example of a ConditionalSleep class. The API one is great and I suggest you use that one, this is more for learning purposes. package org.bjornkrols.conditional; import org.bjornkrols.imported.MilliTimer; /** * @author Bjorn Krols (Botre) * @version 0.1 * @since March 16, 2015 */ public abstract class ConditionalSleep { /** * The time in milliseconds to sleep for per loop. */ private final int sleep; /** * The maximum (exclusive) time of sleep, in milliseconds, after which the sleep loop will be broken. */ private final int timeout; /** * @param sleep The time in milliseconds to sleep for per loop. * @param timeout The maximum (exclusive) time of sleep in milliseconds after which the sleep loop will be broken. */ public ConditionalSleep(final int sleep, final int timeout) { this.sleep = sleep; this.timeout = timeout; } /** * @return Whether to continue to sleep. */ public abstract boolean condition(); /** * Sleeps until the condition returns false or the timeout is reached. */ public void sleep() { MilliTimer timer = new MilliTimer(); while (condition() && timer.getElapsedMilliSeconds() < timeout) { try { Thread.sleep(sleep); } catch (InterruptedException e) { e.printStackTrace(); } } } } Implementation example: // Wait while moving or making fire. new ConditionalSleep(300, 5000) { @Override public boolean condition() { return script.myPlayer().isMoving() || script.myPlayer().getAnimation() == FIREMAKING_ANIMATION; } }.sleep();
  6. Here's your spam section back.
  7. No offence Roomscape but following your logic that means Cinnamon and basically any user who has ever had a pikachu avatar are all the same users which is definitely not the case.
  8. Past Accounts - @Rs Man Current account - @The Real Rs Reasoning - Same Ava, @Rs Man last online was 5 mins before @The Real Rs signed up. (see below in pics) Sorry if wrong just a hunch ^_^
  9. 2 points
    Scammers. gf bank
  10. Gilgad’s Account Making Guide! Contents Requirements for the Guide: List of all the Pures: NOTE: I do not list accounts that are deemed “Failures” in my books, sorry if your account is not listed. The Rushers The Tanks The Maulers (Tzhaar-Ket-Om) The Rangers The Initiates Melee Pures List of Packages For those of you that don’t know the most basic principal of questing/account making, it is packages, quest packages, item packages. EG: Mithril gloves package Desert Treasure package Attack Package Etc etc etc etc Anyway, I’ll be explaining each package up here that I will be using in my guide, and then I’ll just say under the account creation section “Mithril Gloves Package” It means go to the explanation of mithril gloves under the package section and do that. Starter Kit Attack Package Mithril Gloves Package Desert Treasure Kit Customising your own Account! Prayer How to make the Pures on the List Other Pures coming soon….. Secret Training Methods/Training Spots/Money Making Methods If you would like anything added or more info on anything, please post and I’ll see what I can do, I’ll admit this is a rough guide. ~Gilgad
  11. Dear community, Prepare for a long but awesome read! I feel like giving you all an insight in what has been happening behind the scenes of OSBot lately and what is to come. We have been working hard in the last couple of months to get the bot back where it used to be in the summer/autumn days of 2013. Fixing issues with the API and the bot is one part of that. The other part exists of creating new innovations and adding new features to keep up with other bots or to make OSBot unique and innovative. These were things we were doing quite nicely back in the days and it's time to reclaim this glory. Many of you must have noticed that MGI was added to the team as a developer. With this promotion we also promised to find a solution for the high ban rates that we, but also other bots, are facing. Ban rates. Detection of bots can be divided in two main strategies. The first strategy is detection on a low level, this means detection of the modified RS client. The second strategy is by analysing behaviour of players. Both can be extremely efficient at what they do. Combined they do a pretty good job, considering the banning rates some people are facing on any bot they use. The first strategy is done by detecting whether the RS client that runs is modified or not and whether it is running in it's natural environment. The way current way most bots work is by downloading the RS client and modifying the client to be able to communicate information of the game with the bot engine. There are ways around it, but the way RS currently has their system set up means that battling their strategies to detect bots on a code level are meant to break and would require a lot of updating. Basically using a bot these days or for example RSBuddy (a runescape helper, not a bot) just plain out tell RS that they are bots. The second strategy is behavioural analysis. By having intelligent systems that compare behaviour of players/bots and compare it to statistics they have of players that are proven to be bots, they spin an entire web of intelligence that could recognise bots. This they can't obviously do for every player, so they most likely have different monitor levels, where each level higher means that the behaviour is analysed in more detail. Those two strategies are then probably combined, where the first strategy is probably the main flagging system to be upgraded to monitor tier 1. Monitor tier 1 then monitors on a global big picture view. Botting times, activities, quests being done, experience gain, trading activity etc. If monitor tier 1 suspects suspicious behaviour, your account will be moved in to monitor tier 2 which might analyse mouse behaviour or other more in depth and resource intensive analysis. From there there might be more tiers until you get banned. This of course is speculation. Having good scripts does lower the chance on detection by a lot. Changing scripts, having different behaviour on the same scripts by two different users, intelligent and human like action etc can all make a difference. But these won't make a difference if a bot basically says it's a bot based on a technical level of the code. So what is the solution? The theoretical solution seems simple. Come up with an idea that has no possible detection on a code based level. The implementation of it however is far from easy. Now to the interesting part: MGI has been working on an idea conceived several months ago and is nearing its completion. We call it the mirror system. The mirror system should tackle strategy one completely. OSBot's new Client Mirror System. Before blabbing about all kinds of technical details here is a picture of what it looks like. A picture is worth a thousand words they say. MGI called this feature the Client Mirror System. It leaves NO trace in the RS client of our bot and is by no means visible on the JVM. The RS client runs in its own environment which makes it even better. You still have all the controls you had in the past. This could potentially knock out the initial flagging system that takes your account in to monitoring. We don't know for sure how their system works though, but this completely diminishes the detection on a code level base. This feature does require additional CPU, so the future will have to show how much of an impact it will have if you use this for big bot farms. We will however provide you with the option to use the old injection system or the new Client Mirror System and they will be able to be used in a mixed fashion if you prefer. In any way, the performance overhead might be worth it for everyone in the end. Work is still being done on finishing the entire feature including optimizations. Other planned features. OSRS update handling. We will provide a system that will handle with OSRS updates. Once the bot recognises there is an update about to happen, it will log your account out or wait for the disconnection. After that it will wait for the new hooks to become available on the server and reboot the RS instance. The moment when this reboot happens will of course be randomised so that not all OSBot users log back in to the game at once. After the reboot the script will continue where it left of. Grand Exchange API. With the GE released we will be providing an API for scripters to use the GE. OSBot client chat. I have written a server module that will be able to route chat traffic to and from the server and supply it to the forum's IP.Chat module. Users will be able to chat with the people on the forums and vice versa. We hope this feature will increase traffic to the forums and give people something to do when they choose to baby sitting their bots. I hope you had an interesting read , Sincerely, The OSBot team UPDATE:
  12. As always, please update your mirrorclient.jar mirrorclient.zip Major fixes include: Objects disappearing after entering new region Not being able to start multiple bot tabs with mirror mode Bot/Webclient freezing after one of them is closed Double key typing issue Possibly more New features: Very low CPU mode (Expermental, enable under performance debugging options)
  13. 1 point
    Wrong section Use scripting help next time you need help ^^. (also: what precise said and gl)
  14. 1 point
    getPrayer().set(PrayerButton.PIETY, true); Precise.
  15. 1 point
    Excuse me. But what did I just watch?
  16. 1 point
    ill race you roomscape
  17. 1 point
    dont ban plz
  18. how do i update the script? also here is a 6h progress, flawless
  19. go go @Anne goo! and cmon srsly room? we all know i am the king of spam
  20. Oh botre boy you know 'em good
  21. I'm deffo going to change that ui Thanks
  22. Threads targeting another user will be judged upon by the moderator, if you feel your thread was closed and wasn't supposed to be pm Maldesto. (There will be no targeting staff) ... if you feel your thread was closed and wasn't supposed to be pm Maldesto. ... pm Maldesto. ... Maldesto ...
  23. Whatever helps you sleep at night.
  24. I don't believe it! Nothing in spam is serious and everything is to be joked about. I didn't post it in the dispute section for a reason, lol.
  25. I think everyone should take this thread seriously.
  26. 1 point
    Until tomorrow? ^_^
  27. Can people please stop suiciding this? Read the pins dammit.
  28. This is defiantly the best bot in existence. I use toxic trident, max gear.. its just amazing. Ive had about 5 spears so far this month. Thanks man.. Plus i've done 2.3k+ chests
  29. Thank you for your report, I went ahead and banned the user.
  30. I'm pretty sure it's @Nike, @Rs Man and @Nike9 but to be sure I'll check his IPs through the ACP when I get home. Thank you for reporting this though, he's a major ban evader.
  31. Nice idea, quite a few items missing tho :P
  32. Just because the words 'private script' enter a conversation does not mean money changes hands. Everyone quotes this rule in the wrong context and its becoming very annoying. You can post in the request section i guess or approach scripters and see if they're free
  33. about 80-100k if you sell the beer and do it fast 40-50k if sell as glasses
  34. 1 point
    Free ma ********a @Nike He ain't do nothing wrong man, it was all a plan and set forth by none other than . I say we kick off his throne and free all ma ********as @Nike and and @Tyrant (although he did kind of deserve it x]) and all you other nameless nobodies. FREE NIKE 2k15 Join the movement else you is noob. Who's in? ------------ nikes story for newfags: he was ranked in a max main staking commision clan with another person he want on vacation when he came back his friend scammed for 400m the clan refunded the people scammed via clan rules but for some reason nike was still banned [this all occured thru rs and had no direct connection to nike on osbot]
  35. just bought it and ill try it now for 3 hours or so, ill post the progress.
  36. Alpha Version. Supports only one location and two tree types. Looking for feedback. Jar: https://mega.co.nz/#!WkxSjARY!PJKYFw0WRhwVJDd6gJkKumGdcswKxecD0ltX9BhhUIs Source: https://bitbucket.org/grzekru/osbot-grzekru/src/
  37. i agree to your TOS and i will use you to get me my torso!
  38. thank you for the great bot czar
  39. OSBotre does it again
  40. Can you get me 58-80 fishing done by hand?
  41. 1 point
    Hey bought this script today. Using it with the mirror client, works perfectly. Just a suggestion; could you possibly add more anti-ban features such as checking xp, clicking on different tabs and more camera rotation? Seems like the only anti-ban implemented is a camera rotation that occurs once every minute or so. Other then that great script.
  42. mate it would be great if you put world hop because I bought this thinking it had it already like every good script should.
  43. He was like a crazy possessive stalker to osbot lol. I remember him always ranting and whatnot.

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.