FridayNightFunkinBoyfriendBot/src/modules/position.js
Parker2991 572e09989c v6.1.3, build: 1210, 12/06/24
refratured the core.

fixed reconnect spam.

added coresettings so that the core can be configured via command.

added team selfcare.
2024-12-06 11:04:23 -05:00

20 lines
510 B
JavaScript

function position (context) {
const bot = context.bot;
bot.position = null;
bot.on('packet.position', packet => {
bot.position = {
x: packet.flags & 1 ? (this.x + packet.x) : packet.x,
y: packet.flags & 2 ? (this.y + packet.y) : packet.y,
z: packet.flags & 4 ? (this.z + packet.z) : packet.z
};
bot._client.write('teleport_confirm', { teleportId: packet.teleportId })
bot.emit('move')
})
bot.on('end', () => { bot.position = null })
}
module.exports = position