Jump to content

Leaderboard

Popular Content

Showing content with the highest reputation on 04/09/22 in all areas

  1. no were all just losing money for years but keep coming back cuz were addicted
    2 points
  2. - Amethyst ore crafting also supported - Prioritises use-item on items in inventory that are closest to one another - Stops script when you run out of materials (if you decide not to restock at GE) Gallery
    1 point
  3. ** $14.99 - 24 hour trials available - like and comment on this thread Don't pm me on OSBot or Discord to ask for a trial. Loot anything, anywhere, with this highly customizable script! PvP worlds, waiting on loot piles, drop parties across Gielinor, even popping balloons in the party room! Buy The Script Here Check out these videos on using Fury AIO Looter to make money! [OSRS] Botting To Ban #7: Looting ! Crazy Profit [OSRS] Botting To Ban #8: F2P Looting FAQs: What does x setting on GUI mean? Look in the GUI spoiler below for a detailed explanation of what each option does. What settings should I use? WHATS THE BEST??? Whatever works for you, try new things until you find something thats good. I made it as customizable as possible for a reason There is no "best" settings before you ask me. lol. If I told everyone the ""best"" settings then everyone would do that and it would no longer be the best. Experiment and see what works for you Where should I run the looter? Anywhere there is loot on the ground. Experiment. See whats making money. Known locations would be GE drop parties in highly populated worlds. PVP worlds in active areas (ge, lumbridge, varrock, etc). ZMI. Wintertodt. Skillers that drop their inventory like barbarian village fishers, rimmington mine iron ore droppers etc. It will even work in the party room to pop balloons GUI: CLI: Discord Server: POGRESS REPORTS:
    1 point
  4. Ya i'm aware fo this issue, will be taking a look at it ASAP!
    1 point
  5. You make profit eventually, with experience and time.
    1 point
  6. You're a legend, thanks man!
    1 point
  7. Using VM's is really the only option
    1 point
  8. I started a new account and needed some agility levels, so I figured I'd record myself making an agility script and post it here. The goal of this is to try and encourage others to learn to script. Apologies for those on tiny monitors, the text will be very difficult to read (I make the font bigger about 2.5 minutes in). Also sorry for pauses and random scene switches, I was trying to figure out how to work the recording software and code and talk at the same time... too many things at once. Watch at max quality (1440p) if you want to be able to read the code. Source code: import org.osbot.rs07.api.model.Entity; import org.osbot.rs07.api.ui.Skill; import org.osbot.rs07.script.Script; import org.osbot.rs07.script.ScriptManifest; import org.osbot.rs07.utility.ConditionalSleep; import java.util.Arrays; @ScriptManifest(author = "eliot", info = "", logo = "", version = 1.0, name = "A GOOD SCRIPT") public class Main extends Script { private String[] actions = {"Climb", "Cross", "Balance", "Jump-up", "Jump", "Climb-down"}; private String[] names = {"Rough wall", "Tightrope", "Narrow wall", "Wall", "Gap", "Crate"}; Entity previous; @Override public void onStart() { getExperienceTracker().start(Skill.AGILITY); } @Override public int onLoop() throws InterruptedException { int starting = getExperienceTracker().getGainedXP(Skill.AGILITY); Entity nextObj = getObjects().closest(obj -> Arrays.asList(names).contains(obj.getName()) && Arrays.asList(actions).contains(obj.getActions()[0]) && (getMap().canReach(obj) || obj.getName().equals("Crate")) && !obj.equals(previous)); if (nextObj != null && !myPlayer().isMoving()) { if (nextObj.interact(nextObj.getActions()[0])) { new ConditionalSleep(10000) { @Override public boolean condition() throws InterruptedException { return getExperienceTracker().getGainedXP(Skill.AGILITY) > starting; } }.sleep(); } if (getExperienceTracker().getGainedXP(Skill.AGILITY) > starting) { previous = nextObj; } } return 250; } }
    1 point
×
×
  • Create New...