Jump to content

Michaud.retard

Members
  • Posts

    5
  • Joined

  • Last visited

  • Days Won

    2

Posts posted by Michaud.retard

  1. 30 minutes ago, n8820i said:

    1) Which one do most player use Injection bot or Reflection bot?

    Thank You

    People most likely use injection. Reflection is I believe, is still getting work on but is "reliable". We need to test it out and report any encounter bugs.
    Hope that answer your question! Feel free to join the discord to get faster reply.

  2. Woodcutting.retard is still under work and will support other location. For the moment it will chop oak tree to the south east of the grand exchange.
    Currently support axe in the inventory and a banking system.

    Thank you @Pseudo for your handleCalculation() function.

    Feel free to download the zip file and extract the folder to your epicbot location or compile the source code.

    Source code:

    import com.epicbot.api.shared.APIContext;
    import com.epicbot.api.shared.GameType;
    import com.epicbot.api.shared.entity.SceneObject;
    import com.epicbot.api.shared.model.Area;
    import com.epicbot.api.shared.model.Skill;
    import com.epicbot.api.shared.model.Tile;
    import com.epicbot.api.shared.util.paint.frame.PaintFrame;
    import com.epicbot.api.shared.script.LoopScript;
    import com.epicbot.api.shared.script.ScriptManifest;
    import com.epicbot.api.shared.util.time.Time;
    import com.epicbot.api.shared.util.time.Timer;
    
    import java.awt.*;
    
    
    @ScriptManifest(name = "Woodcutting.retard", gameType = GameType.OS)
    public class main extends LoopScript {
    
        private long startTime;
        private int experienceGained, startExperience = 0;
        private final Timer experienceTimer = new Timer(5_000);
        private final Area BANK_AREA = new Area(new Tile(3165, 3486, 0), new Tile(3170, 3492, 0));
        private final Area OAK_AREA = new Area(new Tile(3188, 3465, 0), new Tile(3197,3458,0));
    
        @Override
        public boolean onStart(String... strings) {
            startTime = System.currentTimeMillis();
            return true;
        }
    
        @Override
        protected int loop() {
            if (getAPIContext().inventory().isFull()) {
                bank();
            } else {
                handleCalculations();
                chop();
            }
            return 0;
        }
    
        public void bank() {
            if (!BANK_AREA.contains(getAPIContext().localPlayer().getLocation())) {
                getAPIContext().walking().walkTo(BANK_AREA.getCentralTile());
                System.out.println("Walking to bank");
                Time.sleep(10_000);
    
            } else if (BANK_AREA.contains(getAPIContext().localPlayer().getLocation())) {
                if (!getAPIContext().bank().isOpen()) {
                    System.out.println("Trying to open bank");
                    getAPIContext().bank().open();
                    Time.sleep(5_000, () -> getAPIContext().bank().isOpen());
                }
    
                if (getAPIContext().bank().isOpen()) {
                    System.out.println("Bank is open");
                    getAPIContext().bank().depositAllExcept("Bronze axe", "Iron axe", "Steel axe", "Black axe", "Mithril axe", "Adamant axe", "Rune axe", "Gilded axe", "Dragon axe", "3rd age axe", "Infernal axe", "Crystal axe");
                    System.out.println("Closing bank");
                    getAPIContext().bank().close();
                }
            }
        }
    
        public void chop() {
            if (!OAK_AREA.contains(getAPIContext().localPlayer().getLocation())) {
                System.out.println("Walking to oak area");
                getAPIContext().walking().walkTo(OAK_AREA.getCentralTile());
                Time.sleep(6_000);
            } else if (!this.isChopping()) {
                SceneObject tree = getAPIContext().objects().query().nameContains(new String[]{"Oak"}).results().nearest();
                if (tree != null && tree.interact()) {
                    System.out.println("Chopping");
                    Time.sleep(5_000, () -> getAPIContext().localPlayer().isAnimating());
                }
            }
        }
    
        public boolean isChopping() {
            return getAPIContext().localPlayer().isAnimating() || getAPIContext().localPlayer().isMoving();
        }
    
    
        // Credit to Pseudo for this function.
        private void handleCalculations() {
            if (startExperience == 0) {
                startExperience = getAPIContext().skills().get(Skill.Skills.WOODCUTTING).getExperience();
            } else {
                if (!experienceTimer.isRunning()) {
                    experienceGained = getAPIContext().skills().get(Skill.Skills.WOODCUTTING).getExperience() - startExperience;
                    experienceTimer.reset();
                }
            }
        }
    
        private int getExperienceGainedString() {
            return experienceGained;
        }
    
        @Override
        protected void onPaint(Graphics2D g, APIContext ctx) {
            PaintFrame pf = new PaintFrame();
            pf.setTitle("Script by Michaud.retard");
            pf.addLine("Runtime: ", Time.getFormattedRuntime(startTime));
            pf.addLine("Experience Gain: ",getExperienceGainedString());
            pf.draw(g, 4, 110, ctx);
        }
    }

    Since i'm mainly botting on runescape 3 the support of other location will be push back.

     

    Woodcutting.retard.zip

    • Like 1
×
×
  • Create New...