14 lines
253 B
JavaScript
14 lines
253 B
JavaScript
module.exports = {
|
|
name: 'login',
|
|
description: 'Logs the bot in.',
|
|
type: 'mineflayer',
|
|
|
|
async execute() {
|
|
|
|
const bot = require ('../../index.js');
|
|
|
|
console.log('Logging in...');
|
|
bot.chat("/lobby bedwars")
|
|
|
|
}
|
|
} |