Advertisement
Guest User

Untitled

a guest
Jun 25th, 2019
82
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.67 KB | None | 0 0
  1. let [cmd, user, proof, reason] = msg.content.split(' ');
  2. let reporting = user //user being reported (usually tagged)
  3. let reported = msg.author.tag
  4. let reportedID = msg.author.id
  5.  
  6. let embedReply = new Discord.RichEmbed()
  7. .setColor("PURPLE")
  8. .setTitle("Ready to send?")
  9. .setDescription("Please check if this is correct:")
  10. .addField("Your name:", `${reported} (${reportedID})`)
  11. .addField("You are reporting:", `${reporting} (${reporting.id})`)
  12. .addField("With the proof:", proof)
  13. .addField("With the reason:", reason)
  14. .setFooter("Please check this report so you know what you're sending.")
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement