t3k-dc-bot-cs/commands/hello.cs
2025-04-26 20:05:22 +02:00

19 lines
427 B
C#

using DSharpPlus.CommandsNext;
using DSharpPlus.CommandsNext.Attributes;
using System.Threading.Tasks;
namespace Commands
{
public class Hello : BaseCommandModule
{
[Command("hello")]
[Description("Beköszönés. Hello World")]
[HasAdminRole]
public async Task HelloCommand(CommandContext ctx)
{
await ctx.RespondAsync($"Szia! T3kerg0 vagyok!");
}
}
}