to-do list
This commit is contained in:
parent
c7bffe926f
commit
d4b00b9522
7 changed files with 147 additions and 0 deletions
21
bot/commands/Configuration/autorole.js
Normal file
21
bot/commands/Configuration/autorole.js
Normal file
|
@ -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) {
|
||||
|
||||
}
|
||||
};
|
21
bot/commands/Configuration/disable.js
Normal file
21
bot/commands/Configuration/disable.js
Normal file
|
@ -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) {
|
||||
|
||||
}
|
||||
};
|
21
bot/commands/Configuration/enable.js
Normal file
21
bot/commands/Configuration/enable.js
Normal file
|
@ -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) {
|
||||
|
||||
}
|
||||
};
|
21
bot/commands/Configuration/farewell.js
Normal file
21
bot/commands/Configuration/farewell.js
Normal file
|
@ -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) {
|
||||
|
||||
}
|
||||
};
|
21
bot/commands/Configuration/prefix.js
Normal file
21
bot/commands/Configuration/prefix.js
Normal file
|
@ -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) {
|
||||
|
||||
}
|
||||
};
|
21
bot/commands/Configuration/starboard.js
Normal file
21
bot/commands/Configuration/starboard.js
Normal file
|
@ -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) {
|
||||
|
||||
}
|
||||
};
|
21
bot/commands/Configuration/welcome.js
Normal file
21
bot/commands/Configuration/welcome.js
Normal file
|
@ -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) {
|
||||
|
||||
}
|
||||
};
|
Loading…
Reference in a new issue