Jump to content

GE Walker [Script]


Lol_marcus

Recommended Posts

Hi all,

this is a very simple GE Walker/Runner for people who are:

  1. Too lazy to walk to the GE
  2. Fresh off of Tutorial Island and are still, too lazy to walk to the GE
  3. Have just died, gone to the bank, realized you have no runes or teleport tabs, and are way too lazy to walk to the GE

Features

  • Will turn off auto-retaliate (in case you're coming from Lumbridge as a fresh level 3 and are attacked by those pesky dark wizards)
  • Will turn on run if it's above 15
  • Uses Webwalking, which means it'll climb up/down stairs, open doors, and basically figure out the best way to the GE

Ideally you're not going to want to start this from the other side of the map. If that is the case for your character, you're better off teleporting to Lumbridge first and only then running the script.

Downloading the script

You can find the .jar download at the end of the post and add it to: C:\Users\*YOURUSERNAME*\OSBot\Scripts

or 

Source code

package core;

import org.osbot.rs07.api.map.constants.Banks;
import org.osbot.rs07.script.Script;
import org.osbot.rs07.script.ScriptManifest;


@ScriptManifest(name = "GE Walker", version = 1, author = "Marcus", logo = "", info = "Walks and runs to the GE")


public class Main extends Script {
	

    
    @Override
    public int onLoop() throws InterruptedException {

        if (Banks.GRAND_EXCHANGE.contains(myPosition())) {
        	stop(true);
        } else {
        	combat.toggleAutoRetaliate(false);
            getWalking().webWalk(Banks.GRAND_EXCHANGE);
        }
        return 700;
    }
}

Thanks and enjoy. Any feedback as well is more than welcome. :)

GE Walker.jar

Edited by Lol_marcus
Punctuation :)
Link to comment
Share on other sites

  • 4 weeks later...
  • 4 weeks later...
  • 4 months later...
  • 2 years later...

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.

Guest
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...