• <bdo id='95Kch'></bdo><ul id='95Kch'></ul>
  • <tfoot id='95Kch'></tfoot>
    1. <small id='95Kch'></small><noframes id='95Kch'>

      1. <legend id='95Kch'><style id='95Kch'><dir id='95Kch'><q id='95Kch'></q></dir></style></legend>
        <i id='95Kch'><tr id='95Kch'><dt id='95Kch'><q id='95Kch'><span id='95Kch'><b id='95Kch'><form id='95Kch'><ins id='95Kch'></ins><ul id='95Kch'></ul><sub id='95Kch'></sub></form><legend id='95Kch'></legend><bdo id='95Kch'><pre id='95Kch'><center id='95Kch'></center></pre></bdo></b><th id='95Kch'></th></span></q></dt></tr></i><div id='95Kch'><tfoot id='95Kch'></tfoot><dl id='95Kch'><fieldset id='95Kch'></fieldset></dl></div>

        discord.py send_message 用法

        时间:2023-10-11
          <tbody id='d5omr'></tbody>
          <bdo id='d5omr'></bdo><ul id='d5omr'></ul>

          <small id='d5omr'></small><noframes id='d5omr'>

              1. <legend id='d5omr'><style id='d5omr'><dir id='d5omr'><q id='d5omr'></q></dir></style></legend>
                <tfoot id='d5omr'></tfoot>

                  <i id='d5omr'><tr id='d5omr'><dt id='d5omr'><q id='d5omr'><span id='d5omr'><b id='d5omr'><form id='d5omr'><ins id='d5omr'></ins><ul id='d5omr'></ul><sub id='d5omr'></sub></form><legend id='d5omr'></legend><bdo id='d5omr'><pre id='d5omr'><center id='d5omr'></center></pre></bdo></b><th id='d5omr'></th></span></q></dt></tr></i><div id='d5omr'><tfoot id='d5omr'></tfoot><dl id='d5omr'><fieldset id='d5omr'></fieldset></dl></div>
                1. 本文介绍了discord.py send_message 用法的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

                  问题描述

                  我已经开始着手一个项目来加速我对 python 的学习.我正在尝试重新创建一个我经常使用的不和谐机器人,因为我已经习惯了它的功能.以下是我当前的代码

                  I've started working on a project to accelerate my learning of python. I'm trying to recreate a discord bot I use quite a bit since i'm already use to its features. Below is my current code

                  import discord
                  from discord import User
                  from discord.ext.commands import Bot
                  
                  import secrets
                  
                  pybot = Bot(command_prefix = "!")
                  
                  @pybot.event
                  async def on_read():
                      print("Client logged in")
                  
                  @pybot.command()
                  async def hello(*args):
                      print(User.display_name)
                      return await pybot.say("Hello, world!")
                  
                  @pybot.command()
                  async def truck(*args):
                      await pybot.send_message(message.user,'Watchout for that truck!')
                  
                  pybot.run(secrets.BOT_TOKEN)
                  

                  我想要发生的事情是,当有人键入命令 !truck <mention user> 时,它会向提到的用户发送一条消息,其中包含小心那辆卡车!"的消息.

                  what im trying to get to happen is when someone types the command !truck <mention user> it sends a message to that mentioned user with the message "Watch out for that truck!".

                  我收到以下错误:

                  命令引发异常:NameError: name 'message' is not defined

                  Command raised an exception: NameError: name 'message' is not defined

                  我尝试查找我正在尝试做的事情的示例,但没有找到太多,或者我不明白我应该做什么.希望这不是类似问题的转贴

                  I've tried looking up examples of what im trying to do but haven't found much, or am not understanding what I should be doing. Hopefully this isn't a repost of a similar question

                  谢谢.

                  推荐答案

                  我认为你的卡车中的 *args 不再是有效的语法,我相信使用 discord.py 的命令

                  The *args in your truck is no longer valid syntax I believe for the commands with discord.py

                  @pybot.command(pass_context=True)
                  async def truck(ctx):
                      await pybot.send_message(ctx.message.user, 'Watchout for that truck!')
                  

                  使用他们的 查看 Discord.py 的 github 存储库例子

                  这篇关于discord.py send_message 用法的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持html5模板网!

                  上一篇:有没有办法在我的论点中包含空格? 下一篇:ValueError:replit 数据库检测到循环引用

                  相关文章

                  最新文章

                  <tfoot id='fIJpW'></tfoot>

                      <bdo id='fIJpW'></bdo><ul id='fIJpW'></ul>
                    <legend id='fIJpW'><style id='fIJpW'><dir id='fIJpW'><q id='fIJpW'></q></dir></style></legend>

                    1. <small id='fIJpW'></small><noframes id='fIJpW'>

                      <i id='fIJpW'><tr id='fIJpW'><dt id='fIJpW'><q id='fIJpW'><span id='fIJpW'><b id='fIJpW'><form id='fIJpW'><ins id='fIJpW'></ins><ul id='fIJpW'></ul><sub id='fIJpW'></sub></form><legend id='fIJpW'></legend><bdo id='fIJpW'><pre id='fIJpW'><center id='fIJpW'></center></pre></bdo></b><th id='fIJpW'></th></span></q></dt></tr></i><div id='fIJpW'><tfoot id='fIJpW'></tfoot><dl id='fIJpW'><fieldset id='fIJpW'></fieldset></dl></div>