aboutsummaryrefslogtreecommitdiff
path: root/commands/Utility
diff options
context:
space:
mode:
authorTheEdgeNK <trey6979@gmail.com>2018-08-09 11:37:44 -0400
committerTheEdgeNK <trey6979@gmail.com>2018-08-09 11:37:44 -0400
commitded06571cb04a066d6734250e261bad6ed2fa1cd (patch)
tree9ad3de4aeb69130be205b0d88b1f79c4f4cd0368 /commands/Utility
parentd8c7a0557bee2bc3dc66f09e09fd199a267df303 (diff)
downloadPokeBot-ded06571cb04a066d6734250e261bad6ed2fa1cd.tar.gz
PokeBot-ded06571cb04a066d6734250e261bad6ed2fa1cd.tar.bz2
PokeBot-ded06571cb04a066d6734250e261bad6ed2fa1cd.zip
2.0 Alpha 1 Version 2
Diffstat (limited to 'commands/Utility')
-rw-r--r--commands/Utility/character.js2
-rw-r--r--commands/Utility/invite.js2
-rw-r--r--commands/Utility/nick.js2
-rw-r--r--commands/Utility/recentchanges.js34
-rw-r--r--commands/Utility/suggest.js2
-rw-r--r--commands/Utility/uptime.js2
-rw-r--r--commands/Utility/userinfo.js2
7 files changed, 40 insertions, 6 deletions
diff --git a/commands/Utility/character.js b/commands/Utility/character.js
index 56d9bfb..35a87d9 100644
--- a/commands/Utility/character.js
+++ b/commands/Utility/character.js
@@ -1,6 +1,6 @@
/** **************************************
*
- * Character: Plugin for PokeBot that examines unicode character further.
+ * Character: Plugin for Galaxy that examines unicode character further.
* Copyright (C) 2018 TheEdge, jtsshieh, Alee
*
* Licensed under the Open Software License version 3.0
diff --git a/commands/Utility/invite.js b/commands/Utility/invite.js
index 933e9ba..677112a 100644
--- a/commands/Utility/invite.js
+++ b/commands/Utility/invite.js
@@ -1,6 +1,6 @@
/** **************************************
*
- * Invite: Plugin for PokeBot that provides gives the user information about the bot.
+ * Invite: Plugin for Galaxy that allows the user to use the bot on their own guilds.
* Copyright (C) 2018 TheEdge, jtsshieh, Alee
*
* Licensed under the Open Software License version 3.0
diff --git a/commands/Utility/nick.js b/commands/Utility/nick.js
index 46f2d8a..9f3ec82 100644
--- a/commands/Utility/nick.js
+++ b/commands/Utility/nick.js
@@ -1,6 +1,6 @@
/** **************************************
*
- * Nick: Plugin for PokeBot that changes the user's display name.
+ * Nick: Plugin for Galaxy that changes the user's display name.
* Copyright (C) 2018 TheEdge, jtsshieh, Alee
*
* Licensed under the Open Software License version 3.0
diff --git a/commands/Utility/recentchanges.js b/commands/Utility/recentchanges.js
new file mode 100644
index 0000000..a8e93ad
--- /dev/null
+++ b/commands/Utility/recentchanges.js
@@ -0,0 +1,34 @@
+/****************************************
+ *
+ * Recent Changes: Plugin for Galaxy that tells you about new features and fixes.
+ * Copyright (C) 2018 TheEdge, jtsshieh, Alee
+ *
+ * Licensed under the Open Software License version 3.0
+ *
+ * *************************************/
+module.exports.run = async (client, bot, message) => {
+ const { RichEmbed } = require('discord.js');
+ const embed = new RichEmbed();
+
+ embed
+ .setColor (0x36393e)
+ .setTitle ("These are the newest features")
+ .setDescription ("And fixes too!")
+ .setFooter ("Galaxy 2.0 Alpha 1");
+
+ embed.addField ("New Features", "Added the recent changes command. This command tells the user about the newest additions to the bot.\nQuote commands have been added. Heard of Victor? We don't care. Have his quotes anyways! We also have normal quotes from random members of the Universe community too! This comes as the part of a merge between another bot.");
+ embed.addField ("Fixes", "Changed the add1k command name to exploit.\nFixed licensing info")
+
+ };
+
+ exports.conf = {
+ aliases: [],
+ guildOnly: false,
+ };
+ exports.help = {
+ name: 'info',
+ description: 'Tells you information about the bot',
+ usage: 'info',
+ category: '- Information Commands',
+ };
+ \ No newline at end of file
diff --git a/commands/Utility/suggest.js b/commands/Utility/suggest.js
index f1b4206..e576101 100644
--- a/commands/Utility/suggest.js
+++ b/commands/Utility/suggest.js
@@ -1,6 +1,6 @@
/** **************************************
*
- * Suggest: Plugin for PokeBot that allows users to suggest things.
+ * Suggest: Plugin for Galaxy that allows users to suggest things.
* Copyright (C) 2018 TheEdge, jtsshieh, Alee
*
* Licensed under the Open Software License version 3.0
diff --git a/commands/Utility/uptime.js b/commands/Utility/uptime.js
index 1519504..1f4db4e 100644
--- a/commands/Utility/uptime.js
+++ b/commands/Utility/uptime.js
@@ -1,6 +1,6 @@
/** **************************************
*
- * Uptime: Plugin for PokeBot that provides diagnostic information.
+ * Uptime: Plugin for Galaxy that provides diagnostic information.
* Copyright (C) 2018 TheEdge, jtsshieh, Alee
*
* Licensed under the Open Software License version 3.0
diff --git a/commands/Utility/userinfo.js b/commands/Utility/userinfo.js
index 666b48f..0a5c241 100644
--- a/commands/Utility/userinfo.js
+++ b/commands/Utility/userinfo.js
@@ -1,6 +1,6 @@
/** **************************************
*
- * UserInfo: Plugin for PokeBot that gives the user information about themselves or another user.
+ * UserInfo: Plugin for Galaxy that gives the user information about themselves or another user.
* Copyright (C) 2018 TheEdge, jtsshieh, Alee
*
* Licensed under the Open Software License version 3.0