Jump to content

Swizzbeat

Members
  • Posts

    7986
  • Joined

  • Last visited

  • Days Won

    58
  • Feedback

    100%

Everything posted by Swizzbeat

  1. Didn't know it was a job at Oracle, touche
  2. See you've fallen into the trap already, you've settled for less. Why work everyday to make someone else's dream come true when you can accomplish your own goals?
  3. I've always had the dream of becoming rich, so I guess you could include owning my own business as part of that. I mainly want to focus on starting a website, product or something or the sort and try to expand on that. You'll never catch me working a 9-5 job, even if I live in a box under a bridge.
  4. public boolean selectMenuOption(String option) { if (sI.menu.isOpen()) { List<Option> options = sI.menu.getMenu(); for (int i = 0; i < options.size(); i++) { if (options.get(i).action.equalsIgnoreCase(option)) { return sI.mouse.click(new RectangleDestination(sI.bot, sI.menu.getX(), sI.menu.getY() + 20 + (i * 15), sI.menu.getWidth(), 15)); } } } return false; }
  5. I need Ground name for birds nest inventory name for birds nest Apparently they switch or something or I have the wrong name....
  6. This would cause so much controversy it wouldn't even be worth the effort. WoW did the same thing and were hit with multiple lawsuits.
  7. Shoulda bought Swizzbeat Fisher.
  8. Pimp. OP: That job looks sick. I've always been interested in network hacking.
  9. Hey where's my name I was UND Corporal Lieutenant
  10. Not really needed since the API already provides this in many different ways:
  11. Since I think it's important scripters do this instead of adding static sleeps here's a basic guide on how to use them. The ConditonalSleep interface takes a timeout parameter as well as a condition method that requires overriding. When the sleep() method is invoked on the instantiated anonymous implementation it will sleep until either the timeout argument is met or the condition returns true. The condition method will return true if the condition was met before the specified timeout or false if the timeout has passed. For example the following code will sleep until either 5000 milliseconds has passed or the condition method returns true, then return the value. return new ConditionalSleep(5000) { @Override public boolean condition() throws InterruptedException { return sI.myPlayer().isAnimating(); } }.sleep();
  12. Memory/CPU management Stability Perform the given task for an infinite amount of time without human input Not be detected by the bot watch
  13. No way brah I can make a site name and have it redirect anywhere I want?!
  14. If she offered me sex I wouldn't say no, but she isn't a girl I'd be drooling over.
  15. Not my code lol. Plus it doesn't matter considering I highly doubt the sleep is going to start exactly on a game tick :p
  16. public void waitFor(Condition c, int timeout) { long t = System.currentTimeMillis(); while (System.currentTimeMillis() - t < timeout && !c.condition()) { Time.sleep(30); } }
  17. Dunno I just put that there so I wouldn't have to release my own walking method :p hai corey with an e
  18. Bye scrubby poo, goodluck on your future endeavours
×
×
  • Create New...