I've written this into a better structure using states. I commented everything so please take it and learn from it. Look up some java tutorials, and keep scripting.
import org.osbot.rs07.script.Script;
import org.osbot.rs07.api.map.Area;
import org.osbot.rs07.script.ScriptManifest;
import java.awt.*;
import org.osbot.rs07.api.model.NPC;
@ScriptManifest(name = "Fishing for States", author = "Redeems", version = 1.0, info = "", logo = "") //manifesto
public class Main extends Script {
private States currentState = States.FISHING; //setting starting state
private Area area = new Area(3109, 3434, 3103, 3423); // fishing area
public enum States {FISHING, DROPPING} //the two states
private void startfishing() throws InterruptedException { //function to run on loop
if (currentState == States.FISHING) { //if the state is "FISHING" then
NPC fishSpot = getNpcs().closest("Rod Fishing spot"); //get closest rod fishing spot
int openslots = (getInventory().getEmptySlotCount()); //variable for open inventory spots
if (!myPlayer().isAnimating()
&& !getInventory().isFull()
&& !myPlayer().isMoving()
&& fishSpot != null) { //conditions for action
log("Fishing.."); //log we've passed conditions
fishSpot.interact("Lure"); //interact with fishing spot (fish)
sleep(random(300, 600)); //sleep to give time to interact
getMouse().moveOutsideScreen(); //move mouse off screen "said to be good? i dont do this..."
if (openslots == 0) { //if no open inventory spaces....then
currentState = States.DROPPING; //switch state to dropping
}
}
} else if (currentState == States.DROPPING) { //if the state is dropping...
log("Inventory full dropping fish.."); //log that we are in this state and executing
getInventory().dropAllExcept("Feather","Fly fishing rod"); //drop everything besides feathers and rod
}
}
@Override
public void onStart() {
}
@Override
public void onExit() {
}
@Override
public int onLoop() {
if (!area.contains(myPlayer())) { // if the area doesnt contain yourself
log("Not in fishing area.. walking there."); //log that to be the case
getWalking().walk(area); //walk to fishing spot
} else { // otherwise....
if (area.contains(myPlayer())) { //if the area does include you
try { //try catch statement in case something goes wrong we have an exception.
if (myPlayer().isVisible()) { //something thats always true.
log("about to start fishing"); //log entering function
startfishing(); //enter function
}
} catch (InterruptedException e) { //catch
log("got interrupted!"); //useless exception.
}
}
}
return random(1000, 1500); //how fast we loop. not needed to be random, i like it just for fun.
}
@Override
public void onPaint (Graphics2D g) {
}
}