I give you guys a lot of credit, this scripting shit isn't for the faint of heart. I've been reading different tutorials, watching videos etc and all I've come up with so far is this:
package oaklarders;
import org.osbot.rs07.script.Script;
import org.osbot.rs07.script.ScriptManifest;
// Start script lvl 33 Construction
@ScriptManifest(author = "Imthabawse", info = "Oaklarder Builder", logo = "", name = "Oaklarders", version = 0)
public class Oaklarders extends Script {
@Override
public void onStart() {
log("Sit back and relax");
}
@Override
public int onLoop() throws InterruptedException {
return random(200, 300);
}
@Override
public void onExit() {
log("Thank's for using Oaklardersv1");
}
// Make bot build and remove larders
// Make bot interact with butler to unote planks
// Make bot call servant if needed
// Add humanlike behavior sleeps etc
}
To say the least I'm very new to this but I'm eager to learn from all the amazing scripters on Osbot and add to the community.