hello my server dont sent message to Discord got this is console:
[DiscordMessages] Failed! Discord responded with code: 400. Plugin: Unknown Plugin {"embeds": ["0"]}
hello my server dont sent message to Discord got this is console:
[DiscordMessages] Failed! Discord responded with code: 400. Plugin: Unknown Plugin {"embeds": ["0"]}
In response to ctv ():If you are using EasyVote then one of the fields in the embeded object is null or incorrect. Please...
If you have updated DiscordMessages.... you'll need to edit EasyVote.cs line 534... should be..
DiscordMessages?.Call("API_SendFancyMessage", _config.Discord[PluginSettings.WebhookURL], _config.Discord[PluginSettings.Title], json, bool.Parse(_config.Discord[PluginSettings.Alert]) ? "@here" : null);Between Title and json there now needs to be a color. So..
DiscordMessages?.Call("API_SendFancyMessage", _config.Discord[PluginSettings.WebhookURL], _config.Discord[PluginSettings.Title], 3329330, json, bool.Parse(_config.Discord[PluginSettings.Alert]) ? "@here" : null);