Jump to content

Apaec

Scripter III
  • Posts

    11155
  • Joined

  • Last visited

  • Days Won

    91
  • Feedback

    100%

Everything posted by Apaec

  1. I've given you a 24h trial again enjoy !: ) apa
  2. Make sure you're getState() method returns a default state (i.e if none of your if statements are accepted). apa
  3. Try: RS2Object bankBooth = objects.closest("Bank booth"); //defining the booth if (!bank.isOpen(){ //if bank isn't already open if (bankBooth != null && bankBooth .exists() && bankBooth .hasAction("Bank")) { //checking if it exists and if it has the action bank.interact("Bank"); //clicks bank sleep(random(400,500)); //little sleep. Conditional would be better but this is fine for now } } else { bank.withdraw("Bowstring", 500); //add some checks in here, but this will do for now. bank.close(); } wrote it in the reply box so sorry if there are any errors. If you're still not clear of anything, please let me know!!! apa
  4. damn not really sure what to say about the situation... read through the whole page and I was expecting it to get better but it didn't xd Probably somewhat exaggerated by the press but still, dem :c apa
  5. Not sure. I can give you a 24h trial so you can give it a shot for yourself if you're interested. Just reply on the trials thread in the same format as usual apa
  6. Everyone has one, you just need to change the URL Like this: http://apascripts.x10host.com/cook/torgeir.png
  7. can I have a proggie? you can have a cookie x)
  8. Unfortunately due to the poor behaviour of users in the past who were repeatedly creating accounts to request trials, I've had to tighten the trial requirements. The rules on the front state: To recieve a 24h trial, you must have either VIP, 1 week+ old account or 50+ post count (or something along those lines). Otherwise you will recieve a 6h trialIt's just a precaution to stop users abusing the system. Unfortunately there's no way to tell between legitimate and abusing members so I must stand by my rules. I hope you understand, and sorry if it feels harsh, however hopefully the 6h trial was plenty to get a feel for the script Apa
  9. Apaec

    What location?

    the bricks on the wall look similar to varrock palace.
  10. I don't have any issues at all, I just think that it might take some pressure off the eric atm. Plus it would mean we could potentially get more frequent pushes. Not that the current schedule is bad, just the more pushes the merrier ;pp apa
  11. is my sig classed as large and loud? or is it cool?
  12. Do you think it would be advantageous to have more than just 1 SDN manager? It might split the workload a bit. apa
  13. This^ It is worth noting that, like the RGB values, the alpha constructor is also in the range 0-255 where 255 is solid colour. apa
  14. I've given you a 6h trial. Enjoy! apa
  15. I think the aio one should have better antiban than the den cooker yes. I've given yuo a 24h trial so you can test it out, hopefully you'll see for yourself ! apa
  16. public static String runescapeFormat(Integer number) { String[] suffix = new String[] { "K", "M", "B", "T" }; int size = (number.intValue() != 0) ? (int) Math.log10(number) : 0; if (size >= 3) { while (size % 3 != 0) { size = size - 1; } } return (size >= 3) ? +(Math.round((number / Math.pow(10, size)) * 10) / 10d) + suffix[(size / 3) - 1] : +number + ""; } Found the base of the method offsite somewhere (ages ago, can't remember where). I updated it a bit. apa
  17. I disagree. I think the text makes it look tidy but a custom font may make it look crisper
  18. What? no the method at the top does nothing at all. If you really wanted your own utility which it seems this guy was trying to do, you would do something like private boolean turnRun(boolean on) { return settings.setRunning(on); } Unless I misunderstood your post? xd apa http://osbot.org/api/org/osbot/rs07/api/Settings.html#setRunning-boolean- gl
  19. I can extend your trial for an additional 24 hours if you wish. I am aware that there are currently a couple of issues with static pathwalking so while this is the case I'm happy to make a few exceptions. I've given you 24h longer. be sure to come to me if you have any more questions apa
  20. Hey What doesn't work? you'll need to be more specific. it's running fine for my on injection. On mirror the bot does have a few issues with walking (caused by client issues regarding positioning), but it should be perfect in injection. Perhaps you just set it up wrong? if so, open the console and see if it logs any messages suggesting what you an do to fix it. apa
  21. I hope you paid the guy back
×
×
  • Create New...