eng
competition

Text Practice Mode

discord.js

created Mar 22nd 2021, 09:44 by Snowflake107


4


Rating

32 words
99 completed
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);

saving score / loading statistics ...