Baritone AI pathfinder

Baritone AI pathfinder

72.7k Downloads

Parameter to limit Y level for automine (Non legit)

muniategui opened this issue ยท 8 comments

commented

Describe your suggestion

I would like a parameter to limit Y level for example MaximumMineYLevel 50 will allow baritone only to mine on level 51 and above.

Settings

MaximumMineYLevel

Context

The request is done in order to bypass some Xray which places fake blocks in deeper Y levels and with that setting Baritone would be able to avoid them while Xray mining is performed.

commented

Now 1.17.1 has Y0, how to import minerals below - 60, only dig minerals below 0

commented

Bruh, this issue was for max, not min

commented

so then what happened with this request?

commented

the wrong thing was added

commented

yeah and when are you guys planing to implement it I dont know the code but I think its fairly simple?

commented

it will be implemented once it is added to Baritone

commented

On

.filter(pos -> pos.getY() >= Baritone.settings().minYLevelWhileMining.value)

is this:
.filter(pos -> pos.getY() >= Baritone.settings().minYLevelWhileMining.value)
and when you add this:
.filter(pos -> pos.getY() <= Baritone.settings().maxYLevelWhileMining.value)

and the commands to adjust it + the settings() section it would work right?

commented

I will try to fork it and implement it