aboutsummaryrefslogtreecommitdiff
path: root/abwelcome.js
diff options
context:
space:
mode:
authorAlee14 <Alee14498@gmail.com>2017-11-10 19:05:09 -0500
committerAlee14 <Alee14498@gmail.com>2017-11-10 19:05:09 -0500
commit7b00dd543ba5270241605a1dcf5ff7f06d94e291 (patch)
treecb9087ae46d5cca7f51b346fc9ae7246cf2595cc /abwelcome.js
parentf937d7cdd0e2d7c067df24faf9af4d3c6ebad660 (diff)
downloadAleeBot-7b00dd543ba5270241605a1dcf5ff7f06d94e291.tar.gz
AleeBot-7b00dd543ba5270241605a1dcf5ff7f06d94e291.tar.bz2
AleeBot-7b00dd543ba5270241605a1dcf5ff7f06d94e291.zip
Removed abwelcome and added the git command
Diffstat (limited to 'abwelcome.js')
-rw-r--r--abwelcome.js52
1 files changed, 0 insertions, 52 deletions
diff --git a/abwelcome.js b/abwelcome.js
deleted file mode 100644
index 898b6a2..0000000
--- a/abwelcome.js
+++ /dev/null
@@ -1,52 +0,0 @@
-const Discord = require('discord.js');
-const profanities = require('profanities');
-const client = new Discord.Client();
-const config = require('./absettings.json');
-
-
-client.on('ready', () => {
- console.log("[SUCCESS] AleeArmy Welcomer is now ready!");
- client.user.setStatus('invisible')
- });
-
- client.on("guildMemberAdd", function(member) {
- member.guild.channels.find("name", "welcomes-and-byes").sendMessage(member.toString() + " has joined the server");
-
-});
-
-client.on("guildMemberRemove", function(member) {
- member.guild.channels.find("name", "welcomes-and-byes").sendMessage(`**${member.user.username}** has left the server`);
-
-});
-
-client.on('message', message => {
- for (x = 0; x < profanities.length; x++) {
- if (message.content.toUpperCase() == profanities[x].toUpperCase()) {
- client.channels.get('318874545593384970').sendMessage(":information_source: **" + message.author.username + "** just swore in #"+ message.channel.name +"!");
- console.log('[WARNING] '+ message.author.username +' just swore in #'+ message.channel.name +'!')
- switch (Math.floor(Math.random() * 1000) % 3) {
- case 0:
- message.reply('Keep this server clean buddy!');
- break;
- case 1:
- message.reply('We want this server PG!');
- break;
- case 2:
- message.reply('Hmm. You like swearing a lot well some other people don\'t!')
- break;
- case 3:
- message.reply("If you like swearing say it in your head please.")
- }
- message.delete();
- return;
- }
- }
-});
-
-process.on('unhandledRejection', function(err, p) {
- console.log("[ERROR | UNCAUGHT PROMISE] " + err.stack);
-});
-
-client.login (config.aawtoken).catch(function() {
- console.log("[ERROR] Login failed. Please contact Alee14#9928 or email him at alee14498@gmail.com.");
- });