Welcome!

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

Sign up now!

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.
 
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