Instalar Steam
iniciar sesión
|
idioma
简体中文 (chino simplificado)
繁體中文 (chino tradicional)
日本語 (japonés)
한국어 (coreano)
ไทย (tailandés)
Български (búlgaro)
Čeština (checo)
Dansk (danés)
Deutsch (alemán)
English (inglés)
Español de Hispanoamérica
Ελληνικά (griego)
Français (francés)
Italiano
Bahasa Indonesia (indonesio)
Magyar (húngaro)
Nederlands (holandés)
Norsk (noruego)
Polski (polaco)
Português (Portugués de Portugal)
Português-Brasil (portugués de Brasil)
Română (rumano)
Русский (ruso)
Suomi (finés)
Svenska (sueco)
Türkçe (turco)
Tiếng Việt (vietnamita)
Українська (ucraniano)
Comunicar un error de traducción
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.