Subtracting approximate supplies left and servicing completed on the account, @Darren owes a compensation of USD 36.91 or GP equivalent to @Dobrik if he wishes to return.
Sorry for the loss. Dispute closed.
@Darren Has failed to reply and has been banned.
@Dobrik Did Darren leave supplies on the account or no? If so how much in GP of supplies was is there?
I will attempt to contact the user on discord. They will have up to 48 hours to respond here.
@Dobrik Please confirm the work done on the account, starting level to the current level.
Like Khal said wouldn't recommend doing that in the onMessage. But an alternative to walk a tile that short of a distance you can also just directly interact with the tile
new Position(0, 0, 0).interact(getBot(), "Walk here");
Mhmm you could try this, maybe it will work?
java -Duser.home="C:\Users\Testing" -jar "osbot 2.6.53.jar"
Replace "Testing" with your desired window user.
And if you have one drive installed could also try uninstalling it, I know that has caused issues in the past.
Some shit like this I guess
private void mineRocks() {
final RS2Object mineRock = getRock(null);
final RS2Object hoverRock = getRock(mineRock);
}
private RS2Object getRock(final RS2Object ignoreRock) {
//Just add this condition to your filter to get the next rock basically
// r != ignoreRock
return getObjects().closest(r -> r.getId() == 0 && r != ignoreRock);
}