From d4b00b9522e2504efb8ff4ece0ad2ddfc438edd9 Mon Sep 17 00:00:00 2001 From: Emily J Date: Fri, 23 Oct 2020 19:11:14 +1100 Subject: [PATCH] to-do list --- bot/commands/Configuration/autorole.js | 21 +++++++++++++++++++++ bot/commands/Configuration/disable.js | 21 +++++++++++++++++++++ bot/commands/Configuration/enable.js | 21 +++++++++++++++++++++ bot/commands/Configuration/farewell.js | 21 +++++++++++++++++++++ bot/commands/Configuration/prefix.js | 21 +++++++++++++++++++++ bot/commands/Configuration/starboard.js | 21 +++++++++++++++++++++ bot/commands/Configuration/welcome.js | 21 +++++++++++++++++++++ 7 files changed, 147 insertions(+) create mode 100644 bot/commands/Configuration/autorole.js create mode 100644 bot/commands/Configuration/disable.js create mode 100644 bot/commands/Configuration/enable.js create mode 100644 bot/commands/Configuration/farewell.js create mode 100644 bot/commands/Configuration/prefix.js create mode 100644 bot/commands/Configuration/starboard.js create mode 100644 bot/commands/Configuration/welcome.js diff --git a/bot/commands/Configuration/autorole.js b/bot/commands/Configuration/autorole.js new file mode 100644 index 0000000..6c1edd5 --- /dev/null +++ b/bot/commands/Configuration/autorole.js @@ -0,0 +1,21 @@ +module.exports = class { + constructor (name, category) { + this.name = name, + this.category = category, + this.enabled = true, + this.devOnly = false, + this.aliases = [], + this.userPerms = [], + this.botPerms = [], + this.cooldown = 2000, + this.help = { + description: 'description', + usage: 'usage', + examples: 'examples' + }; + } + + run (client, message, args, data) { + + } +}; \ No newline at end of file diff --git a/bot/commands/Configuration/disable.js b/bot/commands/Configuration/disable.js new file mode 100644 index 0000000..6c1edd5 --- /dev/null +++ b/bot/commands/Configuration/disable.js @@ -0,0 +1,21 @@ +module.exports = class { + constructor (name, category) { + this.name = name, + this.category = category, + this.enabled = true, + this.devOnly = false, + this.aliases = [], + this.userPerms = [], + this.botPerms = [], + this.cooldown = 2000, + this.help = { + description: 'description', + usage: 'usage', + examples: 'examples' + }; + } + + run (client, message, args, data) { + + } +}; \ No newline at end of file diff --git a/bot/commands/Configuration/enable.js b/bot/commands/Configuration/enable.js new file mode 100644 index 0000000..6c1edd5 --- /dev/null +++ b/bot/commands/Configuration/enable.js @@ -0,0 +1,21 @@ +module.exports = class { + constructor (name, category) { + this.name = name, + this.category = category, + this.enabled = true, + this.devOnly = false, + this.aliases = [], + this.userPerms = [], + this.botPerms = [], + this.cooldown = 2000, + this.help = { + description: 'description', + usage: 'usage', + examples: 'examples' + }; + } + + run (client, message, args, data) { + + } +}; \ No newline at end of file diff --git a/bot/commands/Configuration/farewell.js b/bot/commands/Configuration/farewell.js new file mode 100644 index 0000000..6c1edd5 --- /dev/null +++ b/bot/commands/Configuration/farewell.js @@ -0,0 +1,21 @@ +module.exports = class { + constructor (name, category) { + this.name = name, + this.category = category, + this.enabled = true, + this.devOnly = false, + this.aliases = [], + this.userPerms = [], + this.botPerms = [], + this.cooldown = 2000, + this.help = { + description: 'description', + usage: 'usage', + examples: 'examples' + }; + } + + run (client, message, args, data) { + + } +}; \ No newline at end of file diff --git a/bot/commands/Configuration/prefix.js b/bot/commands/Configuration/prefix.js new file mode 100644 index 0000000..6c1edd5 --- /dev/null +++ b/bot/commands/Configuration/prefix.js @@ -0,0 +1,21 @@ +module.exports = class { + constructor (name, category) { + this.name = name, + this.category = category, + this.enabled = true, + this.devOnly = false, + this.aliases = [], + this.userPerms = [], + this.botPerms = [], + this.cooldown = 2000, + this.help = { + description: 'description', + usage: 'usage', + examples: 'examples' + }; + } + + run (client, message, args, data) { + + } +}; \ No newline at end of file diff --git a/bot/commands/Configuration/starboard.js b/bot/commands/Configuration/starboard.js new file mode 100644 index 0000000..6c1edd5 --- /dev/null +++ b/bot/commands/Configuration/starboard.js @@ -0,0 +1,21 @@ +module.exports = class { + constructor (name, category) { + this.name = name, + this.category = category, + this.enabled = true, + this.devOnly = false, + this.aliases = [], + this.userPerms = [], + this.botPerms = [], + this.cooldown = 2000, + this.help = { + description: 'description', + usage: 'usage', + examples: 'examples' + }; + } + + run (client, message, args, data) { + + } +}; \ No newline at end of file diff --git a/bot/commands/Configuration/welcome.js b/bot/commands/Configuration/welcome.js new file mode 100644 index 0000000..6c1edd5 --- /dev/null +++ b/bot/commands/Configuration/welcome.js @@ -0,0 +1,21 @@ +module.exports = class { + constructor (name, category) { + this.name = name, + this.category = category, + this.enabled = true, + this.devOnly = false, + this.aliases = [], + this.userPerms = [], + this.botPerms = [], + this.cooldown = 2000, + this.help = { + description: 'description', + usage: 'usage', + examples: 'examples' + }; + } + + run (client, message, args, data) { + + } +}; \ No newline at end of file