busy-arm-75131
12/15/2022, 8:45 PMgentle-london-6993
12/15/2022, 8:45 PMbusy-arm-75131
12/15/2022, 8:46 PMjs
const Eris = require("eris");
// Replace TOKEN with your bot account's token
const bot = new Eris("Bot TOKEN", {
intents: [
"guildMessages"
]
});
bot.on("ready", () => { // When the bot is ready
console.log("Ready!"); // Log "Ready!"
});
bot.on("error", (err) => {
console.error(err); // or your preferred logger
});
bot.on("messageCreate", (msg) => { // When a message is created
if(msg.content === "!ping") { // If the message content is "!ping"
bot.createMessage(msg.channel.id, "Pong!");
// Send a message in the same channel with "Pong!"
} else if(msg.content === "!pong") { // Otherwise, if the message is "!pong"
bot.createMessage(msg.channel.id, "Ping!");
// Respond with "Ping!"
}
});
bot.connect(); // Get the bot to connect to Discord
busy-arm-75131
12/15/2022, 8:46 PMbusy-arm-75131
12/15/2022, 8:46 PMgentle-london-6993
12/15/2022, 8:47 PMbusy-arm-75131
12/15/2022, 8:47 PMbusy-arm-75131
12/15/2022, 8:47 PMbusy-arm-75131
12/15/2022, 8:47 PMrefined-painter-72344
12/15/2022, 8:49 PMrefined-painter-72344
12/15/2022, 8:50 PMrefined-painter-72344
12/15/2022, 8:50 PMbusy-arm-75131
12/15/2022, 8:53 PMbusy-arm-75131
12/15/2022, 8:53 PMbusy-arm-75131
12/15/2022, 8:53 PMbusy-arm-75131
12/15/2022, 8:54 PMwonderful-camera-91320
12/15/2022, 9:19 PMwonderful-camera-91320
12/15/2022, 9:19 PMwonderful-camera-91320
12/15/2022, 9:19 PMwonderful-camera-91320
12/15/2022, 9:19 PMwonderful-camera-91320
12/15/2022, 9:20 PMwonderful-camera-91320
12/15/2022, 9:20 PMadventurous-hair-36125
12/15/2022, 9:21 PMgentle-london-6993
12/15/2022, 9:23 PMmillions-knife-57333
12/15/2022, 9:23 PMbreezy-solstice-69394
12/15/2022, 9:24 PMbreezy-solstice-69394
12/15/2022, 9:24 PMbreezy-solstice-69394
12/15/2022, 9:28 PMgentle-london-6993
12/15/2022, 9:28 PMbreezy-solstice-69394
12/15/2022, 9:28 PMbreezy-solstice-69394
12/15/2022, 9:28 PM