Jump to content

Eliot

$100.00 Donor
  • Posts

    4523
  • Joined

  • Last visited

  • Days Won

    10
  • Feedback

    100%

Posts posted by Eliot

  1. 2 hours ago, Athylus said:

    Cool, thanks! Can you elaborate on this line?

    
    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));

    Why .contains(obj.getActions()[0])? Why the [0], that's got me stuck. What is it's purpose here?

    An object has some set of actions, for example: ["Jump-up", "Walk here", "Examine"]. For agility, we always want to do the first interaction which in most programming languages is the 0 element. So I check my list of actions contains the first action in the object's list of actions, if it does, then I know it is an agility obstacle and I should interact with it.

    • Like 1
  2. Hi, American here. I've lived in five different states and I have never seen a firearm in public aside from those being carried by police or military personnel. Foreigners have misinformed views of American gun culture due to sensationalization of gun violence in American and international media.

    I believe there are steps that can be taken to reduce the occurrence of mass shooting incidences by making changes to both law and culture. I don't think it makes sense to take a polarizing view of the issue. Joining the "change nothing" camp or the "ban guns" camp does little to help reduce the rate of violent crimes. There are more guns in America than people, hopefully we will become better at keeping them in the hands of good people and out of the hands of bad people, but that's a problem that lacks a perfect solution.

    • Like 1
  3. Open Minnows
    One-click fishing training

    What is it?
    This script will catch you minnows!

    Features

    • Fishes minnows in the expanded fishing guild
    • Avoids & moves away from the fishing spot that eat your minnows
    • Open source

    Requirements

    • Small fishing net
    • 82+ fishing
    • Angler's outfit

    More Details
    Start the script on the expanded fishing guild platform with the required items.

    Code
     

    import org.osbot.rs07.api.filter.Filter;
    import org.osbot.rs07.api.model.Entity;
    import org.osbot.rs07.api.model.NPC;
    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.awt.*;
    
    @ScriptManifest(name = "Open Minnows", version = 1.0, author = "Eliot", info = "Fish minnows", logo = "")
    public class MainDriver extends Script {
      private long startTime;
      private ConditionalSleep flyingFishCS;
      private ConditionalSleep interactingCS;
      private ConditionalSleep runningCS;
    
      // Paint constants
      private final Color transBackground = new Color(0, 0, 0, 178);
      private final Color rsOrange = new Color(252, 155, 31);
      private final Font font = new Font("Helvetica", Font.PLAIN, 12);
    
      @Override
      public void onStart() {
        startTime = System.currentTimeMillis();
        getExperienceTracker().start(Skill.FISHING);
        flyingFishCS = new ConditionalSleep(1500) {
          @Override
          public boolean condition() throws InterruptedException {
            return myPlayer().getInteracting() != null &&
                myPlayer().getInteracting().getModelHeight() > 9;
          }
        };
        interactingCS = new ConditionalSleep(5000) {
          @Override
          public boolean condition() throws InterruptedException {
            return myPlayer().getInteracting() != null;
          }
        };
        runningCS = new ConditionalSleep(3000) {
          @Override
          public boolean condition() throws InterruptedException {
            return getSettings().isRunning();
          }
        };
      }
    
      @Override
      public int onLoop() throws InterruptedException {
        if ((myPlayer().getInteracting() == null && !myPlayer().isMoving()) ||
            (myPlayer().getInteracting() != null && myPlayer().getInteracting().getHeight() > 9) ||
            getDialogues().isPendingContinuation()) {
          flyingFishCS.sleep();
          if (!getSettings().isRunning() && getSettings().getRunEnergy() > 30) {
            getSettings().setRunning(true);
            runningCS.sleep();
          } else {
            Entity fishingSpot = getNpcs().closest((Filter<NPC>) npc -> npc.getName().equals("Fishing spot") &&
                npc.getModelHeight() < 10);
            if (fishingSpot != null) {
              fishingSpot.interact("Small Net");
              interactingCS.sleep();
            }
          }
        }
        return random(50, 200);
      }
    
      @Override
      public void onPaint(Graphics2D g) {
        // Set the font
        g.setFont(font);
    
        // Transparent box, holds paint strings
        g.setColor(transBackground);
        g.fillRect(1, 250, 225, 88);
    
        // Outside of transparent box
        g.setColor(rsOrange);
        g.drawRect(1, 250, 225, 88);
    
        // Draw paint info
        g.drawString("Open Minnows by Eliot", 10, 265);
        g.drawString("Runtime: " + formatTime(System.currentTimeMillis() - startTime), 10, 285);
        g.drawString("Fishing XP (p/h): " + getExperienceTracker().getGainedXP(Skill.FISHING) + " (" +
            getExperienceTracker().getGainedXPPerHour(Skill.FISHING) + ")", 10, 300);
        g.drawString("Fishing Level: " + getSkills().getStatic(Skill.FISHING) + " (" +
            getExperienceTracker().getGainedLevels(Skill.FISHING) + ")", 10, 315);
        g.drawString("Time to level: " + formatTime(getExperienceTracker().getTimeToLevel(Skill.FISHING)), 10, 330);
      }
    
      /**
       * Formats the runtime into human readable form
       *
       * @param time
       * @return string representing the runtime of the script
       */
      private String formatTime(final long time) {
        long s = time / 1000, m = s / 60, h = m / 60;
        s %= 60;
        m %= 60;
        h %= 24;
        return String.format("%02d:%02d:%02d", h, m, s);
      }
    }

    Download
    https://nofile.io/f/N3FPNxyq87J/PowerMinnows.jar

    • Like 8
    • Mald 1
  4. Need quotes for this, about 10.7M exp needed.

    Leave price and time frame. No botting, reputation required.

     

    Has 70 atk, 70 def, and 70 prayer so can DH if wanted.

×
×
  • Create New...