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 08/31/14 in Posts

  1. Hello community, We're pleased to announce that we've promoted @Alek to the official developer rank. He will be working directly alongside @Laz, @Zach, and @Maxi! Please give him a round of applause and congratulations! Alek is very dedicated and will definitely sharpen up our development! Sincerely, The OSBot Team!
  2. On behalf of the entire community, I'd like to also officially welcome Alek in as a Developer. Throughout his time here, he has shown his abilities and dedication to programming and the bot. In the past few months, he has continually become more and more involved with development. We feel that he is the best person to fill in this hugely important role! Sincerely, The OSBot Team
  3. Thanks guys, I really appreciate it. I've been learning a lot and I can't wait to learn even more.
  4. Free OSBot code consulting service Doubts about your overall logic or design? Questions about how to optimize your product? Want a second opinion before releasing your code baby publicly? About This is a free service to teach and learn, help improve and discuss scripts and snippets for the sake of improving the overall quality of scripts, especially (but most certainly not limited to) the ones made by fresh blood. Keep in mind, there's no shame in asking for a second opinion, we all have our weaknesses and strengths! Submission guidelines Feel free to post your source here, please make sure it's readable in terms of code formatting and presentation (use the code tag or pastebin). If you prefer a private consultation, feel free to PM one of the participating scripters (list below). In any case, please make sure the size of the project is reasonable, we will not be going through hundreds of classes (we wish we could, but we simply don't have the time). ​Consultants In case you don't want to make your code publicly visible, you can PM the following users for a more private consultation (please note that this is not the preferred way to go): @Apaec ​Ex-Consultants These consultants are, sadly enough, not active anymore, but still awesome and worth being listed here (don't PM them though): @Nezz Final notes If you don't understand what you wrote in the first place, do not bother (we expect you to at least know what you tried to achieve with your code). Otherwise we'll more than gladly take a look at it. Don't be shy, there are no dumb questions as far as we're concerned (only dumb attitudes)! @Other script writers, especially the more experienced ones: feel free to constructively hijack this thread, but keep your negativity / frustration / arrogant behavior to yourselves, we all started from the bottom at some point. - Happy coding!
  5. Yeah but I dont have any classes this semester now and have a lot more free time... situations change over time.
  6. Fellow OSBotters, This past week both the client and API developers have been working hard to bring a more stable and versatile experience for both the botters and scripters. Today was no exception, many bugs have been squashed and methods have been built. Here is what you can expect from the latest version: @Alek's changes: -Added Chatbox API --Chatbox.getMessages(MessageType); --Chatbox.contains(MessageType, Strings); --Chatbox.isValid(); --Chatbox.isVisible(); -Added Item.getMarketPrice() (returns average value from Zybez) -Rewrote FreakyForester, updated id grabber -PrisonPete now grabs balloon ids dynamically @Laz's changes: -Added timeout to camera pitch events -Fixed ItemContainer.getEmptySlots() -Fixed RS account saving bug (your accounts will be wiped once again but no more after this update!) -Added memory usage indicator at the bottom of the bot -Removed some unused callback injections for better performance -Various other bugfixes As stated previously, a lot has changed since the previous revision. We urge you to test the new api, fixes, and random events to ensure everything is up to par. If you have any questions or concerns, please post below! Thanks for being a member and like always, have nice day. Version 2.2.18: Made a last minute patches to all the changes. Sorry for the inconvenience! Version 2.2.18 Issues: A few issues have been identified. Please visit this thread to see what has been addressed. Download
  7. I can't comprehend why people would spend over $80 on a pair of shoes.
  8. I can't promise an update schedule, however I can promise that we are working on the client on average 5-6 days/week.
  9. 2 points
    Fun fact; Did you know we have a search bar? http://osbot.org/forum/topic/55187-what-happened-to-bawsz/?hl=bawsz
  10. 2 points
    The dispute was he owed money to a user but didn't have the funds to pay it back, we then gave him a time frame but he didn't meet it due to some issues with his PayPal/Bank or something. So we banned him as a safety precaution.
  11. LOL at your name. Can i make you a signature? I have an awesome idea ;)
  12. Here's a lil' rewrite, hopefully you'll learn something(s) from it ^^ Gl coding! import java.awt.Graphics2D; import java.awt.Point; import java.awt.Rectangle; import java.util.Arrays; import java.util.List; import org.osbot.rs07.api.model.Item; import org.osbot.rs07.input.mouse.InventorySlotDestination; import org.osbot.rs07.script.Script; import org.osbot.rs07.script.ScriptManifest; @ScriptManifest(author = "Botrepreneur", info = "HerbIdentifier", name = "HerbIdentifier", version = 0.0, logo = "") public class HerbIdentifier extends Script { private enum Herb { GUAM(199, 200), MARRENTIL(201, 202), TARROMIN(203, 204), HARRALANDER(205, 206), RANARR(207, 208), IRIT(209, 210), AVANTOE(211, 212), KWUARM(213, 214), CANDANTINE(215, 216), DWARF_WEED(217, 218), TORSOL(219, 220), LANTADYME(2485, 2486), SNAPDRAGON(3051, 3052); private final Integer[] ids; private Herb(final Integer... ids) { this.ids = ids; } public List<Integer> getIds() { return Arrays.asList(ids); } } @Override public int onLoop() throws InterruptedException { return Integer.MAX_VALUE; } public void onPaint(Graphics2D paint) { int slot = -1; Item item = null; Rectangle rectangle = null; if (getBot().getClient().isLoggedIn()) { Point point = getMouse().getPosition(); for (int i = 0; i < 28; i++) { if ((InventorySlotDestination.getSlot(i)).contains(point)) { slot = i; break; } } if (slot > -1 && (item = getInventory().getItemInSlot(slot)) != null && item.getDefinition() != null && (rectangle = InventorySlotDestination.getSlot(slot)) != null) { int id = item.getId(); String string = null; for (Herb herb : Herb.values()) { if (herb.getIds().contains(id)) { string = herb.toString(); break; } } if (string != null) { paint.drawString(string, rectangle.x, rectangle.y); } } } } }
  13. You should all calm the fuck down. I don't mind the discussion but let's not get it out of hand here.
  14. This tutorial will cover everything required to write your own OSBot scripts. Although it is quite lengthy, don't let this put you off - it shouldn't take more than a couple of hours to follow through, at the end of which you will have learned the scripting basics and will have your very own tea thieving script which you can modify to your liking. Good luck! Previous required knowledge: None Knowledge of basic java helps but is not required! What this guide covers: Downloading your code editor (IDE) Basic programming concepts A quick guide to java Writing a script with the OSBot API Running your script Downloading Eclipse: Setting up your project: Language basics: Java basics: Script backbone: Compiling the script: Writing the script: Best practices and conventions: Completed Tea thieving source code: That's the end of this tutorial, hopefully it was useful and concise enough. As I mentioned earlier, remember to ask LOTS OF QUESTIONS! Also remember that google is your friend! ? Although it may seem OSBot scripting is a niche use of java, many questions can translate to more widely adopted counterparts - use this to your advantage. If you have any questions do not hesitate to post as a reply below. Since I follow this thread, I will receive a notification if you do and will do my best to get back to you ASAP! - Apaec
  15. So I made this thing, it does what the title says. Hover your mouse over the herb in your inventory or someones trade window to see what it is. EDITED with the new script that supports trade windows. Special thanks to Botrepreneur for the help in dynamically finding the slot being hovered over and making a nice enumerable list of herbs . Due to popular opinion and request, the script is now back. Any errors please post here so that I and others may see them. PLEASE LEAVE A LIKE, FEEDBACK or even a "THX"!!!! FaysHerbs.zip
  16. JORDAN RETRO 6'S!!!!!! ONE OF A KIND! LAST RELEASED FROM 1991! SOLD OUT NOW!
  17. Works great just gotta adjust sleep time, moves too quick. I get the Instance.method(); now, makes sense Thanks!!
  18. 1 point
    Dat mousehop tho
  19. This ^ Just so everyones aware, @Alek has contributed to API development more than anyone else so I can only imagine how much work will get done on the bot now with him as part of the team.
  20. So why bother saying it in the first place?
  21. 1 point
    It was about an account for $200 If I am correct
  22. Sorry guys I had to re push it to OSBot 2.2.20 because we forgot to merge our changes. (I'm still getting used to having Alek as a developer )
  23. Awesome work yo! These updates coming fast
  24. usb cable -> iphone/pc -> store the shit on ur pc -> plug usb cable in ipod/pc -> get shit from pc to ipod
  25. I am sure this is a misunderstanding also, it's just a safety precaution we must take.
  26. that could mean that she is trying to "buy" one last bulk on this site, i doubt it but hey, what the hell we'll see
  27. I don't think so. Divica has like 3k Vouches on sythe , 1.2K feedbacks on TB , 900 feedbacks on p****bot and other sites aswell.
  28. spam section? 's incoming !! and.. 300k/h? damn... if it weren't osbot i'd try it
  29. i feel the same way with cod. play to games, then can't play more.
  30. They should make it so that you get a notification on this part when someone comments on your thread. I know you get a notification via email but myself and probably many other people rarely check our emails. I doubt it would be too hard to add that feature and it would come in handy. Yes i have it checked. EDIT: I know you get notified if you follow your own topic but i was just thinking if the option is there for email why not that bell thing...
  31. There is an option for email, and then theres an option for site notifications. The emails are on the right coloum and notifications are on the left.
  32. 80% my ass lol prove it, i can barely do it 75%
  33. OSBotguy and Musti gave you the best advice you could've wished for. I myself already have a ban strike on my main account so I'm not botting on that anymore, I'm currently starting a 2nd account though to make some extra money for my main.
  34. Just got out of my laboratory, extensive research for 2 weeks left 82 of them dead... With the help of 294 Harvard professors, we have came to the deduction that nobody cares and cinnamon toast crunch is the BEST cereal EVER.
  35. Definitely not, I still have a lot to learn!
  36. But yet if it was someone defending themselves against someone allegedly coming at them with a knife, even if it was 10 feet away, that person wouldn't get any hate. I'm sick of idiots thinking they're high and mighty because they can say "fuck the police".
  37. 1 point
  38. 1 point
    In order to be running 6 bot clients per screen you would need to have VIP which you currently do not. All your accounts which are found to be yours will be banned. If you want to run multiple bots then purchase VIP: https://osbot.org/forum/store/product/4-vip/
  39. 1 point
    Doesn't matter, took him over a month to refund, kid is a scumbag.
  40. 1 point
    Good for you.
  41. Hopefully posted with Internet Explorer on April 1st.
  42. $µ (you'll need to hover over your player)
  43. Welcome, I have listed below all of the forum ranks and what they stand for so you can navigate your way around the forums successfully and this should help you understand who you need to contact if you need a script made or need help with a payment ect. Developer Responsible for various aspects in developing the bot and services. Each developer has a specialty that ranges from developing the client, to working on the server, fixing bugs, features such as web walking and mirror-mode, etc. Developers have elevated permissions, however much of the administration is left to the Community Administrator. Current Development Team: @Maxi @MGI @Zach @Patrick Administrator Just like moderator they keep the forums clean and safe, however administrators also have an extended amount of power. They not only manage forum issues such as refunds, promotions and fixing forum issues, but also the website, advertising, and all other projects. Current Administrator: @Maldesto Super Moderator Super Moderators have the same responsibilities as a Global Moderator, just with a few added Administrator responsibilities. They are responsible for dealing with user issues, payment issues and moderating areas of the forums which require a lot of attention. They have the power to edit users ranks, bans and even change a users password. They make sure that the Global and other ranks are doing their job, and that forum issues are taking care of promptly. There will only ever be a maximum of 3 Super mods. Currently on the Super Moderator Team: @Gunman Global Moderator Global Moderators manage the general forums. They have access to a unique Moderator Control Panel that gives them the ability to edit, ban and research a user. They are experts on the rules and are the ones that keep the forum clean. They are expected to handle reports, move and lock topics, as well as warn members for inappropriate or rule breaking behavior. They are also to assist with bot issues when possible. Currently on the Global Moderator Team: @Mio Trial Moderator Trial Moderators manage the general forums much like Forum Moderators. They are starting moderators who are being tested to see their output and effort before receiving higher ranks. They manage the same things Forum Moderators manage, they're just less experienced and , as the rank says, a "trial" to see how they handle the position. The current Trial Moderator Team is: Ex-Staff The Ex-Staff rank is for respected Staff members that served OSBot considerably. They left respectfully, or without causing direct harm to OSBot. They have also served as Global/Super/Forum Mod or Administrator. No other ranks will receive the Ex-Staff Pip. @Oliver @Nick @Arctic @Khaleesi @Raflesia @Master Chief @Mikasa @Smart @Asuna @Solution @Eliot @ProjectPact @Alek @Dex @Decode @Chris @Night @Lost Panda @Malcolm @Muffins @Space Veteran These are members of OSBot who have been here from the beginning and have respectfully been active and helped the growth of OSBot. Pm @Maldesto if you meet the requirements. Registration Date: Jan 1st, 2016 cut off date. Post Count: 500 or above. Activity/Contribution: Judged by staff team. Sponsor Sponsor is a highly exclusive rank that can be purchased from the store for $55.99 per 6 months. This works out at $9.33 per month which is cheaper than VIP ($9.99) the only catch is that you must pay the $55.99 upfront for the 6 month subscription. The features are listed below: - Unlimited botting tabs - No advertisements on the bot client and website! - 6 month rank (Larger amounts will result in longer time)! - 15% discount on all premium scripts - Changeable user title - Special private forum - Unlimited private messages, files sizes and display name changes -Sexy blue glowing name - More to come in future! Lifetime Sponsor - All the benefits of the Sponsor rank. - Lasts for as long as the existence of this forum! $100 / $250 / $500 Donor Donor is a highly exclusive rank that can be obtained by donating $100, $250, or 500$ to OSBot through the donation page. To donate, click here. - Sexy PiP -Sexy Glow V.I.P VIP can also be purchased from the store for $9.99/month. This status gives you many perks which are essential to goldfarmers and hardcore botters! I have also listed the features below: - Use unlimited bot tabs! - No advertisements on the website and bot client! - 10% discount on all premium script purchases! - Unique purple username to get recognized! - A special private forum! -Sexy purple name - One free display name change per month! Scripter Ranks Scripter I Rank Entry-level rank and assigned to scripters upon the release of their first script. Benefits include client VIP privileges. Must maintain an active script on the SDN. Scripter II Rank Scripter I members may apply for this rank provided they have at least one month on the forums. The Scripter II application consists of a Java & OSBot API test. Benefits include VIP client privileges and the ability to release premium scripts. Must maintain an active script on the SDN. Scripter III Rank Scripter III members represent OSBot's scripting elite. Scripter II members may apply for this rank provided they have at least three months on the forums and 3 active scripts on the SDN. In order to be promoted to this rank, a scripter will require very deep understanding of the OSBot API, programming in general, as well as having valuable novel contributions to our SDN. Benefits include VIP client privileges, ability to release premium script, and the opportunity to work in special duties such as Script Officer. Script Officer Rank Script Officers are responsible for managing various facets of the scripting community including administering tests, checking script/scripter activity, and running the SDN. Script Officers that manage the SDN have elevated privileges. Current Script Officer: @Token Designer This is given to the users that help our artists in the Graphics Section grow. They post tutorials, help other users, and display their own graphics for all to see. They have a good amount of experience with graphics and love what they do. SOTW Winner Win a week of SOTW and get this as the prize! The users with this rank have been able to create a tag/signature that was better than the rest, voted on by you, the members. Verified Ranks If you have a negative feedback, you will not be eligible for verified ranks! Verified ranks are given to those active and trusted within the market place. The requirements for each are listed below: Verified MiddleMan Rank You cannot have an open or solved dispute against you with the ruling that you have scammed. You must have at least 250 positive feedback. You must have completed 100 transactions as a middleman. You must have unique feedback to prove your transactions took place. (Multiple feedbacks from a single member will not count towards your completed transactions). Currently hold a rank of VIP/Sponsor/$100.00 Donor. Verified Services Rank Currently hold a rank of VIP/Sponsor/$100.00 Donor. Have a minimum of 400 posts. Hold at least 150 positive feedback within your service with no open dispute of a ruled scamming or negative feedback that rightfully states you've scammed. (This does not include "late services" etc.) Hold an active thread with at least 75 feedback for the service(s) stated within. Verified Transactor Rank Currently hold a rank of VIP/Sponsor/$100.00 Donor. Hold at least 150 positive feedback with no open dispute of a ruled scamming or negative feedback that rightfully states you've scammed. Hold an active rsgp/osgp selling/buying thread that has produced at least 75 unique, positive feedback. (Multiple feedbacks from a single member will not count towards this). If you meet the requirements to any of these ranks you may send a Super Mod or Admin a private message directly. If granted, you will receive one of these beautiful userbars.

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.