chomens-bot-js/plugins/position.js

12 lines
278 B
JavaScript
Raw Normal View History

2022-11-27 02:35:28 -05:00
function inject (bot) {
2022-12-01 08:05:09 -05:00
bot.position = { x: 0, y: 0, z: 0 }
2022-08-14 05:51:45 -04:00
bot._client.on('position', (position) => {
2022-11-27 02:35:28 -05:00
bot.position = position
bot.write('teleport_confirm', { teleportId: position.teleportId })
bot.emit('position', position)
})
2022-08-14 05:51:45 -04:00
}
2022-11-27 02:35:28 -05:00
module.exports = { inject }