在上面的示例中,当收到!sendDM消息时,机器人将向发送者发送一条私人消息。 最后,启动机器人并保持它在线: 代码语言:txt 复制 client.login('YOUR_BOT_TOKEN'); 确保将YOUR_BOT_TOKEN替换为您自己的机器人令牌。 这样,您就可以使用discord.js的discord机器人发送DM了。请注意,为了使机器人能够向用户发送私人消...
@bot.event async def on_message(message): if isinstance(message.channel, discord.DMChannel) and message.author != bot.user: # 在这里编写你想要执行的操作,比如将消息发送给你 user_message = message.content await message.author.send(f"你发送的消息是:{user_message}") 运行机器人,...
在此之前,你必须找到哪个 User 对应于你自己。 @client.event async def on_message(message): # we do not want the bot to reply to itself if message.author == client.user: return # can be cached... me = await client.get_user_info('MY_SNOWFLAKE_ID') await client.send_message(me, "H...
discord.ext.commands.errors.CommandInvokeError:命令引发异常:AttributeError:“Bot”对象没有属性“send_message” 我想输入例如:*send_dm @Jess#6461 hello并且机器人向该用户发送一个 DM 说“你好”。 最简单的方法是: async def send_dm(ctx,member:discord.Member,*,content): await member.send(content)...
elseif(authorApplication.step ==4) { message.author.send("```Thanks for your registration. Type %apply to register again```");deleteuserApplications[authorId]; } } } });``` 共2个答案 匿名用户 module.exports.run=异步(bot,message,args)=>; {...
@client.event async def on_guild_join(guild): def check(event): return event.target.id == client.user.id bot_entry = await guild.audit_logs(action=discord.AuditLogAction.bot_add).find(check) await bot_entry.user.send("Hello! Thanks for inviting me!") null~...
你可以检查channel.type并忽略任何不是DM的东西。您可以在discord.js v14中使用ChannelType.DM枚举。
The most powerful Discord selfbot written in GO allowing users to automate their campaigns & send low-cost mass messages to Discord users! botgolangdiscorddiscordappdiscord-botdiscordbotdiscord-selfbotdiscord-self-botdiscord-spam-botsdiscord-spamdiscord-spammerdiscord-spam-botdiscord-massdm ...
如果您想发送私人消息(直接消息),您可以使用member.create_dm但不能使用类似on_win或 的东西on_lost。 @client.command() async def dm(ctx): rand_num = (randint(1, 3)) win_num = 1 pm_channel = await ctx.author.create_dm() if win_num == rand_num: await pm_channel.send("You won!")...
您必须使用send_message方法。在此之前,你必须找到哪个User对应于你自己。