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.

Swizzbeat

Members
  • Joined

  • Last visited

Everything posted by Swizzbeat

  1. I was getting this the other day when I tried to view the free scripts store. After I cleared my browser cache and restarted my computer everything worked, not quite sure which one of those fixed the issue though O_o
  2. You could say I'm somewhat of a babe ;)
  3. Randoms are handled by the client and not the script.
  4. Find a unknown, fast method and have someone make a private script for it. Your best bet if you're trying to actually make some decent money goldfarming is doing something no one else does.
  5. That's absolutely ridiculous. They already overcharge people to hell but because people are stupid enough to pay it they just keeping on raising it.
  6. That wasn't what I was trying to say at all. I was talking more along the lines of how great this whole new Google Fiber connection is going to be.
  7. Looks neat not sure how legit this is though.
  8. Swizzbeat posted a topic in Snippets
    Was trying to figure this out and stumbled upon an old thread on another botting site with the code. All credit goes to a member over there by the name of Enfilade. Needed variable in your main class (where you'll be doing the painting): private final LinkedList<MousePathPoint> mousePath = new LinkedList<MousePathPoint>(); The MousePathPoint class (could also of course just be made into an inner class): import java.awt.Point; //ALL CREDITS TO ENFILADE class MousePathPoint extends Point { private long finishTime; private double lastingTime; public MousePathPoint(int x, int y, int lastingTime) { super(x, y); this.lastingTime = lastingTime; finishTime = System.currentTimeMillis() + lastingTime; } public boolean isUp() { return System.currentTimeMillis() > finishTime; } } And the code that should go into your onPaint method: while (!mousePath.isEmpty() && mousePath.peek().isUp()) mousePath.remove(); Point clientCursor = client.getMousePosition(); MousePathPoint mpp = new MousePathPoint(clientCursor.x, clientCursor.y, 300); //1000 = lasting time/MS if (mousePath.isEmpty() || !mousePath.getLast().equals(mpp)) mousePath.add(mpp); MousePathPoint lastPoint = null; for (MousePathPoint a : mousePath) { if (lastPoint != null) { g.setColor(Color.YELLOW); //trail color g.drawLine(a.x, a.y, lastPoint.x, lastPoint.y); } lastPoint = a; }
  9. Click the "report" button right in the bottom right of the avatar box on your post. Then enter in what you need changed
  10. Bot, mine bitcoins/litecoins/dogecoins, etc. there's many things to do.
  11. Honestly getting a major in Computer Science is pretty stupid. I mean yeah it is beneficial to go and do this, but everything you could learn at a college you can learn online. Hell, MIT puts their entire Computer Science course on Youtube every year for anyone to view... In my opinion it's better to go for something like Biochemical Engineering, or another advanced topic like that that would be nearly impossible to learn on your own without the right equipment.
  12. Not exactly 15+ types of mods, but more so maybe 2 or 3 "types" that handle different areas of the forum. Having a Global and Super be pretty much the same thing is redundant in my eyes. There's a reason every other forum that I can think of designates forum sections based on mod type :p. Of course the current way of doing things is working fine, this is just a suggestion.
  13. To be honest, in my opinion the whole mod ranking is kinda messed up. Global mods are almost the exact same thing as Super (besides a couple extra powers as far as I am aware) which in all honestly just makes them pretty much the same thing. Why not have sectional moderators, like every single other forum, where users are promoted to handle a certain section such as "Client Support" or "Script topic manager". Then on top of that there could be Super mods who oversee everything and help out when needed. If this was implemented I'm sure a lot more things would get done as there would be a small number of tasks to handle per mod.
  14. Swizzbeat replied to mrodf10's topic in Runescape
    OSBot advertisement.
  15. Lots and lots of tutorials/trying things out yourself. It's not hard to Google/YouTube search guides on simple Graphics concepts
  16. See below ;)
  17. Swizzbeat replied to Zach's topic in Releases
    Was just about to post with a bug report on the mouse, but I see it's been fixed
  18. Swizzbeat replied to Zach's topic in Releases
    Thank you!

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.