Jump to content

Zappa

Trade With Caution
  • Posts

    1075
  • Joined

  • Last visited

  • Days Won

    3
  • Feedback

    100%

Everything posted by Zappa

  1. try this: http://pastebin.com/4pzTg8hn
  2. http://gyazo.com/fb4866b3f0d15793b75493909b8a7306
  3. Happy Birthday to Cortana/! Have a good one!
  4. My favourite movies, in no particular order, are: -The Lord of the Rings -A Clockwork Orange -Elizabeth -Memento -Snatch -True Grit (2010) -The Matrix -Napoleon Dynamite -Pulp Fiction -The Silence of the Lambs -Hannibal -Red Dragon -Batman (1989) -The Usual Suspects -American History X -Downfall -Braveheart -Monty Python and the Holy Grail -Fargo -The Jerk
  5. Zappa

    1+1=2

    Lawl. I posted on his thread showing why he is so horribly wrong. I wonder if he will even understand what I said, or just get defensive and say that he is right. All you did was type my idea into a calculator...
  6. Zappa

    1+1=2

    1 + 1 only equals two if you want it to. It can equal anything.
  7. Put this just after your class extends script declaration (replace names and coordinates with your own): ArrayList<Position> toMine = new ArrayList(); public static Position[] MinePos = { new Position(2845, 2961, 0), new Position(2831, 2969, 0), new Position(2827, 2981, 0), new Position(2823, 2998, 0) }; Put this in your onStart(); statement: loadPath(this.toMine, MinePos); Put this after your onStart(); statement: private void doWalk(ArrayList<Position> posList) throws InterruptedException { for (Iterator localIterator = posList.iterator(); localIterator .hasNext(); this.client.getMyPlayer().isMoving()) { Position pos = (Position) localIterator.next(); walkMiniMap(pos); sleep(1300 + random(600)); } } private void loadPath(ArrayList<Position> list, Position[] pos) { for (Position path : pos) list.add(path); } Put this wherever you want to execute the walk: try { doWalk(this.toMine); } catch (Exception localException) { }
  8. Zappa

    Strawpoll

    The fact that you are cursing at me indicates that you are defensive about something, and therefore find me to be superior to you in some way. Please do not post on any of my topics any more. Thank you.
  9. Zappa

    Strawpoll

    http://strawpoll.me/457742
  10. Edit: damn... not appropriate for OSBot... blocked all the good words
  11. Thank you for doing the right thing here, Chief. The Arbiter is waiting for you at recon.
×
×
  • Create New...