Jump to content

Easy

Trade With Caution
  • Posts

    192
  • Joined

  • Last visited

  • Feedback

    100%

Everything posted by Easy

  1. About $30, I personally wouldn't pay any more than that
  2. private Timer worldHoppingTimer = new Timer(); public int onLoop() { if (worldHoppingTimer.isActive()) { //do something here int hour = 3600000; int minHours = 1 * hour; int maxHours = 3 * hour; worldHoppingTimer.setTimeout(random(minHours, minHours)); //set the timer to go off in 1 - 3 hours (just an example) } return 100; } public class Timer { private long timeout; public Timer() { timeout = System.currentTimeMillis(); } public boolean isActive() { return timeout > System.currentTimeMillis(); } public void setTimeout(long timeout) { this.timeout = timeout + System.currentTimeMillis(); } public long getElapsedTime() { return System.currentTimeMillis() - timeout; } public String getElapsedToString() { return Format.msToString(getElapsedTime()); } public long getPerHour(long value) { return value * 3600000 / getElapsedTime(); } }
  3. You're definitely being that guy
  4. Can you lift my messaging system restriction? I think you disabled it when you locked this thread
  5. Runescape private servers have nothing to do with both osrs and osbot
  6. Wanna destroy your favourite private server's economy? I'm now accepting RSPS script requests Skype: dan.flamo Original private scripting thread -> http://osbot.org/forum/topic/110654-cheap-flamos-private-script-shop-quick-cheap-experienced-flawless-scripts-off-site-experience/#entry1246731
  7. Thanks for the postcount, friend
  8. Not as hard as finding the matrixes for world to screen xd
  9. I wrote the bot. The problem is that it's an actual script, so you'll need to start up the osbot client to run it. Also, the script only supports mirror client, so you'll need VIP as well. My price is 50M 07.
  10. Windows, mac os and linux support. Basically, he wants the program to be made in java, a multi-platform language.
  11. So you want a bot that will reply whenever possible, once per thread, with responses based off of keywords found in the thread and title?
  12. Yeah, I'd love to give you a explanation as to why your code is bad. https://www.teamspeak.com/downloads Install teamspeak, join "elitescripts.org" and poke me "Danny" in the java channel. I'm not going to waste my time writing a longwinded post that you won't understand when I could speak to you and clear things up in a fraction of the time.
  13. Yes, it is horrible. The script will fail to run properly and/or crash so frequently that it wouldn't even be worth running. I could waste my time listing out everything that's wrong with this script if I wanted to. My comment has nothing to do with myself, it's about letting him know that he needs to improve if he wants to write a script that won't crash or spam click random rs entities.
  14. This whole script is horrible.
  15. With the goal of reusing as much code as possible without writing duplicate code, try to come up with the answer on your own
  16. Easy

    FrostCaves

    Probably fails to complete it like 30% of the time, so it's still in dev. Have to hardcode every possible situation and it'll be done m9
  17. while (myPlayer().isAnimating()) { Don't use while loops in your scripts. The only while loop you should be using is the onLoop method that you're forced to override after extending script. Since your script is already looping, you could easily use an if statement to check if you're animating.
  18. the enum is entirely redundant
  19. i knew there was one for interacting npc, so i just assumed there was one for object..
×
×
  • Create New...