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.

OSRS Cow killer/hide looter

rob

Joined
Jun 24, 2014
Messages
238
That will also bank, leather sells for a decent amount.

Are there any bots that do this? Didn't read the aio killers as I think they're premium
 
Joined
Dec 17, 2014
Messages
836
That will also bank, leather sells for a decent amount.

Are there any bots that do this? Didn't read the aio killers as I think they're premium

Alpha Fighter does this but it can't open the gate.

@SlashnHax is a great coder so he could probably whip something up if he's free and you ask nicely.
 

rob

Joined
Jun 24, 2014
Messages
238
Alpha Fighter does this but it can't open the gate.

@SlashnHax is a great coder so he could probably whip something up if he's free and you ask nicely.
Making it open the gate doesn't sound so bad to fix o:?
 
Joined
Dec 17, 2014
Messages
836
Making it open the gate doesn't sound so bad to fix o:?

It's an Autofighter that uses predefined paths that runemate has made to most common banks. e.g in the case the lumbridge bank chest.

However a profile would have to be created with the appropriate settings and from this profile a fail safe can be made to check if the gate is open. It sound easy but is still a bit of work.
 
Joined
Nov 14, 2015
Messages
85
Nah its fairly easy... Here.
Add this line in then put in a check for gate into the onLoop
You'll have to change it slightly as its just copy n pasted from my flax bot.


Code:
    private boolean openGate() {
        GameObject gate = (GameObject)((LocatableEntityQueryResults)((GameObjectQueryBuilder)GameObjects.newQuery().names(new String[]{"Gate"}).filter(new Filter() {
            public boolean accepts(GameObject object) {
                return object != null && object.getDefinition().getActions().contains("Open") && CleryFlax.FLAX_AREA.contains(object);
            }
        })).results()).nearest();
        if(gate == null) {
            return false;
        } else {
            if(!gate.isVisible()) {
                Camera.turnTo(gate);
            }

            return gate.interact("Open");
        }
    }
 
Last edited:
Top