Ryyan

Untitled

Jul 20th, 2019
97
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.72 KB | None | 0 0
  1. if (command === "genspotify") {//the command..
  2.  
  3.  
  4.  
  5. ballMessage = message.content.slice(9);
  6. number = 5;
  7. console.log(`${message.author} just used the gen spotify command.`)
  8. var random = Math.floor(Math.random() * (number - 1 + 1)) + 1;
  9. switch (random) {
  10. case 1://all the cases are random shit like, for example it will generate a random one out of 5. if you want to make more accounts change number to any amount and make more cases, cases are the accounts, that will be randomly choosen.
  11. message.reply("check your dms.");//this code then says "<@member> check your dms.
  12. message.author.send('**sil.pupina@gmail.com:10474710, **account may not work.**');//this code then dms them a account.
  13. break;//this is too make sure it doesn't send EVERY case.
  14. case 2:
  15. message.reply("check your dms.");
  16. message.author.send('**8skolbeins@yahoo.com:billpay04**, **(May not work.)**');
  17. break;
  18. case 3:
  19. message.reply("check your dms.");
  20. message.author.send('**smaddox@jsu.edu:taylor1373**, **(May not work.)**');
  21. break;
  22. case 4:
  23. message.reply("check your dms.");
  24. message.author.send('**sherrybroyles@sbcglobal.net:synergy99** **(May not work.)**');
  25. break;
  26. case 5:
  27. message.reply("check your dms.");
  28. message.author.send('**sjmckinney626@aol.com:abbey2010** **(May not work.)**');
  29. break;
  30.  
  31. }
  32. }
Add Comment
Please, Sign In to add comment