This commit is contained in:
Alex Brow 2020-02-20 21:55:35 -05:00
parent fe44a41356
commit 728da66114
No known key found for this signature in database
GPG Key ID: F48926893F475C25
1 changed files with 8 additions and 8 deletions

View File

@ -232,14 +232,14 @@ client.on("message", async message => {
};
};
if(command === "adderall") {
let quote = parseInt(args)
if(quote = 1) return message.channel.send(">>> They call me lil adderall")
if(quote = 2) return message.channel.send(">>> Second time being detained...I faked my death by having a fake seizure.......You know what they call me......Lil Adderall");
if(quote = 3) return 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");
if(quote = 4) return 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.");
if(quote = 5) return 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\)");
if(quote = 6) return 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...");
if(quote = 7) return 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.");
let quote === args
if(quote = "1") return message.channel.send(">>> They call me lil adderall")
if(quote = "2") return message.channel.send(">>> Second time being detained...I faked my death by having a fake seizure.......You know what they call me......Lil Adderall");
if(quote = "3") return 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");
if(quote = "4") return 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.");
if(quote = "5") return 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\)");
if(quote = "6") return 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...");
if(quote = "7") return 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 message.channel.send("No quote found");
}