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 06/18/14 in all areas

  1. Driving my girlfriend and my friend an hour to go to Great America, will be spending most of the day there. I haven't gone on roller coasters in a few years, so this will be interesting. Wish me luck! Peace out OSBot, for the day
  2. 2 points
    its that did you just fucking give me, your king, an order pouf! such a murderous and wonderful stare, anyone here watch hunter x hunter?
  3. 2 points
  4. 2 points
    Looks good, but you could convert that to an enum.
  5. u r like a teenage girl n osbot is ur facebook
  6. Nope. Very uncommon as the lowest age to drive is 15 with a learners permit. (e.g you need a parent in the car with you)
  7. For kids who don't have a job a nice $5 a week can be a new video game, etc. I make a decent $500 a week, and you might say this is a waste of my time. But I spend probably 30 minutes a week and I get $5 to spend on things from my car, or phone. It's really nice to see that that money isn't coming out of my paycheck, if I spent $5 a week for a year, I'd spend close to $250.
  8. Definitely this, and also make sure to transfer over 1k Monkfish at a time perhaps whilst fishing.
  9. @RoomScape, our newest (and oldest) retard
  10. Dunno, reading a thread, refereshing, suddenly the poster is already banned Khaleesi Same thing with exuals Perhaps we could use some system to check what the person is banned for? It's usually useful information.
  11. Didn't make me cry, but made the eyes a lil watery and goosebumps form https://www.facebook.com/photo.php?v=901177599908653
  12. Khaleesi is banned for refusing to do nudes in the future episodes of game of thrones.
  13. I recently saw someone requesting karamja so if anyone needs it PM
  14. 1 point
    Omg killua would look awesome, ill probs make something to do with him on the weekend
  15. 1 point
    ^^^ pls make my fav char
  16. are you fucking kidding me.... -.- why the hell would you choose rs3 over os
  17. Scamming over the internet when relating to video games is usually always anonymous which gives people a sense of safety when pulling off such a scheme, however, they do not realize that the actions they commit to over the internet or in any circumstance for that matter directly effect you as a person. The virtual world, and the life we live on a daily basis go hand and hand, and for someone to scam over the internet truly is disheartening.
  18. Here you go... http://lmgtfy.com/?q=free+icons
  19. 1 point
    Wax and Shatter
  20. Open a dispute please. This is where you do it: http://osbot.org/forum/forum/114-disputes/
  21. I agree with @Swizzbeat, I've seen countless pictures, and even had the chance to fuck with bots who using some type of message response, for example using CleverBot. You can obviously tell it's a bot by the way they respond. I even saw on bot who said a random word every 20 minutes or so, and that was a horrid Idea, because every time I asked what the fuck, it never responded. I feel you have more of a chance getting banned trying to talk back, than if you just ignored them, because honestly, it's not hard to outsmart a bot, and it could cause some issues down the road.
  22. That's an issue on your behalf, but like has been said throughout this thread - Scripters deserve a constant flow of money for their product. Too many people buy these one time purchases and expect it to be flawlessly updated.
  23. Gratz man! i'd buy you a beer if i could
  24. '' so yea im free now '' lol. nope.
  25. Confirmed. Maldesto goes on mini clip.
  26. Depends on who is saying it, in general I think bicycle.
  27. 1 point
    Working thank you..
  28. A real man takes a picture of a hook in his finger before taking it out.
  29. So, before you kill me for asking you to use bing, read below. I've been using Bing Rewards for awhile and with Bing Rewards I have 2-3 accounts. Every day I search a bunch on my phone and in my browser and earn rewards points. It takes about 2-5 minutes on each account. When I get around 500 credits, I redeem it for $5 amazon cards. I have gotten a few, and this is a really underused way to earn cash. If you want to do it, if you could, you could use my referral link. http://www.bing.com/explore/rewards?PUBL=REFERAFRIEND&CREA=RAW&rrid=_597783a8-4b68-ef21-3e51-2bf2837477d5
  30. It's moved back to the top.
  31. You know what they call people like you I'm sure that boosts your script sales
  32. lol'd. I go to the bathroom and take my phone or tablet and my dad knocks on the door saying what're you doing and what's that sound. I :lol: and
  33. moved it to the top
  34. 1 point
    You don't need to change ISPs to get a new IP, that's ridiculous. Call your ISP and say "I'd like a new IP address", the end; just don't run your mouth about how it's for a "bot". If they ask, just say you've been having issues with it and you'd like to change it. Also, play the account legit until it's well-rounded (well quested, lots of time put into untradables, etc) and then bot it for reasonable amounts of time in safer areas.
  35. 1 point
    Imagine me saying this in George Takai's voice; "helloooooooooooooo" Welcome back Cinna
  36. Hey, before i start I've seen this one already on forums, as i remember our BrainFree mentioned it. Because my engrish is really bad, i will try to provide links instead writing how it works. So here it is one more time: Convex hull is generally tightest area of point set. So what we want to do is to calculate 2D points of our object, entity and make convex hull for it for perfect bounding polygon, it will be really helpfull on fighter scripts or any script that needs to interact alot, it will fail less time. Bounding box you were using: What we want to accomplish: As you see we have some blind spots on basic rect bounding box: Red - hulling will reduce them. Yellow - hulling will not reduce them (actually the one i want to show) It is not really necessary to remove yellow ones so w/e. The thing is we want to shink area a little bit to be more precise when interacting. So the algorithm is like this: /** * Making convex hull around points. * * @param points - the points * @return - the convex hull points points. */ public static short[][] hull(short[][] points) { int upperSize = 2; int lowerSize = 2; int pointsSize = points.length; short[][] lUpper = new short[pointsSize][2]; short[][] lLower = new short[pointsSize][2]; short[][] xSorted = points.clone(); Arrays.sort(xSorted, new Comparator<short[]>() { @Override public int compare(short[] o1, short[] o2) { return Integer.compare(o1[0], o2[0]); } }); lUpper[0] = xSorted[0]; lUpper[1] = xSorted[1]; lLower[0] = xSorted[pointsSize - 1]; lLower[1] = xSorted[pointsSize - 2]; for (int i = 2; i < pointsSize; i++) { lUpper[upperSize] = xSorted[i]; upperSize++; while (upperSize > 2 && !rightTurn(lUpper[upperSize - 3], lUpper[upperSize - 2], lUpper[upperSize - 1])) { lUpper[upperSize - 2] = lUpper[upperSize - 1]; upperSize--; } } for (int i = pointsSize - 3; i >= 0; i--) { lLower[lowerSize] = xSorted[i]; lowerSize++; while (lowerSize > 2 && !rightTurn(lLower[lowerSize - 3], lLower[lowerSize - 2], lLower[lowerSize - 1])) { lLower[lowerSize - 2] = lLower[lowerSize - 1]; lowerSize--; } } short[][] result = new short[upperSize + lowerSize - 1][2]; System.arraycopy(lUpper, 0, result, 0, upperSize); System.arraycopy(lLower, 0, result, upperSize, lowerSize - 1); return result; } /** * Checks if points turns right. * * @param a - the 'a' point. * @param b - the 'b' point. * @param c - the 'c' point. * @return */ private static boolean rightTurn(short[] a, short[] b, short[] c) { return (b[0] - a[0]) * (c[1] - a[1]) - (b[1] - a[1]) * (c[0] - a[0]) > 0; } (I ddnt made it as i remember but i cant find real author) What do you need to read to understand this algorithm: http://en.wikipedia.org/wiki/Convex_hull en.wikipedia.org/wiki/Graham_scan /** * Converting points to polygon. * * @param points - the - the points. * @return the polygon based on points. */ public static Polygon toPolygon(short[][] points) { Polygon result = new Polygon(); for (short[] point : points) { result.addPoint(point[0], point[1]); } return result; } How to implement : First we need to get screen coords: http://osbot.org/osbot2_api/org/osbot/rs07/api/util/GraphicUtilities.html#getScreenCoordinates%28org.osbot.rs07.Bot,%20int,%20int,%20int,%20org.osbot.rs07.api.model.Model%29 Then we make hull based on points: hull(screenCoordinates); Example for dumbs: Entity litara = npcs.closest("Litara"); short[][] screenCoordinates = Calculations.getScreenCoordinates(this, litara.getGridX(), litara.getGridY(), litara.getZ(), litara.getModel()); short[][] hull = Calculations.hull(screenCoordinates); g.draw(Calculations.toPolygon(hull));
  37. Going best case scenario isn't what should be done. Just do 1 account running shrooms for 5 hours a day = 6 dollars and run like 3 times in 30 days and you make your money back x2 - 2 bonds, so you still profit in 3 proggies 1% chance of ban botting 6 hours 3 times a month. Yet you still are acting as you aren't making money. One time scripts make the market crash faster, and everything. You paying a small fee is worth it in the long run. More scripter updates and dedication to fixing it because if they don't people won't renew.
  38. I take back part of my statement, because customers actually benefit from monthly payments considering the scriptwriter will be keeping the script itself fully functional. Meaning, since they have an incentive scriptwriters will be working extra hard to maintain their income and I have completely faith in them. Hopefully we'll make the Friday release since this will be a big step for OSBot.
  39. Good looking thread. Thanks for supporting OSBot @Jordan .
  40. One, you missed the entire point of the thread, this isn't how to setup your frame work, or how you should write your script, it is purely showing scriptwriters who do not know how to use more than one class file, some insight how someone might go about doing it; because quite frankly, quite a few don't/didn't know how. Two, the super.onStart() was automatically added, and since this IS NOT A REAL SCRIPT, I left it, because once again, this is not showing you how to write a script, just how to use more than one class. Three, once again quite a few script writers do not know how to use more than a single class in thief script, so one of the Mods thought it would be a useful resource to those looking to learn. My personal opinion, get off your high fucking horse, and learn to communicate like a adult, and not a preteen ass 14 year old, who uses his moms credit card for everything. It would be a lot easier to get your point across.

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.