2022-10-27 04:52:29 +02:00
|
|
|
using Myriad.Types;
|
|
|
|
|
|
2021-12-07 01:36:54 -05:00
|
|
|
namespace PluralKit.Bot;
|
|
|
|
|
|
|
|
|
|
public partial class CommandTree
|
|
|
|
|
{
|
2025-10-07 21:59:26 +00:00
|
|
|
private async Task PrintCommandList(Context ctx, string subject, string commands)
|
2021-12-07 01:36:54 -05:00
|
|
|
{
|
2022-10-27 04:52:29 +02:00
|
|
|
await ctx.Reply(
|
|
|
|
|
$"Here is a list of commands related to {subject}:",
|
|
|
|
|
embed: new Embed()
|
|
|
|
|
{
|
2025-10-07 21:59:26 +00:00
|
|
|
Description = $"{commands}\nFor a full list of possible commands, see <https://pluralkit.me/commands>.",
|
2022-10-27 04:52:29 +02:00
|
|
|
Color = DiscordUtils.Blue,
|
|
|
|
|
}
|
|
|
|
|
);
|
2021-12-07 01:36:54 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
private async Task<string> CreateSystemNotFoundError(Context ctx)
|
|
|
|
|
{
|
|
|
|
|
var input = ctx.PopArgument();
|
|
|
|
|
if (input.TryParseMention(out var id))
|
|
|
|
|
{
|
|
|
|
|
// Try to resolve the user ID to find the associated account,
|
|
|
|
|
// so we can print their username.
|
|
|
|
|
var user = await ctx.Rest.GetUser(id);
|
|
|
|
|
if (user != null)
|
|
|
|
|
return $"Account **{user.Username}#{user.Discriminator}** does not have a system registered.";
|
|
|
|
|
return $"Account with ID `{id}` not found.";
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return $"System with ID {input.AsCode()} not found.";
|
|
|
|
|
}
|
|
|
|
|
}
|