For example: Mysterious ruins, Body rune, Banker, Bank stall; etc.
Probably make a different bot there's already a body runecrafter on the SDN... Stark just needs to update it.
Probably make a thieving script for seed stalls.
Much thanks.
package cheefseedstallin;
import java.lang.Thread.State;
import org.osbot.script.Script;
import org.osbot.script.ScriptManifest;
import org.osbot.script.rs2.map.Position;
@ScriptManifest(author = "Cheef", info = "Steals seeds from the stalls in Draynor Village. Set-up in bank", name = "Cheef's Seed Stallin'", version = 0.1)
public class CheefSeedStallin extends Script{
enum state {
BANKING, WALK, ROBBING, IDLE, EATING, OPENBANK
}
STATE state = State.WALK;
Position bankp = new Position(3091, 3245, 0);
Position stallp = new Position(3079, 3054, 0);
Position HalfwayTo = new Position(3087, 3248, 0);
Position HalfwayTo2 = new Position(3086, 3249, 0);
int bankerId = 567;
int lobsterId = 379;
int X = 0;
int Y= 0;
int stallId = 7053;
int amout = 12;
public void onStart(){
X = client.getMyPlayer().getX();
Y = client.getMyPlayer().getY();
log("Welcome. Time to start Stallin'");
startlevel = Client.getSkills().getLevel(Skills.THIEVING);
}
}
Can someone help?
I am I doing it right or do I need to scrap the whole thing?
Thanks in advanced.
edit: I just started the script, but I would like to know if I'm on the right track.
Forgot to show what I want the features to be; to eat, run from combat, steal from the seed stall, bank for food, walk back from Lumby.