Welcome!

By registering with us, you'll be able to discuss, share and private message with other members of our community.

Sign up now!
RuneMate will permanently shut down on August 7, 2026
due to events outside our control. You can continue using RuneMate until this date after which it will no longer be available. Thank you to everyone that contributed to RuneMate's success and to the community for the opportunity to serve you all these years.

  • Learn about RuneMate Vault and how its zero knowledge local encryption already protects your sensitive information.
  • Edit or delete your RuneMate account from your Account Settings.
  • All account upgrade subscriptions have been cancelled. No action required.

Option to pick up Agonic orts

Joined
Nov 3, 2013
Messages
2,387
Speaks for itself I think.

Agonic arts are things that randomly appear under you, you use these on the clan ava for bonus exp.

RS3
 
Joined
Jan 27, 2015
Messages
1,557
Pretty useless if you wanna go full efficient. That was at least from my experience on 2x exp weekend.
 
Conelander
Joined
Oct 30, 2014
Messages
4,078
Code:
package productions.celestial.api.defaultoperations;

import com.runemate.game.api.hybrid.entities.GroundItem;
import com.runemate.game.api.hybrid.local.Camera;
import com.runemate.game.api.hybrid.location.navigation.Path;
import com.runemate.game.api.hybrid.location.navigation.basic.BresenhamPath;
import com.runemate.game.api.hybrid.region.GroundItems;
import com.runemate.game.api.hybrid.region.Players;
import com.runemate.game.api.script.Execution;
import com.runemate.game.api.script.framework.task.Task;

public class TakeAnagogicOrt extends Task {
  
    private GroundItem ort = null;
  
    @Override
    public void execute() {
        if (ort.isVisible()) {
            if (ort.interact("Take", "Anagogic ort")) {
                if (Execution.delayUntil(() -> Players.getLocal().isMoving(), 750)) {
                    Execution.delayUntil(() -> !Players.getLocal().isMoving(), 2000);
                }
            } else {
                Camera.passivelyTurnTo(ort);
            }
        } else {
            final Path p = BresenhamPath.buildTo(ort);
            if (p != null && p.step(true)) {
                Camera.passivelyTurnTo(ort);
                Execution.delayUntil(() -> ort != null && ort.isVisible(), 2000);
            }
        }
    }

    @Override
    public boolean validate() {
        if (!Players.getLocal().isMoving()) {
            ort = GroundItems.newQuery().names("Anagogic ort").actions("Take").reachable().results().first();
        }
        return ort != null;
    }
  
}

For le bot writers.
 
Top