Jump to content

GPSwap

Trade With Caution
  • Posts

    476
  • Joined

  • Last visited

  • Feedback

    100%

Everything posted by GPSwap

  1. 1 is plenty for free, if your just trying to level a acc or something, while if your trying to farm gold with lots of accs then your making money off it and should have no issue paying for use of the bot
  2. the firemaking animation is weird,it stops animating regularly (when you stand up it actually stops the animation before starting again meaning !myPlayer().isAnimating() will think its not animating, unlike during fishing/wc where it doesn't stop the animation), its not the best way to check, honestly I would try something simpler as your first script
  3. he should be Billy the Allpowerfull Lead Embasader of Kekistan Capitals of the title
  4. I'd remove anti-ban and mule support from 4. ^.^
  5. the script that hit that normaly is about 5-6% cpu and 450mb ram, as i say hasnt happened since .41 so idk what it was
  6. I've had some spikes in cpu (from 5-6% to over 50%) for no obvious reason (at completely different random parts of very different tasks with no common action), but if somehow it doesnt crash the client it sorts itself out, but i don't think thats happened since .41
  7. from what I understand how this type of script is meant to work, it basically is coding java just having it babysit you on a couple things, the work for user end on this would be about the same as just coding in java, making it kinda pointless theres lots of great tutorials in the scripter help section, id suggest going something like codeacademy, to learn the basics of java then following some of the great tutorials we have
  8. thats what I was thinking because he said it logs him out, since hes not vip your limited on bots at once, but that just closes client not logging out, even on different ips
  9. what script? scripts shouldnt have limits on them
  10. Id happily bond up a couple accounts for testing
  11. combat.isFighting(); cow.isUnderAttack combat.isFighting checks if your player is in combat - so change your !myPlayer().isAnimating to !combat.isFighting() Entity.isUnderAttack will check if entity is under attack - and add this to your cow filter
  12. Holy shit finally someone scripted this, we are all saved!
  13. Never used the get elapsed on tracker, this is what I use for time and its always spot on public void onStart(){ startTime = System.currentTimeMillis(); } public void onPaint(){ final long runTime = System.currentTimeMillis() - startTime; g.drawString("Time running: " + formatTime(runTime), 320, 400); } public final String formatTime(final long ms) { long s = ms / 1000, m = s / 60, h = m / 60, d = h / 24; s %= 60; m %= 60; h %= 24; return d > 0 ? String.format("%02d:%02d:%02d:%02d", d, h, m, s) : h > 0 ? String.format("%02d:%02d:%02d", h, m, s) : String.format("%02d:%02d", m, s); }
  14. Good rule, only reasonable and lol @Juggles
  15. GPSwap

    Hey

    Suuuuuuuuuuuuuuuuuuuuup
  16. I dont follow these rules and dont seem to have a issue personally, but its definately some great tips for people who don't know what they are doing, good job
×
×
  • Create New...