Install Steam
login
|
language
简体中文 (Simplified Chinese)
繁體中文 (Traditional Chinese)
日本語 (Japanese)
한국어 (Korean)
ไทย (Thai)
Български (Bulgarian)
Čeština (Czech)
Dansk (Danish)
Deutsch (German)
Español - España (Spanish - Spain)
Español - Latinoamérica (Spanish - Latin America)
Ελληνικά (Greek)
Français (French)
Italiano (Italian)
Bahasa Indonesia (Indonesian)
Magyar (Hungarian)
Nederlands (Dutch)
Norsk (Norwegian)
Polski (Polish)
Português (Portuguese - Portugal)
Português - Brasil (Portuguese - Brazil)
Română (Romanian)
Русский (Russian)
Suomi (Finnish)
Svenska (Swedish)
Türkçe (Turkish)
Tiếng Việt (Vietnamese)
Українська (Ukrainian)
Report a translation problem
To send an embed message in the "Run Script too" feature, you can use the Discord.js library.
Here's an example code snippet that you can use in the "Run Script too" feature to send an embed message:
---------------------------------------------------------------------
csharp
const Discord = require('discord.js');
const embed = new Discord.MessageEmbed()
.setColor('#0099ff')
.setTitle('Example Embed')
.setDescription('This is an example embed message.');
const channel = client.channels.cache.get('YOUR_CHANNEL_ID');
if (channel) {
channel.send(embed);
}
------------------------------------------------------------------
Make sure to replace 'YOUR_CHANNEL_ID' with the actual ID of the channel where you want to send the message.