here is what i have so far.
package Woodcutter;
import java.awt.Graphics;
import org.osbot.rs07.api.Inventory;
import org.osbot.rs07.script.MethodProvider;
import org.osbot.rs07.script.Script;
import org.osbot.rs07.script.ScriptManifest;
@ScriptManifest(author = "", info = "", logo = "", name = "Woodcutter", version = 0.1)
public class Woodcutter extends Script{
public void onStart(){
}
//Code to be Excecuted at the end
public void onExit(){
} //Code to loop the Seconds
public int onLoop(){
Inventory inven = client.getInventroy();
if(!inven.isFull()){
}else {
}
return 50;
}
//Paint
public void onPaint(Graphics g){
}
}
but like i said the inventory needs to be defined in a form i think or it tells me to add a cast to it.