Discord.py bot wont print a SIMPLE variable in the chat

自古美人都是妖i 提交于 2019-12-13 09:38:35

问题


What I want is for the bot to say Snacktoshis: 5, but it won't print the variable in the chat.

Here is my code:

from discord import *
from discord.ext import *
from discord.ext.commands import Bot
from discord.ext.commands import *
import random
import asyncio
from discord import Game
from discord.ext.commands import Bot
import aiohttp
import discord
import requests
import time

BOT_PREFIX = ("?", "!")
client = Bot(command_prefix=BOT_PREFIX)

TOKEN ="3812236138921603126360103210983inserttoken21831382ufsfuadha"



@client.command()
async def bal():
    snack = 0
    await client.say("Snacktoshis:",snack)


client.run(TOKEN)

My error message is:

Traceback (most recent call last):
  File "/usr/local/lib/python3.6/site-packages/discord/ext/commands/bot.py", line 846, in process_commands
    yield from command.invoke(ctx)
  File "/usr/local/lib/python3.6/site-packages/discord/ext/commands/core.py", line 374, in invoke
    yield from injected(*ctx.args, **ctx.kwargs)
  File "/usr/local/lib/python3.6/site-packages/discord/ext/commands/core.py", line 54, in wrapped
    raise CommandInvokeError(e) from e
discord.ext.commands.errors.CommandInvokeError: Command raised an exception: TypeError: send_message() takes from 2 to 3 positional arguments but 4 were given

I know I have alot of unused modules.


回答1:


I assume what you mean is something like this:

@bot.command()
async def bal():
  snack = 0
  await bot.say("Snacktoshis: %d" %snack)

Where the variable should be part of the message, and not a separate argument to the method call.




回答2:


From help('discord.ext.commands.Bot.say'):

discord.ext.commands.Bot.say = say(self, *args, **kwargs)

A helper function that is equivalent to doing

    self.send_message(message.channel, *args, **kwargs)

So the four arguments that are being sent into send_message from your client.say call are client, message.channel, "Snacktoshis:", and snack. You want the message you're sending to be a single string, instead of two separate arguments.

await client.say("Snacktoshis: " + snack)

or

await client.say("Snacktoshis: {}".format(snack))


来源:https://stackoverflow.com/questions/50574359/discord-py-bot-wont-print-a-simple-variable-in-the-chat

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!