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

  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. yeh who got 2 accounts banned and ip is flagged...
  15. 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.
  16. Ahhhh a common mistake here is that Fishing spots are actually not RS2Objects, they are in fact NPC's. Change the object type and it should work fine, just make sure you update the ID as well if needed^_^
  17. Updated, can you confirm that's what you wanted? Edit: Sorted through PM ^_^
  18. Can she explain to me then pls :'c
  19. Awesome work yo! These updates coming fast
  20. @Shasta download Teamviewer and PM me your credentials so I can confirm if there are Skype logs with this user. I will do the same with @Divica once I have had a look at yours.
  21. Divica just opened up a new thread so I doubt she is scamquitting http://gyazo.com/50b5d3dce0e4536c5c94d0cc54c13929
  22. 1 point
    Post a snippet of the code in question with the relevant stack trace and we can try debug it for you.
  23. Wow, thank you man. I was going to make an enum but I couldn't remember what it was called at 4 am, and I was having alot of trouble with dynamically setting i. This helps out alot .
  24. No where in your thread does it say you have that checked..
  25. Am I the only one who uses botting clients just so they can finish randoms for me?
  26. Yay. Probably the best decision ever made here. Congrats @Alek.
  27. Osbot is like aids for bans. You're more likely to be banned with this client than others.
  28. great stats. Leave prayer as is and get 60 attack. Then just work on str. Also good stats for pking.
  29. I found this video to be mildly disturbing. While there is no doubt that thousands of corrupt cops exist within the United States, the vast majority are at least mostly good. The reason we have this idea that police are evil is because the media feeds on tragedy as a means to generate money, and people also love something they can blindly throw support at. Police officers are trained to de-escalate situations as fast as possible, and when they shoot they always shoot to kill. Another reason people dislike the police force is because it is their job to enforce every stupid unethical law in the United States, and nobody likes being told what to do. I'm all for a good conspiracy theory and calling out people when they do something stupid, but in this case if I had a gun drawn and was being charged at by a deranged man with a knife screaming shoot me, I would defend myself. Could this situation have been handled with no loss of life? Yes, of course. However, this is how the police are trained to handle these situations. Pro-tip, don't charge the police with a weapon (or anyone) if you don't want to die.
  30. Definitely not, I still have a lot to learn!
  31. Good for you @Alek I'm happy for you c:
  32. Easily one of the best decisions made on this site. Goodluck @Alek!
  33. First and foremost, congratulations @Alek. Second, hoooooooooooooooorrrrraaaaaaaaaaaaaayyyyyyyyyyyyyy!!! The client will actually function now, I hope. Third, good luck on all the work that is coming your way. EDIT: Fourth, nice black car
  34. Talking Doing this for him.
  35. loool people really think the cops lives were at risk? *smh* i was just wondering, what is the point of going through police training if you're going to gun down someone that has a knife like it were a firing squad? the guy is begging for them to shoot him, obviously suicidal, you don't put 6 bullets through his brain lol, they act like he was holding a 12 meter samurai sword and was going to chop their necks off. american police, what can ya say. Martial law is inbound.
  36. I could easily go 10 meters before either of those cops could pull out a tazer, and even if they could would you be willing to risk your life on one shot? Because that's all their going to get. Debatable whether or not we'd be in jail, however you're expressing the opinion of someone who wasn't in the situation. If he did in fact have a knife despite there being two of them and one of him he could have easily killed one of them if they resorted to a mace only. Shooting a gun and hitting someones legs is hard as fuck, getting out your tazer takes time, and while you're doing that he could be on you in seconds. Why would the cops risk their life for some blithering idiot saying "shoot me"? They're required to, it's in their training. If our military acted like that we wouldn't have a country right now. I'd be interested to see @Alek's opinion on this.
  37. Personally I think they're ugly.
  38. You could of bought 76 pairs of crocs. C'mon.
  39. The koala (Phascolarctos cinereus or, inaccurately, koala bear[a]) is an arboreal herbivorous marsupial native to Australia. It is the only extant representative of the family Phascolarctidae, and its closest living relatives are the wombats.[3] The koala is found in coastal areas of the mainland's eastern and southern regions, inhabiting Queensland, New South Wales, Victoria and South Australia. It is easily recognisable by its stout, tailless body; round, fluffy ears; and large, spoon-shaped nose. The koala has a body length of 60–85 cm (24–33 in) and weighs 4–15 kg (9–33 lb). Pelage colour ranges from silver grey to chocolate brown. Koalas from the northern populations are typically smaller and lighter in colour than their counterparts further south. It is possible that these populations are separate subspecies, but this is disputed. Koalas typically inhabit open eucalypt woodlands, and the leaves of these trees make up most of their diet. Because this eucalypt diet has limited nutritional and caloric content, koalas are largely sedentary and sleep for up to 20 hours a day. They are asocial animals, and bonding exists only between mothers and dependent offspring. Adult males communicate with loud bellows that intimidate rivals and attract mates. Males mark their presence with secretions from scent glands located on their chests. Being marsupials, koalas give birth to underdeveloped young that crawl into their mothers' pouches, where they stay for the first six to seven months of their life. These young koalas are known as joeys, and are fully weaned at around a year. Koalas have few natural predators and parasites but are threatened by various pathogens, like Chlamydiaceae bacteria and the koala retrovirus, as well as by bushfires and droughts. Koalas were hunted by indigenous Australians and depicted in myths and cave art for millennia. The first recorded encounter between a European and a koala was in 1798, and an image of the animal was published in 1810 by naturalist George Perry. Botanist Robert Brown wrote the first detailed scientific description of the koala in 1814, although his work remained unpublished for 180 years. Popular artist John Gould illustrated and described the koala, introducing the species to the general British public. Further details about the animal's biology were revealed in the 19th century by several English scientists. Because of its distinctive appearance, the koala is recognised worldwide as a symbol of Australia. Koalas are listed as of Least Concern by the International Union for Conservation of Nature. The Australian government lists populations in Queensland and New South Wales as Vulnerable. The animal was hunted heavily in the early 20th century for its fur, and large-scale cullings in Queensland resulted in a public outcry that initiated a movement to protect the species. Sanctuaries were established, and translocation efforts moved to new regions koalas whose habitat had become fragmented or reduced. The biggest threat to their existence is habitat destruction caused by agriculture and urbanisation.
  40. Depends on alot of factors, like the timing of when your account was made, if it's F2P, etc. If you're using Premium scripts with accounts older than 2 weeks with membership, you got a chance of not getting banned. With OSbot 2's new mouse and human movement, it's been harder for Jagex to ban bots due to them moving so much like legit players. I'm currently botting on my lvl 98 main and bot for about 4-6 hours a day, doing different things. As long as your accounts are not fresh and you do different tasks during the day, you'll be fine. Hope this helped.

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.