This commit is contained in:
Alex Brow 2020-02-20 17:05:55 -05:00
parent 3f877d792c
commit db09ad4d48
No known key found for this signature in database
GPG Key ID: F48926893F475C25
1 changed files with 13 additions and 1 deletions

View File

@ -227,9 +227,21 @@ client.on("message", async message => {
let member = message.mentions.members.first();
let role = message.guild.roles.find(role => role.name === `DEFCON ${con}`);
member.addRole(role)
return message.reply("DEFCON level set")
return message.reply("DEFCON level set!\nGod Bless their souls")
};
};
if(command === "adderal") {
let quote = parseInt(args[1], 7)
if(quote = 1) message.channel.send(">>> They call me lil adderall") return
if(quote = 2) message.channel.send(">>> Second time being detained...I faked my death by having a fake seizure.......You know what they call me......Lil Adderall") return
if(quote = 3) message.channel.send(">>> So note to self dont ask those types of questions to Osseley...Ive been detained 3 times they call me...lil adderall") return
if(quote = 4) message.channel.send(">>> Alright I dont know why Im detained. I know all my detainments but not this one. But you know what they call me....you already guessed it........lil....adderall.") return
if(quote = 5) message.channel.send(">>> rubs hands\nYou know ya boy I got detained ahaha aint big of a deal my pickup lines...eh....they aight and you know Oseley she don't like it. AYE AYE AYE..shout out to Ossley biggest inspiration. But guess what my league wont stop right there. So you already know it...aight... they call me lil adderall. \(I do have ADHD I do take it responsibly to those of you dont find it funny I like making jokes about it because I dont like it\)") return
if(quote = 6) message.channel.send(">>> Aight..aight.. so you know stuff went down I was about to drop my new song “Osseley do you CAP with me” you know aight...rubs hands...and she dont like it so I was like “aight”. Bro I swear to god she was like “I aint CAPn with you”. BAM BAM. But you know what they call me.....Lil Adderall...") return
if(quote = 7) message.channel.send(">>> Lil adderall alright so I'm going to keep on doin g these until I leave CAP and I am thinking of it right now. My last lil adderall will be emotional and osselot will want me so yeah. You know life is aight I got my dog and yeah.") return
return message.channel.send("No quote found")
}
});