C#中的连续消息发送

时间:2017-01-15 00:39:33

标签: c# discord.net

我是C#的新手,我正在编写我的第一个大项目,一个Discord bot。 这个想法是机器人扫描评论,等待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*");
        };

1 个答案:

答案 0 :(得分:8)

你的机器人正在自言自语:-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*");
};