Jump to content

Swizzbeat

Members
  • Posts

    7986
  • Joined

  • Last visited

  • Days Won

    58
  • Feedback

    100%

Everything posted by Swizzbeat

  1. That's a great way to think! I'm just trying to put things in perspective for you. Just like you said, this isn't going to be an easy overnight project. Best of luck with it though
  2. Creating a game is a HUGE task and I'm pretty sure 90% of the programmers on this site (including myself) don't have near the amount of knowledge to come close to even saying we could take this on.
  3. This was posted yesterday
  4. 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
  5. Randoms are handled by the client and not the script.
  6. Swizzbeat

    Mouse Trail

    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; }
  7. Click the "report" button right in the bottom right of the avatar box on your post. Then enter in what you need changed
  8. Lots and lots of tutorials/trying things out yourself. It's not hard to Google/YouTube search guides on simple Graphics concepts
  9. Swizzbeat

    v1.7.82-6

    Was just about to post with a bug report on the mouse, but I see it's been fixed
  10. It wouldn't really matter since OSBot is slowly turning into a soft porn site. But DO NOT DO IT as just one more pic of might set me over the edge.
  11. Sex, oral, etc is allowed BUT NO TIME WITH JILL.
  12. And people wonder why he's drunk a lot :troll1:
  13. Considering the last two people can't count... 1.
  14. Come on @Levi what would your teacher say :troll1:
×
×
  • Create New...