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 all areas

  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. 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:
  11. I was killing mammoths on my main legit, and they are actually around 45k exp/hour plus seed/herb drops. Would anyone see interest in one or no? Should say that the exp rate was withranged potions and 75 ranged with iron knives.
  12. 1 point
    thx bro
  13. 70k-150k /hr depending on selling rate. I've made 110k so far off it.
  14. Unless it has been nerfed, kick a rat, equip a shortbow with no arrows and leave until 6 hour logout, do this 4 times and it should get rid of it. Like i said unsure if you can still do this, if you want to gain xp while doing it you can always splash on the rats for 6 hours ^_^
  15. 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 ...
  16. 1 point
    Sorry all devs but Mirror mode is just bullshit thing to make money of idiot on this forums, Devs was like " mm yeah we should make something called "mirror mode" then make people pay for it "Awesome" lets do it. Unless i get hard proof of it really working its just bullshit to me. Yes some client are detectable but face it clients who dont instban you are not detectable otherwise they would just ban us all, all the time if it was detectable lol
  17. I'm not a $500 donor though. ggwp
  18. if he is really cinna , i will do everything to see him banned !!!
  19. Because I am roomscape And this is spam And I am king of spam. Btw, you have a good point about @Cinnamon. I think is @Cinnamon's alt account and he's now ban evading, but since he's a donor no one will check him. I think that should be addressed in a timely manner.
  20. How can someone getting banned be a problem with the script
  21. 1 point
    Until tomorrow? ^_^
  22. Can people advertise their gold site website now? I thought advertising wasn't allowed, or is this an exception or has there been a rule change?
  23. No, it still requires approval/discussions from Maldesto.
  24. Apologies for not seeing this through on the date I stated it would end, been busy. WINNER: Kuroko (Money will be sent through paypal)
  25. thanks for this, i never used a guide to make an account, but ima try this next acc project, thanks again
  26. Fuck it dude, just sell as much as you want and keep it all. What even are taxes
  27. God those switches are overkill
  28. fk yer men dank weed 420 good KUSH love me sum of that GREEN oo baby LIGHT ME UP puff puff
  29. 1 point
    Fixed it for you. And for all of these guys posting retarded stuff on a serious help thread: you're getting warned next time. Have a good day, sir.
  30. You could make so much bank off of this if you could recharge glorys with it.
  31. 1 point
    newfag noob is newfag noob.
  32. 1 point
    free nike 2k15!!!!!!!!!
  33. OSBotre does it again
  34. Oh my bad! I thought you meant rectangle as in an area. RS2Widget w = widgets.get(459,90);//459 is your parent, 90 is the child. We're setting w = to widgets.get(459,90) if (w != null&&w.isVisible())//checks to make sure the interface is open w.interact("Make X");//were interacting with 459,90 in the interface keyboard.typeString("" + random(28, 100000));//types in 28 -1000000 to give it variation. To get the parent/child, open up an interface and highlight over the one you want.The one that has the color box around it that you need(green, white, red)look where all the numbers are on the side of your screen and write them down. The one on the top is the parent and the one on the bottom is the child. Sorry if this is an awful explanation Actaully this still isnt what you wanted. nevermind. Going to leave it here though in case anyone see's any use in it.
  35. Interested in this service, I currently have 105 points myself, I know that's only about 1/8th of the total, but does that reduce the cost at all? Looking to get information about this asap. PM me your skype please.
  36. I've been selling bonds since before you were registered.
  37. Please add TOS also I may be interested in hiring you to help with my account.
  38. 1 point
    roughly the same as you man i only bot when im awake i logged out when im heading to bed and start once i wake up. so it makes it more human like i did legit 1-89 hunter only started botting at 89-95 got lazy cba good luck man hope you dunt get banned i only got a 14 day banned maybe i'll continue and try to achieved 99.
  39. Mate all you had to do was ask, world hopping will feature in the next update including an option to hop at X players
  40. As it's not in your thread I would like to mention it : you may not sell physical items like a ps3,... as you will need the adress from the customer and this is not allowed. Goodluck with this!
  41. Community, These rules are to be followed at all times by all staff members, sponsors, VIPs, Script Developers, and all other community members. No one is above rule breaking. Breaking any rule can cause your account to be infracted or permanentely suspended of OSBot. Rules 1. Offensive Language/Harassment There is to be nothing posted, said, or linked on the forum or live chat that could be seen as offensive by other members of the community. This includes, but is not limited to: > Discrimination in any way, including sex, religion, race or ethnicity, nationality, sexual preference, or spiritual beliefs; > Comments intended to hurt another member; > Any dis-respect towards other members of this community; This rule also applies to media. Harassing other members of the community, including staff members, is unacceptable and will result in 2 warnings point if after a verbal warning you continue to provoke/bother said individual, this includes hate threads, disrespectful PM's on the forum and skype, constant spamming on the other members topics etc... 2. Excessive Spamming No posts to be made that is completely unrelated to the topic or does not benefit the direct cause of the topic. We are lenient and will allow joking and mild trolling, however if done excessively with absolute derogatory intent there will be punishment. Double posts are not allowed, and will be removed. Excessive double posting will result in an warning or infraction. 3. Advertising It is not allowed to post any URL to another community, commercial website, or bot. Doing so will result in a warning. Excessively spamming of an URL will result in an immediate suspension of your account. Exception: A commercial website may be advertised if the thread poster has the "Advertiser" rank purchased on the OSBot store; however this website may not be another bot or bot community. 4. Personal Information/Hate threads No personal information of other member's is allowed to be posted on the forum, even with their permission. They must post it themselves if they wish for it to be. This includes, but is not limited to: > Names; > Personal photos; > Instant Messaging; > Phone numbers; > Addresses; > E-mails; > Name relations from other communities or anywhere else; Nothing is to be created that is directed towards a certain member or staff-member of the community in a hatred way. This will not be tolerated and will result in a suspension, if not permanent ban. 5. Pornographic Content No media, content, or talk will be posted regarding pornographic content. This means that no nudity is to be shown anywhere on the forum and talking about certain sites will result in a warning. 6. Gravedigging Gravedigging, posting in an old thread, is not tolerated without proper reason. A post is considered as gravedigging when the last reply is atleast two weeks old. 7. Client Links OSBot's client link is not to be posted anywhere on this community, any other community, or otherwise made downloadable without the direct permission from OSBot. This is our property, and legal action can be taken if re-distributed. 8. Script Sales Selling and buying of scripts is only permitted through our official store. Donations for projects are allowed, however they cannot be required. It should be made clear that the donations are going towards you for development and do not benefit OSBot directly. Authentication systems, script loaders, and distribution systems need prior approval from any Admin and/or Developer. These types of miscellaneous software are reviewed on a case-by-case basis and may be audited/reassessed at any point in time. Selling a single copy of a private script to a single person is tolerated. Releasing a private script a customer paid for to the public is also not allowed. Selling multiple copies of a private script will result in a permanent ban when caught for the script writer and the customers (if the customers are aware). Any way to get around this rule will be considered as "selling a private script" (Ex. Receving a percentage payment based on the users profit obtained by the script). The staff will not assist in any disputes with regards to private script transactions. Private scripts - We at OSBot will no longer deal with disputes regarding private scripts, unless the script writer is a Scripter 1/2/3. If you order a private script from a random user with no scripter rank on our forums and it doesn't work or isn't getting the support it needs, at the end of the day that is your fault for picking someone who is not qualified. The staff will instantly close with no punishment on either side with no script writer rank involved. 9. Script Content If you use someone else's work, you must have permission from them and must give full credit to their Intellectual Property. This is not just an OSBot rule, but is also illegal. Claiming someone else's script work as your own is a federal offense. 10. Malicious Content No content that contains malware, trojans, or viruses is to be posted anywhere on the forum. This includes direct intent to DDoS another member of our community, any other community, or any other website. This will result in a temporary ban, or IP ban depending on the situation; further action may be taken, as this is also a federal offense. 11. Feedbacks False feedback for the Trader Feedback System is not allowed. Feedback is also meant to be unique. This means that a single user can not give the same user multiple feedback in an unjust way to abuse the system. An example of this is buying/selling back to the same person over and over or trading in small increments and counting them as separate feedback. This can result in a full feedback reset or a ban. It is allowed to receive feedback for a service, as long as the service was either paid or there was risk involved. An example for risk is doing a firecape service for someone, on an account that contains more than 5M 07 GP. As we are aimed particularly at the RuneScape market, you are only allowed to give or receive feedback for graphics if there is at least $3 worth of goods (based off of common transfer rates) transacted. Feedback for free product will not be allowed. For further clarification on this rule, read here http://osbot.org/forum/topic/47264-feedback-rule-change/ If you use a middleman you may give him feedback but the middleman himself is not allowed to give feedback. 12. Market It is not allowed to tear apart a market thread. If someone wants to sell an account for $50, then it is not needed to post things like 'too expensive, wouldn't even buy for $20'. It is rude and unwanted. If you're not interested, then simply don't reply. 13. Criticism Rule If a staff member has made a decision that you feel is in some way incorrect or abusive, please report it to @Maldesto via private message. Please do not make a thread about the staff member in question, as this can cause minor chaos in the community. 14. Your Forum Account Making numerous accounts to bypass our VIP system is not allowed. If you are found doing this you will be banned on all alternate accounts even if you have premium scripts. If you are caught doing it after receiving a ban on the alternate accounts you will receive an IP ban. You are also not allowed to share or sell your forum account. This is not accepted and will result in a permanent ban. The use of Proxies/VPNs on the forum is prohibited. If you are using a VPN/Proxy that is linked to a banned member, you will be banned. Therefore we advise you to only use your own, real, IP address. 15. Name Changing You are not allowed to abuse the ability to change your forum name. This includes but is not limited to offensive names, replicating another users name (ex: ja5on or Jays0n), or inappropriate names. Violation of this rule will result in you losing your ability to change your name and your username will be reverted back to your login name. 16. Language This is an English only forum, you are free to use whatever language you want in private chat or personal messenger. Warning Type Warning Point(s) Excessive Spamming 1 Gravedigging 1 False feedback 1 Offensive Language / Harassment 2 Advertisement 2 Offensive Media 2 Malicious Content 10 Scamming 10 Market Rules The general market rules can be found here. Dispute Rules Note: Failure to follow them will result an in infraction and/or ban. You may only post if you are: >Original poster of the topic. >The person under dispute. >Involved in the trade and/or can provide valuable evidence. >Have permission from a staff member. Infractions Note: The following infractions will automaticly be given by the system, when you reach a certain amount of warning points. Infraction Warning Points 1 Day suspension 5 3 Days suspension 7 Permanent ban 10 These rules can be changed at any time at Administrator discretion to punish you for any reason said Administrator sees fit. Thanks for reading, @Maldesto & the OSBot team.

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.