Webhooks
webhook = " "
servername = "RD STORE"
ThumbnailUrl = "https://cdn.discordapp.com/attachments/1321927690135142478/1326957470295261214/Nouveau_projet_1_1.png?ex=678150f2&is=677fff72&hm=92ec7348f64b72a326fc6a4019c66106facad4469a0bec62edab52044c4dbc4c&"
EmbedColor = 0x00FFFF
AuthorName = "RD STORE"
RoleToTag = "<@&1321927686444154993>" -- or false
configuration for webhook messages
Webhook URL:
webhook
: This is the URL of the Discord webhook where the message will be sent. It’s currently set to an empty string (" "
), which means you would need to replace it with your actual webhook URL to make it functional.
Server Name:
servername
: This sets the name of the server where the notification originates. In this case, it's set to"RD STORE"
. You can change it to your desired server name.
Thumbnail Image URL:
ThumbnailUrl
: The URL of the thumbnail image that will appear in the embedded message. This image is a preview or icon shown alongside the message content. The current URL points to an image hosted on Discord’s CDN, but you can replace it with any image URL.
Embed Color:
EmbedColor
: The color of the embed (message box) in hexadecimal format.0x00FFFF
is a shade of cyan. You can change this to any color code you prefer for your notifications.
Author Name:
AuthorName
: This is the name of the author displayed at the top of the embed. It's set to"RD STORE"
, but you can change this to whatever name you want.
Role to Tag:
RoleToTag
: This is the mention for a specific role in the server. It's set to<@&1321927686444154993>
, which will tag a role with the ID1321927686444154993
in Discord. You can adjust the ID to mention a different role, or if you don’t want to tag any role, you can set it tofalse
.
Last updated