Text Practice Mode
discord.js
created Mar 22nd 2021, 09:44 by Snowflake107
4
32 words
99 completed
4
Rating visible after 3 or more votes
saving score / loading statistics ...
00:00
const Discord = require("discord.js");
const client = new Discord.Client();
client.once("ready", () => {
console.log("Bot is online");
});
client.on("message", message => {
if (message.author.bot) return;
if (message.content.startsWith("!ping")) {
return message.channel.send("Pong!");
}
});
client.login(process.env.DISCORD_TOKEN);
const client = new Discord.Client();
client.once("ready", () => {
console.log("Bot is online");
});
client.on("message", message => {
if (message.author.bot) return;
if (message.content.startsWith("!ping")) {
return message.channel.send("Pong!");
}
});
client.login(process.env.DISCORD_TOKEN);
