Jump to content

Chris

Scripter II
  • Posts

    8355
  • Joined

  • Last visited

  • Days Won

    14
  • Feedback

    100%

Everything posted by Chris

  1. Must have disabled it. I'll check it and push an update
  2. are you using brutal drags mode?
  3. I know of a reported mirror issue that is similar to tokens script problems. which is dialogue option select on mirror. it will bug out when selecting text on mirror, but do fine on injection. its not 100% yet but you need: 3-5 pray pot -> decent pray bonus(blessed hide) -> extendedantifire -> access to pray magic start at blast mine bank -> and it will walk to brutal drags through that shortcut through the tunnel. but you must have the tunnel activated. babysit it and let me know how the current version is.
  4. it's bullerik without the mask
  5. Chris

    Fire cape

    @Muffins @Acerd
  6. No mames guey porque?
  7. wheres the wyverns, zulrah, and pokemongo source. ik u got it
  8. Is this when it chooses the dialogue option? or when it selects the item?
  9. 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
  10. I'll buy 10M 1$/M PayPal
  11. u need 100 post count to post a topic
  12. all ur src r belong to me u r give me zip file of all ur src now or pay duh price
  13. I'll be back in 8-10 hours since I have work
  14. 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.
  15. I'll have to rerun these in mirror mode when I get the chance tonight. ill be at work for 8-9hrs
  16. 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()); } }
  17. I'll have to take a look at this. Are you using mirror mode or injection?
×
×
  • Create New...