LookAtMySuitBot/js/node_modules/mineflayer/examples/modular_mineflayer/modules/hello.js

14 lines
315 B
JavaScript
Raw Normal View History

2023-12-24 20:08:39 -05:00
const mineflayer = require('mineflayer') // eslint-disable-line
/**
* @param {mineflayer.Bot} bot // to enable intellisense
*/
module.exports = bot => {
bot.addChatPattern('hello', /<(.+)> (?:Hello|hello)/, { parse: true })
bot.on('chat:hello', ([[playerIgn]]) => {
bot.chat(`Hi, ${playerIgn}`)
})
}