This commit is contained in:
2025-05-04 19:22:31 -04:00
parent ddc6f2d167
commit 7c26d2f0a3
15 changed files with 958 additions and 318 deletions

View File

@ -101,6 +101,23 @@ module.exports = {
this.whisper(from, '?')
}
},
'come': {
desc: `make bot come to you`,
allowed: ['wmantly', 'useless666', 'tux4242'],
async function(from, playerName){
const player = this.bot.players[playerName || from];
if (!player || !player.entity) {
this.whisper(from, `I can't see ${player}.`);
return;
}
this.whisper(from, `Going to ${player}`);
this.goTo({where: player.entity.position});
}
},
'logon': {
desc: `Have bot log on for 10 seconds'`,