Hi,
I was hoping that the plugin could have a way to send a raw Message Object instead of a String like so:
I was hoping that the plugin could have a way to send a raw Message Object instead of a String like so:
[HookMethod("SendRawMessageToChannel")]
public void SendRawMessageToChannel(string channelNameOrId, Message message)
{
Channel channel = GetChannel(channelNameOrId);
channel?.CreateMessage(_client, message);
}