Welcome to WuJiGu Developer Q&A Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
1.3k views
in Technique[技术] by (71.8m points)

can someone help me with discord.js emotes?

So I wanted my bot to detect if the message is an emote, if it is, detects if it's the :smile: emote if it is for example write :smile: anybody can help me? I'm pretty new to discord.js and would really appreciate it if, someone helped me


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)

You can simply implement multiple if-statements inside your message event, for your :smile: example it would look like this:

if(message.content === "??") return message.channel.send("??");

You can get the emoji as I displayed in my code, by typing :smile: in a Discord chat. So for ?? it would be :joy:.


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to WuJiGu Developer Q&A Community for programmer and developer-Open, Learning and Share
...