Not sending to Discord, not displaying tracking in chatSolved

hello , i allready have 4 script fully opperating , discord message ( for the webhook ) , admin chat , better chat and better chat mute.

all the webhook are working with them but when i load raidtracker.cs at the start conssol tell me

[Raid Tracker] Discord not loaded correctly, please check your plugin directory for Discord.cs file

wich i am aware because i want to use discordmessage so i can use a webhook wich i cannot with the other, so i haven't instaled it.

the /x commande work but even if set to true i am not able to see explosion in chat , and the webhooking to discord doesnt work at all.

any idea ? thanks by advance

raid tracker is suposed to work with it , every webhook work with this plugin but when i add raid tracker it wont hook up with discord message.

anyone having an idea ? thanks :)

ok i just instaled and connfigured discord.cs and discordmessage.cs as well as raid tracker it work only if i hit a TC nothing happen for wall , and it pop u pa server message wich everyonecan see 
you need the https://umod.org/plugins/discord-api, and the https://umod.org/plugins/discord-messages   (even though it's not marked as a dependency in the documentation.)

In your Discord server settings> webhooks> create webhook> choose channel> copy the webhook URL into the DiscordMessages.json and the RaidTracker.json config files:

"Discord": {
    "Send Notifications": true
  },
  "DiscordMessages": {
    "Message - Embed Color (DECIMAL)": 3329330,
    "Message - Webhook URL": "PASTE WEBHOOK HERE"​

o.reload Discord and o.reload RaidTracker and you should be good to go. RyanFromRust#0341 should you need more help

It supports 3 notification methods, as named in the config: Discord (this uses the aforementioned Discord API plugin, which breaks some other plugins for me), Discord Messages, and Slack. You don't have to use more than 1, however there is missing code for using Discord Messages that seems to have been overlooked.

Here's how to get it working with Discord Messages.

Add at line 1201 in RaidTracker.cs:

_sendDiscordMessages = Convert.ToBoolean(GetConfig("DiscordMessages", "Send Notifications", false));


Add to the RaidTracker.json config file under "DiscordMessages": { - should be line 16:

"Send Notifications": true,
Locked automatically