Jump to content

Nitrousek

$100.00 Donor
  • Posts

    2889
  • Joined

  • Last visited

  • Days Won

    1
  • Feedback

    100%

Everything posted by Nitrousek

  1. You'll get banned within 24 hours. (if you're actually suiciding)
  2. Everything is a high banrate.
  3. No shit, but if you followed my chain of thoughts (which you clearly didn't), I am in society of (java) wizards, we can get him the permission with one swish of a hand.
  4. He'll come back, and in his final moments he'll 1. Demote Maldesto 2. Promote himself to Administrator. pwnd.
  5. It's entirely different client, with different API and behaviour. In about two weeks OSBot's 1 development will be stopped, and OSBot 2 will be the only client available.
  6. Now that F2P is out for testing, they've started banning as hell. I'd use OSBot 2, most likely has smaller chance of making you end up banned.
  7. Flesh crawlers, druids, master farmers, woodcutting (yews/maples), fishing (lobs/swordies/sharks). That's about it if I had something to recommend for a goldfarm.
  8. ^ That. You guys already get script discounts, which is the money you take out of our pockets (worth noting), and you are supporting the developers that way (and not us). The argument about "showing off your scripting skills to vips", is completely invalid, as scripter could release a free script, and would show his scripting skills to everyone, thus increasing the sales even more. There is currently no point in such a section, in addition, I don't really see what could be released there, and who would release it. So my word is leave it as it is.
  9. I really wish they informed us ONCE and CLEARLY what are the rules of this transition. Because as you've said, I'm not spending my time REWRITING for free. And yes, I've said rewriting. It'd be faster to actually write from scratch than "convert", based on my latest experiences. Debugging every single line to find out what's going on in a huge script...
  10. You have put your age too low... clear cache / use different browser and you'll be fine.
  11. If you took boobs out of life equation, it'd suck as well. What you are proposing goes against the nature, so the answer is no.
  12. veryshort planksPerHour = (veryshort)(3600000d * planksCreated / System.currentTimeMillis() - startTime); Your short actually wouldn't work if he started the script and crafted items instantly // for many scripts
  13. He can hold planksPerHour as integer, there's no need for long, as it won't even exceed 2k. Also, he doesn't need to reverse order, if he changed the number to double. (3600000.0) or (3600000d). The resulting double will be converted back to integer without any problems. int planksPerHour = (int)(3600000d * planksCreated / System.currentTimeMillis() - startTime);
  14. Yes, and my method would work just fine, if you care to test.
  15. You don't need to grab the x,y in the position, you need to: 1. grab the position from position[] 2. check the current closest position from that array and assume it's your position (so now check the array starting from this position and find closest) 3. then walk the next position, (if it exists and if your distance from the last position is bigger than X) All you need to do this is: Simple Position(parameter Position[]) and void (parameter Position[]) functions. 2 Simple for loops. map.distance(position) map.walk(position) If you really want to you can also use canReach. You should probably also make it not spam-click too much. That's how I'd do it anyway. If you still can't do it you can contact me on PM, with any scraps that you've been trying.
  16. Don't listen to this guy ^, just use my method, should work. If it doesn't something is wrong with something else you have not shown.
  17. public int getPerHour(int value) { if (System.currentTimeMillis() - startTime > 0) { return (int) (value * 3600000d / System.currentTimeMillis() - startTime); } else { return 0; } } and use in onPaint() like this: g.drawString("" + getPerHour(planksCreated), x,y);
  18. You have not supplied enough information. Also, I'm assuming that's not everything you have for determining planksCreated planksCreated += client.getInventory().getAmount(userChoiceP); You haven't even shown us what data types those all are.
  19. Mother of dragons uses dragons to pick dem flag, easy, 100k flax/ph right?
  20. Hey, how hard are they to sell / what are they used for?
  21. She hot? Give me number pls... PS. I'm kinda rich, so give her a good word about me ;D.
×
×
  • Create New...