- Rubble#0001
- Katılım
- 1 Nis 2023
- Mesajlar
- 1
- Tepkime puanı
- 0
- Şehir
- Ankara
Discord botumda hata alıyorum ne yapsam bu kod hatasını çözemedim yardımcı olabilirmisiniz??
Kod:
Hata:
Kod:
JavaScript:
const { Client, GatewayIntents } = require('discord.js');
const client = new Client({
intents: [
GatewayIntents.Guilds,
GatewayIntents.GuildMessages,
],
});
// =============== //
client.on('messageCreate', (message) => {
if (message.content === 'am?') {
message.reply({
content: `Kısmen Evet`,
allowedMentions: { repliedUser: true },
});
}
});
// =============== //
client.on('ready', () => {
console.log(`Bot başlatıldı: ${client.user.tag}!`);
client.user.setActivity('your status message', { type: 'WATCHING' })
.then(presence => console.log(`Activity set to ${presence.activities[0].name}`))
.catch(console.error);
});
client.login('TOKEN');
Hata:
Son düzenleme: