Replies: 1 comment 1 reply
-
Use mineflayer-pathfinder to walk to the edge of whatever platform you are dropping from, and then make it walk forward for a bit. You can use function wait(ms) {
return new Promise((resolve) => setTimeout(resolve, ms));
}
bot.setControlState("forward", true);
await wait(1000);
bot.setControlState("forward", false); Hope this helps! |
Beta Was this translation helpful? Give feedback.
1 reply
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
im making a bot for pvp server, and bot have to jump from 84 y to 5 y. How do i make my bot do it?
(fall damage is disabled)
Beta Was this translation helpful? Give feedback.
All reactions