Initial commit

This commit is contained in:
2019-03-16 14:48:09 +11:00
commit 5dd1619545
32 changed files with 1757 additions and 0 deletions

18
commands/restart.js Normal file
View File

@@ -0,0 +1,18 @@
exports.name = 'Restart'
exports.alias = ['restart']
exports.helptext = 'Restart DAdmin'
exports.helphide = true
exports.permissions = ['READ_MESSAGES']
exports.category = 'admin'
exports.command = (client, msg) => {
var r = "220772082055774210";
if (msg.member.id == r) {
msg.react("✅");
msg.reply("Shutting Down.. 😭");
setTimeout(function () {
process.exit(22);
}, 1000);
} else {
msg.react("❌");
}
}