我是C_的新手,我正在编程我的第一个大项目,一个不和谐的机器人。
这个想法是机器人扫描评论,等待cthulhu这个词,一旦有人说cthulhu,机器人就会发送一条消息。然而,在当前状态下,它从不停止发送消息。我怀疑我的条件有问题,但不知道如何解决。我应该如何修改代码来解决这个问题?
这是我的代码,我安装了nuget包discord.net和discord.commands:

    discord.MessageReceived += async (s, e) =>
        {
            if (e.Message.RawText.Contains("Cthulhu") )
                await e.Channel.SendMessage("*Ph'nglui mglw'nafh Cthulhu R'lyeh wgah'nagl fhtagn*");
        };

最佳答案

你的机器人在自言自语-d
试试这个:

discord.MessageReceived += async (s, e) =>
{
    if (!e.Message.IsAuthor && e.Message.RawText.Contains("Cthulhu") )
        await e.Channel.SendMessage("*Ph'nglui mglw'nafh Cthulhu R'lyeh wgah'nagl fhtagn*");
};

关于c# - 用C#连续发送消息,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/41656591/

10-17 01:53