0.14.1 • Published 3 years ago

rolly.dc v0.14.1

Weekly downloads
-
License
MIT
Repository
-
Last release
3 years ago
npm install rolly.dc
const Rolly = require("rolly.dc");

var bot = new Rolly("BOT_TOKEN");
// Replace BOT_TOKEN with your bot account's token

bot.on("ready", () => { // When the bot is ready
    console.log("Ready!"); // Log "Ready!"
});

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
0.14.1

3 years ago

0.14.0

3 years ago