Discord Enabled

Please Help me it looks so cool so how do you code something like:
image
Thank you for the support if you can help!
The code is:

client.on(‘message’, msg => {

if (msg.content === '<@!457627686358089728>') {
    msg.reply('**Hey There!** <a:Cheers:524894732611223552> ')
  
  }
})|

Please copy it and add it as a emabled Thanks!

@TH3_UNKNOWN That seems like a SelfBot which is a violation of Discord’s ToS.

ok i’ll delete it and will not use it anymore

well we just whant to say enabled cuz we on mobile and cant do it

I don’t really understand your question. What are you trying to enable?

a message that looks cool, the message in the

msg.reply()

Are you trying to create an embed?

yes! please help me!

And to confirm this is via a bot account?

no, just looks cool!!!

I understand it looks cool, but I am asking if this is via a bot account. Because the one sent in the picture above seems like a selfbot which is a violation of Discord’s ToS.

Hey @TH3_UNKNOWN

Seems like you want embed! Well Its Actually Simple!
Here’s The Code:

const exampleEmbed = new Discord.RichEmbed()
	.setColor('#0099ff')
	.setTitle('Some title')
	.setURL('https://discord.js.org/')
	.setAuthor('Some name', 'https://i.imgur.com/wSTFkRM.png', 'https://discord.js.org')
	.setDescription('Some description here')
	.setThumbnail('https://i.imgur.com/wSTFkRM.png')
	.addField('Regular field title', 'Some value here')
	.addBlankField()
	.addField('Inline field title', 'Some value here', true)
	.addField('Inline field title', 'Some value here', true)
	.addField('Inline field title', 'Some value here', true)
	.setImage('https://i.imgur.com/wSTFkRM.png')
	.setTimestamp()
	.setFooter('Some footer text here', 'https://i.imgur.com/wSTFkRM.png');

channel.send(exampleEmbed);

Note: Not all fields are required. You can also pick the colours too!
You Can Learn More At https://discordjs.guide/popular-topics/embeds.html Assuming you use discord.js

If you use Eris, you can refer here

1 Like

Thanks! though I found a solution