当我试图运行这个非常简单的命令来获取我的不和谐机器人时,请参见下面的错误:CS0149 C# Method name expected,我相信它指的是discord.connect中的discord。如果有人知道如何解决这个问题,我们将不胜感激。
命令:
using Discord;
using Discord.Commands;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace ImBo
如何解决这个问题?当我运行我的discord机器人时,它出现在终端中 DistributionWarning: discord.py is installed which is incompatible with nextcord. Please remove this library by using pip3 uninstall discord.py
warn(message, DistributionWarning, stacklevel=0)
当我尝试运行我的discord机器人时:
qbasty@cody-discord-bot:~/matrixcraft-cody$ pm2 start Cody.py --interpreter=python
[PM2][ERROR] Interpreter python is NOT AVAILABLE in PATH. (type 'which python' to double check.)
我明白这个错误。DigitalOcean上的Ubuntu20。
所以我尝试在discord.py中创建一个事件,每当用户提到/ping机器人时,它都会说些什么。下面的代码运行时没有错误,但是只有在消息中有我的命令前缀的情况下才能正常工作。 对于我的机器人,前缀是"/",所以每当我在消息中提到带有"/“的机器人时,它都会说些什么。如果我决定只提到机器人,机器人不会响应。我很确定这与最后一行代码有关,但我不知道如何解决这个问题。 @client.event
async def on_message(message):
if client.user.mention in message.content.split():
有人能帮我吗?当我试图启动我的不和谐机器人时,我一直收到这个错误消息。
[2022-08-23 14:32:12] [WARNING ] discord.ext.commands.bot: Privileged message content intent is missing, commands may not work as expected.
这是bot的代码,后面是命令和事件以及client.run(My_Token)
import os
import random
import discord
from discord.ext import commands
from discord
当我试图运行我的discord机器人时,我在powershell中得到了这个错误。 C:\Users\alexa\Desktop\WHA Period Bot\index.js:1
��c
SyntaxError: Invalid or unexpected token
at Module._compile (internal/modules/cjs/loader.js:891:18)
at Object.Module._extensions..js (internal/modules/cjs/loader.js:991:10)
at Module.load (i
我正准备和python做一个不和谐的机器人时,它不认识我做的一个函数。我发现的第一个小问题是,当我创建我的async def on_ready()函数时,它没有打印任何东西,而我却告诉了print("Bot is online.")。
第二个问题是,当我运行命令!verify时,它会引发以下错误:discord.ext.commands.errors.CommandNotFound: Command "verify" is not found
这是我的密码:
import discord
from discord.ext import commands
cli
长话短说,我在我的覆盆子pi上运行了这个快乐的小python discord机器人,它工作得非常完美,问题是过了一段时间,这个机器人似乎遇到了连接问题,因此崩溃,我不太确定是什么导致了它。 Python控制台错误: File "connector.py", line 314, in connect
.format(key, exc.strerror)) from exc
aiohttp.errors.ClientOSError: [Errno 10051] Cannot connect to host discordapp.com:443 ssl:True [Can not
with ctx.message.author.voice.channel.members as users:
for user in users:
await user.edit(voice_channel=None)
给出此错误:
with ctx.message.author.voice.channel.members as users:
AttributeError: __enter__
The above exception was the direct cause of the following excep
我试图在repl.it上托管一个机器人,当我试图运行该机器人时,显示了以下错误消息:
File "main.py", line 2, in <module>
import discord
ModuleNotFoundError: No module named 'discord'
这在我看来很奇怪,因为我的代码在上一次尝试运行时运行得非常好。我做了一些进一步的调查,发现discord.py有一个名为aiohttp的依赖项,所以我尝试自己安装这个包,然后发生了这样的情况:
Using version ^3.8.1 for aiohttp
Up
我正在尝试使用await self.client.session.get()获取图像
当我启动我的机器人时,它不会发送错误,但当我运行命令时,它会发送discord.ext.commands.errors.CommandInvokeError: Command raised an exception: AttributeError: 'Bot' object has no attribute 'session'
有人知道我会怎么解决这个问题吗?我自己去找过了,self.client.session.get()对他们来说很好
我有一个smol Discord机器人(带有discord.js-commando),我有这个代码: var activevar = ["with the &help command.", "with the developers console", "with some code", "with JavaScript"];
var activities = activevar[Math.floor(Math.random()*activevar.length)];
client.on('ready',
我正在编写一种方法,让用户在discord.py中扮演每个角色,我想知道是否有一种方法可以忽略机器人角色,例如:
@Eagle.command()
async def giveroles(ctx,member:discord.Member):
roleappend = []
for role in ctx.guild.roles:
roleappend.append(role)
await member.edit(roles=roleappend)
await sendembed(ctx,"Give All Role",f"
当这个人没有删除消息的权限时,我想让我的机器人这么说:
else if (!msg.member.hasPermission('DELETE_MESSAGES')) {
const number1 = new Discord.MessageEmbed()
.setTitle('Invalid permissions')
.setDescription('`❌`You dont have permission to delete messages.');
msg.channel.send(number1);
}
当我尝试用这个启动机器人
你好,我正在尝试编写我的第一个机器人,特别是一个命令,让它给出它的ping和API的ping,但当我启动机器人时,我遇到了这个错误,我不知道如何修复它 waiting = await message.channel.send("Je calcule le ping...").catch(console.error);
^^^^^
SyntaxError: await is only valid in async function 目前的代码是: const Discord = require ("discord.j
在我的学校和个人项目中,我已经使用VS Code在python 3.7.2中编码了几个月。但是当我试图用python编写一个不和谐的机器人时,我被困在了一个阶段。我昨晚使用pip安装了discord库,但由于某种原因,当我使用import discord时,它抛出了一个错误: File "c:/Users/Jyotirmay Kumar Jha/VS Code Projects/discord/test.py", line 2, in <module>
import discord
ModuleNotFoundError: No module named
大约一周前,我正计划与C#制造一个不和谐的机器人。我对这门语言非常了解,可以在windows窗体或控制台应用程序中编写简单的程序。然而,当我试图使用NuGet数据包管理器创建一个不和谐的机器人时,我偶然发现了一个问题:编译器似乎没有识别
using Discord;
这在我看来很奇怪,因为我看了大约6个关于如何制作机器人的教程。此时,我放弃了,因为我无法调试代码或其他什么:我甚至无法开始编写代码。