mineflayer-snippets icon indicating copy to clipboard operation
mineflayer-snippets copied to clipboard

A collection of snippets for Mineflayer

mineflayer-snippets

A collection of snippets for Mineflayer

How do I

Use a trapdoor

let trapdoor = bot.registry.blocksByName['oak_trapdoor'].id
let block = bot.findBlock({ trapdoor })
if(!block) return console.log('There is no trapdoor to use!')
bot.activateBlock(block)