Jump to content

Razzel

Members
  • Posts

    17
  • Joined

  • Last visited

  • Feedback

    0%

Everything posted by Razzel

  1. What happened to the buy multiple items feature?
  2. Hey Czar, could I trial this?
  3. Hey Czar, I've been using your trial and think its great! I've noticed this issue as well. I've tried setting it do different percentages and have left sip to 100% unchecked. Still chugs super energy potions. Sometimes it'll chug to 100%, withdraw essence, deposit the essence then start chugging potions again even while at 100%. Side note: Do you accept gp for scripts?
  4. Hi could I get a trial for this? I'm also wondering, does this script allow you to take random breaks between each inventory? e.g. sleep between 5 to 30 before banking.
  5. Doesn't seem to work for me. Just keeps trying to fill the coal bag.
  6. Hi everyone, I'm very new to scripting and have been messing around by splicing together open source code. I want to enter a friend's house but once it has done this once, I want to enter using the House Advertisement object, ID:29091 and 'Visit-Last', or go back to entering the host name manually if this message appears "You haven't visited anyone this session." Anyone got any tips? public void enter_house() { RS2Object portal = (RS2Object)this.getObjects().closest(this.OUTSIDE_HOUSE, new String[]{"Portal"}); if (this.OUTSIDE_HOUSE.contains(this.myPlayer().getPosition(); portal.interact(new String[]{"Friend's house"}); (new ConditionalSleep(random(2000, 7500)) { public boolean condition() { return main.this.getDialogues().inDialogue(); } }).sleep(); if (this.getDialogues().inDialogue()) { this.getKeyboard().typeString(this.host_name, true); sleep((long)random(2050, 1850)); }
  7. Do the newer JDK's not work with script building? My local scripts don't seem to pop up with JDK 14.
×
×
  • Create New...