Answers for "message link discord.js"

5

how to send a message discord.js

message.reply("message here");
message.channel.send("message here");
Posted by: Guest on April-05-2020
4

how to send a message using discord.js

message.channel.send("a")
Posted by: Guest on August-05-2020
1

discord.js MessageEmbed

//top of file
const Discord = require('discord.js')

//example (inside of a command)

const embed = new Discord.Message.Embed()
embed.setAuthor(`example`)
embed.setTitle(`example`)
embed.setDescription(`example`)

message.channel.send({embed});

//there are obviously some other add-ons, such as AuthorIcon and URL.
Posted by: Guest on October-02-2020

Code answers related to "Javascript"

Browse Popular Code Answers by Language