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. This kinda shit should be illegal. I heard of something like this happening to a friend of mine the other day but it was for WAY more... May I ask what the story behind it is? Like why are you being charged?
  2. Maybe it's because I'm retarded, but I can't find this "properties" configuration panel thingy...
  3. Apparently you're 95% imagination.
  4. Shoulda been a girl.
  5. Yes.
  6. This is why most service providers annoy me.
  7. If you deal drugs at all you're a complete faggot. Like that's what I want to do with my life, get kids hooked on drugs. inb4retardcomments "marijuana isn't bad dude y so stupid"
  8. The ID changes as well, so trying to grab the closest rock for that ID would return null or a new rock completely if a surrounding rock shares the same ID.
  9. Swizzbeat replied to RoomScape's topic in Spam/Off Topic
    Yet another mindless game
  10. This won't work. You have to write a getInteracting method to check the height of what you're interacting with.
  11. So yeah...
  12. I don't think there is a method for this currently, however if you create byte array and loop through typing each key individually you could set your own speed.
  13. Idk why but something about her is just hella sexy.
  14. So you just met a random girl on RS and said let's meet up IRL and bang? I like you.
  15. I have a lot of people ask me what the code is for my mouse cursor, so I mine as well post this. MousePathPoint class: import java.awt.Point; //CREDITS TO ENFILADE class MousePathPoint extends Point { private long finishTime; private double lastingTime; private int alpha = 255; public MousePathPoint(int x, int y, int lastingTime) { super(x, y); this.lastingTime = lastingTime; finishTime = System.currentTimeMillis() + lastingTime; } //added by Swizzbeat public int getAlpha() { int newAlpha = ((int) ((finishTime - System.currentTimeMillis()) / (lastingTime / alpha))); if (newAlpha > 255) newAlpha = 255; if (newAlpha < 0) newAlpha = 0; return newAlpha; } public boolean isUp() { return System.currentTimeMillis() >= finishTime; } } Class variables in main class: private int mX, mY; private long angle; private BasicStroke cursorStroke = new BasicStroke(2); private Color cursorColor = Color.WHITE; private AffineTransform oldTransform; Code to put in your onPaint: Graphics2D g = (Graphics2D) g1; //replace g1 with Graphics variable name oldTransform = g.getTransform(); mX = client.getMousePosition().x; mY = client.getMousePosition().y; g.setRenderingHints(new RenderingHints(RenderingHints.KEY_ANTIALIASING, RenderingHints.VALUE_ANTIALIAS_ON)); //MOUSE TRAIL while (!mousePath.isEmpty() && mousePath.peek().isUp()) mousePath.remove(); Point clientCursor = client.getMousePosition(); MousePathPoint mpp = new MousePathPoint(clientCursor.x, clientCursor.y, 300); if (mousePath.isEmpty() || !mousePath.getLast().equals(mpp)) mousePath.add(mpp); MousePathPoint lastPoint = null; for (MousePathPoint a : mousePath) { if (lastPoint != null) { g.setColor(new Color(255, 255, 255, a.getAlpha())); //trail color g.drawLine(a.x, a.y, lastPoint.x, lastPoint.y); } lastPoint = a; } if (mX != -1) { g.setStroke(cursorStroke); g.setColor(cursorColor); g.drawLine(mX-3, mY-3, mX+2, mY+2); g.drawLine(mX-3, mY+2, mX+2, mY-3); g.rotate(Math.toRadians(angle+=6), mX, mY); g.draw(new Arc2D.Double(mX-12, mY-12, 24, 24, 330, 60, Arc2D.OPEN)); g.draw(new Arc2D.Double(mX-12, mY-12, 24, 24, 151, 60, Arc2D.OPEN)); g.setTransform(oldTransform); }
  16. Swizzbeat replied to IMAcoder's topic in Archive
    Well that's interesting....me and a group of five black males gang banged a girl who looked EXACTLY like that last night...and she kept on screaming Kawa save me... Coincidence?
  17. Wait so VIP is only supposed to have 4 tabs?
  18. I want to watch it but Cosmos is on at the same time
  19. This is hilarious, good thinking on your part ;)
  20. Support, I do remember actually being confused when I made my account because I thought I had to select one to even register.
  21. Swizzbeat replied to Botteri's topic in Introductions
    Welcome

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.