Skip to content

Commit

Permalink
Updated skeletons to allow the bot to run properly with the current c…
Browse files Browse the repository at this point in the history
…ommand handler
webster5361 committed Jul 17, 2017
1 parent 7d2111a commit 4e6816d
Showing 30 changed files with 990 additions and 0 deletions.
33 changes: 33 additions & 0 deletions commands/MessageMentions.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@
const settings = require('../settings.json');
exports.run = (client, message, params) => {
if (!params[0]) {
const docChannel = message.guild.channels.find("name", "documentation");
docChannel.send("");
} else {
const docChannel = message.guild.channels.find("name", "documentation");
switch(`${params}`) {
// Properties

// Methods

// Events

// Default
default:
break;
}
}
};

exports.conf = {
enabled: true,
guildOnly: false,
aliases: [''],
permLevel: 0
};

exports.help = {
name: 'MessageMentions',
description: 'Displays all the available information about the MessageMentions class',
usage: 'MessageMentions [arg]'
};
33 changes: 33 additions & 0 deletions commands/MessageReaction.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@
const settings = require('../settings.json');
exports.run = (client, message, params) => {
if (!params[0]) {
const docChannel = message.guild.channels.find("name", "documentation");
docChannel.send("");
} else {
const docChannel = message.guild.channels.find("name", "documentation");
switch(`${params}`) {
// Properties

// Methods

// Events

// Default
default:
break;
}
}
};

exports.conf = {
enabled: true,
guildOnly: false,
aliases: [''],
permLevel: 0
};

exports.help = {
name: 'MessageReaction',
description: 'Displays all the available information about the MessageReaction class',
usage: 'MessageReaction [arg]'
};
33 changes: 33 additions & 0 deletions commands/OAuth2Application.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@
const settings = require('../settings.json');
exports.run = (client, message, params) => {
if (!params[0]) {
const docChannel = message.guild.channels.find("name", "documentation");
docChannel.send("");
} else {
const docChannel = message.guild.channels.find("name", "documentation");
switch(`${params}`) {
// Properties

// Methods

// Events

// Default
default:
break;
}
}
};

exports.conf = {
enabled: true,
guildOnly: false,
aliases: [''],
permLevel: 0
};

exports.help = {
name: 'OAuth2Application',
description: 'Displays all the available information about the OAuth2Application class',
usage: 'OAuth2Application [arg]'
};
33 changes: 33 additions & 0 deletions commands/PartialGuild.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@
const settings = require('../settings.json');
exports.run = (client, message, params) => {
if (!params[0]) {
const docChannel = message.guild.channels.find("name", "documentation");
docChannel.send("");
} else {
const docChannel = message.guild.channels.find("name", "documentation");
switch(`${params}`) {
// Properties

// Methods

// Events

// Default
default:
break;
}
}
};

exports.conf = {
enabled: true,
guildOnly: false,
aliases: [''],
permLevel: 0
};

exports.help = {
name: 'PartialGuild',
description: 'Displays all the available information about the PartialGuild class',
usage: 'PartialGuild [arg]'
};
33 changes: 33 additions & 0 deletions commands/PartialGuildChannel.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@
const settings = require('../settings.json');
exports.run = (client, message, params) => {
if (!params[0]) {
const docChannel = message.guild.channels.find("name", "documentation");
docChannel.send("");
} else {
const docChannel = message.guild.channels.find("name", "documentation");
switch(`${params}`) {
// Properties

// Methods

// Events

// Default
default:
break;
}
}
};

exports.conf = {
enabled: true,
guildOnly: false,
aliases: [''],
permLevel: 0
};

exports.help = {
name: 'PartialGuildChannel',
description: 'Displays all the available information about the PartialGuildChannel class',
usage: 'PartialGuildChannel [arg]'
};
33 changes: 33 additions & 0 deletions commands/PermissionOverwrites.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@
const settings = require('../settings.json');
exports.run = (client, message, params) => {
if (!params[0]) {
const docChannel = message.guild.channels.find("name", "documentation");
docChannel.send("");
} else {
const docChannel = message.guild.channels.find("name", "documentation");
switch(`${params}`) {
// Properties

// Methods

// Events

// Default
default:
break;
}
}
};

