using System; using System.Collections.Generic; using System.Text; using System.Threading.Tasks; using Discord.WebSocket; using Newtonsoft.Json.Linq; namespace Noikoio.RegexBot.Feature.AutoRespond { /// /// Similar to , but lightweight. /// Provides the capability to define autoresponses for fun or informational purposes. /// /// The major differences between this and include: /// /// Does not listen for message edits. /// Moderators are not exempt from any defined triggers by default. /// Responses are limited to only two types, and only one is allowed per rule. /// Does not support fine-grained matching options. /// Support for rate limiting. /// /// /// class AutoRespond : BotFeature { public override string Name => "AutoRespond"; public AutoRespond(DiscordSocketClient client) : base(client) { throw new NotImplementedException(); } [ConfigSection("autoresponses")] public override Task ProcessConfiguration(JToken configSection) { throw new NotImplementedException(); } } }