lbry-wunderbot/bot/modules/reminder.js
Fillerino 288e166f20 Uploaded the main code!
Uploaded the main sourcecode and some unfinished commands!
2017-10-25 21:31:42 +02:00

21 lines
583 B
JavaScript

/*exports.commands = [
"remind" // command that is in this file, every command needs it own export as shown below
]
exports.custom = [
"checkReminders"
]
exports.remind = {
usage: "<time> <message>",
description: 'description of command',
process: async function(bot,msg,suffix){
console.log(suffix);
// Here the bot,msg and suffix is avaible, this function can be async if needed.
}
}
exports.checkReminders = function(bot) {
// Other functions that needs to be ran once on bootup!
// For example a timed function and or some init stuff..
}*/