Advertisement
xoxfl

special - Food Bot

Jun 15th, 2019
81
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.49 KB | None | 0 0
  1. const { RichEmbed } = require('discord.js')
  2.  
  3. module.exports.run = (client, message, args) => {
  4. const dailyspecial = new RichEmbed()
  5. .setTitle("SPECIAL OF THE WEEK")
  6. .setDescription("Specials that change daily by developer")
  7. .addField("Todays Special is:","Free drink on every meal")
  8. .setColor(0x00ff00)
  9. message.author.send(dailyspecial)
  10. message.channel.send('Sent to dm')
  11. }
  12.  
  13. module.exports.help = {
  14. name: "dailyspecial"
  15. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement