discord bot c# 读取收到的直接消息

Posted

技术标签:

【中文标题】discord bot c# 读取收到的直接消息【英文标题】:discord bot c# read received direct message 【发布时间】:2018-05-30 16:46:31 【问题描述】:

我目前正在尝试为我的 Discord 服务器创建自己的机器人。我希望用户能够输入命令 **event 然后机器人将直接向该用户发送消息并向其询问有关事件的一些问题,例如标题、时间等。

我可以让机器人直接向用户发送消息,但我找不到如何让机器人阅读用户发回的消息。

到目前为止,这是我的代码:

public class Event : ModuleBase<SocketCommandContext> 

    private static IUser currentUser;
    private DiscordSocketClient _client;

    [Command("event")]
    public async Task EventAsync() 
        _client = new DiscordSocketClient();

        var id = Context.User.Mention;

        if(currentUser == null) 
            foreach(var user in Context.Guild.Users) 
                if(("<@!" + user.Id.ToString() + ">") == id) 
                    currentUser = user;
                    id = user.Mention;
                    break;
                
            
        

        await currentUser.SendMessageAsync("Enter event title:");
    

【问题讨论】:

【参考方案1】:

我能够弄清楚这一点。在主程序.cs中

static void Main(string[] args)
    => new Program().RunBotAsync().GetAwaiter().GetResult();

public async Task RunBotAsync() 
    _client.MessageReceived += MessageReceived;


private async Task MessageReceived(SocketMessage msg) 
    //Code to direct message here

【讨论】:

以上是关于discord bot c# 读取收到的直接消息的主要内容,如果未能解决你的问题,请参考以下文章

Discord C# Bot - 删除最新消息

Discord Bot 读取对设置消息的反应

如何在 C# 中使用 Discord Bot 发送消息?

discord.js Bot 重启前没有看到消息

Discord Bot 读取 Google 表格并在表格中返回值。我想在没有表格格式的消息中返回值 ar CSV

Discord.js TypeError:无法读取未定义的属性“get”