import org.powerbot.core.script.ActiveScript; import org.powerbot.game.api.Manifest; import org.powerbot.game.api.methods.Walking; import org.powerbot.game.api.methods.interactive.Players; @Manifest(authors = "Roflgod", description = "", name = "Example") public class Example extends ActiveScript { @Override public int loop() { Walking.walk(Players.getLocal().getLocation().derive(0, 10)); return -1; } }