Karang

Results 49 comments of Karang

I made an example of what the json could look like some time ago: ``` const moves = [ { // forward prerequists: [ { delta: [1, 0, 0], condition:...

That's the global idea. I'm not sure that sprint should be an action, because it doesn't make sense to sprint only on small distances, I see it more like a...

yes delta can represent a destination, but also a block position (to break or place)

Yes, we can deduce the move delta from the actions. Do you want to start something in a PR ? Would be easier to talk with concrete examples and start...

The reason is to not confuse the astar algorithm. It search to minimise the cost function f=g+h with the idea that each move increase g by the cost of the...

Hi, thanks for your suggestions :) The tool selection is partially implemented here https://github.com/Karang/mineflayer-pathfinder/blob/master/lib/movements.js#L71 but does not support enchants yet, it would be indeed a good feature to have. There...

> Also, support for callbacks or emmiting an event once the bot has arrived, like PrismarineJS/mineflayer-navigate does it, would be great There is already an event emitted when the goal...

Renaming into "Feature for replacing the broken block with the same block" as all other requests have been implemented.

That's likely an issue with the collectblock plugin. pathfinder provides many way to check that the path is obstructed, the plugin should use them.

That could be a bug with the physic simulation. The path plan to jump over lava but the simulation find that it can swim and reach the other side. Could...