Advertisement
Guest User

Untitled

a guest
Apr 20th, 2019
89
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.16 KB | None | 0 0
  1. const ytdl = require(`ytdl-core`);
  2. const Discord = require('discord.js');
  3.  
  4. module.exports.run = async (bot, message, args) => {
  5.  
  6. let start1 = new Discord.RichEmbed()
  7. .setTitle("SOLO SNIPE")
  8. .setDescription("A new snipe is starting in **1 minute.** Get ready!")
  9. .addField("**Voice channel to join**", "**testing**")
  10. .addField("Game Mode", "SOLO")
  11. .addField("Instructions", "1) Preload your content by pressing Play in-game and cancel when it reaches 100%. 2) Join the voice channel; we will play a five second countdown. 3) Ready up on zero,")
  12.  
  13. message.channel.send(start1).then(r => r.delete(30000));
  14. }
  15.  
  16. setTimeout(function(){
  17. let start2 = new Discord.RichEmbed()
  18. .setTitle("SOLO SNIPE")
  19. .setDescription("A new snipe is starting in **30 seconds.** Get ready!")
  20. .addField("**Voice channel to join**", "**testing**")
  21. .addField("Game Mode", "SOLO")
  22. .addField("Instructions", "1) Preload your content by pressing Play in-game and cancel when it reaches 100%. 2) Join the voice channel; we will play a five second countdown. 3) Ready up on zero,")
  23.  
  24.  
  25. message.channel.send(start2)
  26. }, 30000);
  27.  
  28.  
  29.  
  30.  
  31.  
  32. module.exports.help = {
  33. name: "EU-SOLO"
  34. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement