viewing paste Unknown #26557 | Javascript

Posted on the
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24
var botCommands = [ // this is your standard command list. this is how your commands are stored.
    {
        command: "discord",
        description: "__INSERT !DISCORD RESPONSE HERE__",
        whisper: false, // flag to whisper response
        mod: false, // flag to only respond to mods
        me: false, // flag to only respond to derpy
    },
    {
        command: "minuette",
        description: "I am a Twitch Chat Bot.",
        whisper: true,
        mod: false,
        me: false,
    },
    {
        command: "twitter",
        description: "__INSERT !TWITTER RESPONSE HERE__",
        whisper: false,
        mod: false,
        me: true,
    }
];
module.exports.botCommands = botCommands;
Viewed 770 times, submitted by Guest.