Jump to content

Chris

Scripter II
  • Posts

    8365
  • Joined

  • Last visited

  • Days Won

    14
  • Feedback

    100%

Everything posted by Chris

  1. no
  2. osbotsinatra1 is my skype
  3. Chris

    Fire cape

    @Muffins @Acerd
  4. No mames guey porque?
  5. wheres the wyverns, zulrah, and pokemongo source. ik u got it
  6. Is this when it chooses the dialogue option? or when it selects the item?
  7. Chris

    Stealth Quester

    go to gear -> new preset -> load gear (have autocasted spell on and the runes in inv) -> save preset -> go to quest list -> quest -> change 'DEFAULT' to ur preset
  8. bitdefender, MalwareBytes
  9. I'll buy 10M 1$/M PayPal
  10. u need 100 post count to post a topic
  11. all ur src r belong to me u r give me zip file of all ur src now or pay duh price
  12. ask juggles
  13. done.
  14. I'll be back in 8-10 hours since I have work
  15. Hello What exactly do you want me to comment? I provided email change links and password change links. you used them both After that it was YOUR responsibility, not mine.
  16. I'll have to rerun these in mirror mode when I get the chance tonight. ill be at work for 8-9hrs
  17. public class Timer { private final long start; private final long period; private long end; public Timer(long period) { this.period = period; this.start = System.currentTimeMillis(); this.end = (this.start + period); } public long getElapsed() { return System.currentTimeMillis() - this.start; } public long getRemaining() { if (isRunning()) { return this.end - System.currentTimeMillis(); } return 0L; } public boolean isRunning() { return System.currentTimeMillis() < this.end; } public void reset() { this.end = (System.currentTimeMillis() + this.period); } public long setEndIn(long ms) { this.end = (System.currentTimeMillis() + ms); return this.end; } public String toElapsedString() { return Time.format(getElapsed()); } public String toRemainingString() { return Time.format(getRemaining()); } }
  18. I'll have to take a look at this. Are you using mirror mode or injection?
  19. Asking for banrates is retarded horshshit too tho
  20. dont watch an old video use the API docs http://osbot.org/api
  21. damn jamez making a lot of money ;) he shud be able to pay me back now
  22. done
×
×
  • Create New...