FNFGirlfriendBot/ChomensJS/plugins/position.js
2024-02-20 17:04:49 +00:00

11 lines
278 B
JavaScript

function inject (bot) {
bot.position = { x: 0, y: 0, z: 0 }
bot._client.on('position', (position) => {
bot.position = position
bot.write('teleport_confirm', { teleportId: position.teleportId })
bot.emit('position', position)
})
}
module.exports = { inject }