Everything posted by Chris
-
I'm not at the beach
- How to keep track of script time
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()); } }- Excellent Dragons
I'll have to take a look at this. Are you using mirror mode or injection?- Excellent Dragons
Asking for banrates is retarded horshshit too tho- How to see if inventory is full?
dont watch an old video use the API docs http://osbot.org/api- Scammed by a Skype imposter
damn jamez making a lot of money ;) he shud be able to pay me back now- Excellent Dragons
- WHY IS MY PROFILE PIC BLURRY
xc fix ur eyes bro- Checking prayer and hp?
getSkills.getStatic to get non boosted level getskills.getDynamic to get a skill that is changing (boosted or stas r weakend etc)- Excellent Dragons
- Tut island? Then vs. now
Buy from vilius/lemons shop 100k ea or 90kea(in bulk 100+)- Excellent Dragons
- Selling 200M 07GP
- Excellent Dragons
- Rx7xr
- Make me laugh and I'll give you $5.
my name is jafar i come from afar i got a bomb in my car allahu akbar :trihard:- Make me laugh and I'll give you $5.
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- Excellent Dragons
already gave you one yesterday?- Excellent Dragons
- Quantum account shop 《Botting ready》《Cheap prices》《Bulk》
pm'd- Excellent Dragons
- Excellent Dragons
it's already there by default done done- WebWalking help
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); }- WebWalking help
use WebWalkEvent and PathPreferenceProfile- Proxy Issues - Proxy Fish
:think: - How to keep track of script time