Jump to content

Wind

Trade With Caution
  • Posts

    94
  • Joined

  • Last visited

  • Feedback

    100%

Everything posted by Wind

  1. Sometimes it gets stuck here when doing nature runes through the abyss was stuck there for a couple hours.
  2. Script seems to keep clicking between settings and inventory every 2 seconds. EDIT: seems to be working now, I don't know what the problem was.
  3. I have the same problem, fix plz
  4. Wind

    Khal AIO Agility

    http://gyazo.com/fe8cc02718b2ea0bfd0fa195f2ed8ca1 Cool script, will consider buying it. Thanks for the trial!
  5. Wind

    MirrorClient v1.094

    Thanks for the update
  6. Wind

    1k zulrah kills!

    Good luck, Inb4 pet first drop
  7. Bug report Template: - Mirror or regular client? Mirror - Running abyss or normal altars? abyss - What is your setup? 2 pouches (small and medium) going into abyss for nature runes, stamina pots, lobsters and house tele tabs enabled. All obstacles but the woodcutting one enabled. - Printscreen with the Osbot console enabled and script paint when getting stuck. http://gyazo.com/34a091951c38786b18295f25aa0a49f2 bot gets stuck there doing nothing
  8. Bug report Template: - Mirror or regular client? Mirror - Running abyss or normal altars? abyss - What is your setup? 2 pouches (small and medium) going into abyss for nature runes, stamina pots, lobsters and glories enabled. All obstacles but the woodcutting one enabled. - Printscreen with the Osbot console enabled and script paint when getting stuck. http://gyazo.com/bd4037679276f298f7d8a919f71480d8
  9. Nice release, looks good.
  10. I know I don't meet the requirements for this but i really want to try out either crabs or experiments because I'm planning on leveling strength as a pure and want to know which one of these will be better for me to purchase. Since I already own your range guild script which works amazing. Can I please get a trail for experiments?
  11. I'm planning on buying this script or your crabs script, which one would recommend for pure training strength ?
  12. This is the first script I have created, there seems to be problem when running the script. It will only drop items but not chop down the willows near it. import org.osbot.rs07.script.Script; import org.osbot.rs07.script.ScriptManifest; import org.osbot.rs07.api.model.Entity; import java.awt.*; @ScriptManifest(author = "SS", info = "First script", name = "test1", version = 0, logo = "") public class Main1 extends Script { public static final int[] WOODCUTTING_ID = { 11753, 11752, 11751 }; @Override public void onStart() { log("Let's get started!"); } private enum State { DROP, CHOP, WAIT }; private State getState() { if (!inventory.isFull()) return State.DROP; return State.CHOP; } @Override public int onLoop() throws InterruptedException { switch (getState()) { case CHOP: if (!myPlayer().isAnimating()) { Entity Willow = objects.closest(WOODCUTTING_ID); if (Willow != null) { Willow.interact("Chop-down"); sleep(random(25, 30)); } } break; case DROP: inventory.dropAll(); break; case WAIT: sleep(random(500, 700)); break; } return random(200, 300); } @Override public void onExit() { log("T!"); } @Override public void onPaint(Graphics2D g) { } } First attempt Also is there any other tutorials out there that can improve my skills?
  13. I'll take your bet but I'll do it for 50Mil OSRS since $1000 is abit to the extreme side. I can set up a simple experiment to prove that using osbot will result in a quicker ban than a macro. Watcha say?
×
×
  • Create New...