From 85d4ce8a62d5b7068b7c99890a1945b6a961ff08 Mon Sep 17 00:00:00 2001
From: TheEdgeNK <32907415+TheEdgeNK@users.noreply.github.com>
Date: Sun, 11 Mar 2018 22:52:18 -0400
Subject: fixes for the misses
---
commands/Owners Only/testingcredits.js | 46 ++++++++++++++++++++++++++++++++++
1 file changed, 46 insertions(+)
create mode 100644 commands/Owners Only/testingcredits.js
(limited to 'commands/Owners Only/testingcredits.js')
diff --git a/commands/Owners Only/testingcredits.js b/commands/Owners Only/testingcredits.js
new file mode 100644
index 0000000..16bc83d
--- /dev/null
+++ b/commands/Owners Only/testingcredits.js
@@ -0,0 +1,46 @@
+/** **************************************
+ *
+ * Testing Credits: Plugin for PokeBot that modifies economy features.
+ * Copyright (C) 2018 TheEdge, jtsshieh, Alee
+ *
+ * This program is free software: you can redistribute it and/or modify
+ * it under the terms of the GNU General Public License as published by
+ * the Free Software Foundation, either version 3 of the License, or
+ * (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with this program. If not, see .
+ *
+ * *************************************/
+
+exports.run = async (bot, msg, args) => {
+ if (!['242775871059001344', '247221105515823104', '236279900728721409'].includes(msg.author.id)) return msg.reply('Nope! You need the person who created this bot to use this command.');
+
+ let user;
+ if (!msg.mentions.members.first()) {
+ user = msg.author;
+ } else {
+ user = msg.mentions.members.first();
+ };
+
+ bot.plugins.economy.add(user.id, 50);
+
+ msg.channel.send('Added 50 credits');
+ };
+
+ exports.conf = {
+ aliases: [],
+ guildOnly: true,
+ };
+
+ exports.help = {
+ name: 'modifycredits',
+ description: 'Modifies the credits of a user',
+ usage: '@user ',
+ };
+
\ No newline at end of file
--
cgit v1.2.3