Вы слушаете событие у bot'а на message ещё до того, как бот инициализирован методом .login('token'). Более того, внутри события message вы слушаете ready у какого-то client, которого вообще в коде нет. Вы головой то подумайте, что куда пишите. Если не хватает знаний - начните с чего нибудь попроще, а не с подписки на асинхронные события.
Полностью рабочий код есть на главной странице
discord.js и
в документации:
/**
* A ping pong bot, whenever you send "ping", it replies "pong".
*/
// Import the discord.js module
const Discord = require('discord.js');
// Create an instance of a Discord client
const client = new Discord.Client();
/**
* The ready event is vital, it means that only _after_ this will your bot start reacting to information
* received from Discord
*/
client.on('ready', () => {
console.log('I am ready!');
});
// Create an event listener for messages
client.on('message', message => {
// If the message is "ping"
if (message.content === 'ping') {
// Send "pong" to the same channel
message.channel.send('pong');
}
});
// Log our bot in using the token from https://discordapp.com/developers/applications/me
client.login('your token here');