Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
PrismarineJS
GitHub Repository: PrismarineJS/mineflayer
Path: blob/master/examples/plugins/hello_world.js
9427 views
1
module.exports = (bot, { version }) => {
2
bot.once('spawn', () => console.log('hello world!'))
3
}
4
5