why are you importing java.awt.*
i have used osbot for about 3 hours now and I have managed to make a fish->bank bot.. it's super simple..
your area is an array not really sure what you are doing there but the area should be:
final Area MYAREA = new Area(x1,x2, x2,y2); <- this is the 2-dimensional square area, this is the grid
the areas are 2d there is no Z-axis for an area, that would be for a Position
also take a look at
import org.osbot.rs07.api.map.constants.Banks
has some very useful default locations such as GRAND_EXCHANGE or LUMBRIDGE_UPPER for bank etc
then literally all you need to do is webwalk to a position.. so if(MYAREA.contains(myPosition())), then you want to
getWalking().webWalk(Banks.LUMBRIDGE_UPPER);
for example. I don't believe you can walk to an "area" try walking to a position, which is
import org.osbot.rs07.api.map.Position;