exports.conf = {
enabled: true,
guildOnly: false,
aliases: [''],
permLevel: 0
};

exports.help = {
name: 'PermissionOverwrites',
description: 'Displays all the available information about the PermissionOverwrites class',
usage: 'PermissionOverwrites [arg]'
};
33 changes: 33 additions & 0 deletions commands/Permissions.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@
const settings = require('../settings.json');
exports.run = (client, message, params) => {
if (!params[0]) {
const docChannel = message.guild.channels.find("name", "documentation");
docChannel.send("");
} else {
const docChannel = message.guild.channels.find("name", "documentation");
switch(`${params}`) {
// Properties

// Methods

// Events

// Default
default:
break;
}
}
};

exports.conf = {
enabled: true,
guildOnly: false,
aliases: [''],
permLevel: 0
};

exports.help = {
name: 'Permissions',
description: 'Displays all the available information about the Permissions class',
usage: 'Permissions [arg]'
};
33 changes: 33 additions & 0 deletions commands/Presence.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@
const settings = require('../settings.json');
exports.run = (client, message, params) => {
if (!params[0]) {
const docChannel = message.guild.channels.find("name", "documentation");
docChannel.send("");
} else {
const docChannel = message.guild.channels.find("name", "documentation");
switch(`${params}`) {
// Properties

// Methods

// Events

// Default
default:
break;
}
}
};

exports.conf = {
enabled: true,
guildOnly: false,
aliases: [''],
permLevel: 0
};

exports.help = {
name: 'Presence',
description: 'Displays all the available information about the Presence class',
usage: 'Presence [arg]'
};
33 changes: 33 additions & 0 deletions commands/ReactionCollector.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@
const settings = require('../settings.json');
exports.run = (client, message, params) => {
if (!params[0]) {
const docChannel = message.guild.channels.find("name", "documentation");
docChannel.send("");
} else {
const docChannel = message.guild.channels.find("name", "documentation");
switch(`${params}`) {
// Properties

// Methods

// Events

// Default
default:
break;
}
}
};

exports.conf = {
enabled: true,
guildOnly: false,
aliases: [''],
permLevel: 0
};

exports.help = {
name: 'ReactionCollector',
description: 'Displays all the available information about the ReactionCollector class',
usage: 'ReactionCollector [arg]'
};
33 changes: 33 additions & 0 deletions commands/ReactionEmoji.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@
const settings = require('../settings.json');
exports.run = (client, message, params) => {
if (!params[0]) {
const docChannel = message.guild.channels.find("name", "documentation");
docChannel.send("");
} else {
const docChannel = message.guild.channels.find("name", "documentation");
switch(`${params}`) {
// Properties

// Methods

// Events

// Default
default:
break;
}
}
};

exports.conf = {
enabled: true,
guildOnly: false,
aliases: [''],
permLevel: 0
};

exports.help = {
name: 'ReactionEmoji',
description: 'Displays all the available information about the ReactionEmoji class',
usage: 'ReactionEmoji [arg]'
};
33 changes: 33 additions & 0 deletions commands/RichEmbed.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@
const settings = require('../settings.json');
exports.run = (client, message, params) => {
if (!params[0]) {
const docChannel = message.guild.channels.find("name", "documentation");
docChannel.send("");
} else {
const docChannel = message.guild.channels.find("name", "documentation");
switch(`${params}`) {
// Properties

// Methods

// Events

// Default
default:
break;
}
}
};

exports.conf = {
enabled: true,
guildOnly: false,
aliases: [''],
permLevel: 0
};

exports.help = {
name: 'RichEmbed',
description: 'Displays all the available information about the RichEmbed class',
usage: 'RichEmbed [arg]'
};
Loading

0 comments on commit 4e6816d

Please sign in to comment.