Jump to content

Chris

Scripter II
  • Posts

    8358
  • Joined

  • Last visited

  • Days Won

    14
  • Feedback

    100%

Everything posted by Chris

  1. 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()); } }
  2. I'll have to take a look at this. Are you using mirror mode or injection?
  3. Asking for banrates is retarded horshshit too tho
  4. dont watch an old video use the API docs http://osbot.org/api
  5. damn jamez making a lot of money ;) he shud be able to pay me back now
  6. getSkills.getStatic to get non boosted level getskills.getDynamic to get a skill that is changing (boosted or stas r weakend etc)
  7. Buy from vilius/lemons shop 100k ea or 90kea(in bulk 100+)
  8. Chris

    Stealth Quester

    I usually make my own quest lists and presets for the accs I bot on. so far out of the 6 accounts I have botted this past week. None have been banned by Tokens script.
  9. Chris

    Rx7xr

    pm me ur skype i want quotes
  10. my name is jafar i come from afar i got a bomb in my car allahu akbar :trihard:
  11. TRIHARD CHICKEN TRIHARD CHICKENTRIHARD CHICKEN TRIHARD CHICKENTRIHARD CHICKEN TRIHARD CHICKENTRIHARD CHICKEN TRIHARD CHICKENTRIHARD CHICKEN TRIHARD CHICKENTRIHARD CHICKEN TRIHARD CHICKENTRIHARD CHICKEN TRIHARD CHICKENTRIHARD CHICKEN TRIHARD CHICKENTRIHARD CHICKEN TRIHARD CHICKENTRIHARD CHICKEN TRIHARD CHICKENTRIHARD CHICKEN TRIHARD CHICKENTRIHARD CHICKEN TRIHARD CHICKEN
  12. already gave you one yesterday?
  13. it's already there by default done done
  14. something like this public void webToDestination(Position destination){ //log("Walking to " + destination); WebWalkEvent event = new WebWalkEvent(destination); PathPreferenceProfile ppp = new PathPreferenceProfile(); ppp.setAllowTeleports(true); event.setPathPreferenceProfile(ppp); event.prefetchRequirements(getBot().getMethods()); execute(event); }
  15. use WebWalkEvent and PathPreferenceProfile
×
×
  • Create New...