如果我们查看discord dev文档中的Guild Create
事件,我们会看到以下内容:
我对此有几个问题。首先,我不确定何时可以使用机器人帐户创建服务器。在"用户最初连接"之后我尝试将服务器创建放入on_ready
函数中,如下所示:
import discord
import asyncio
import bot.client.getkey as _getkey
from bot.utils import get_owner
class ImABot(discord.Client):
async def on_ready(self):
ts = await self.create_server("test")
inv = await self.create_invite(ts.default_channel)
await self.send_message(get_owner()) #get owner simply gets the user who owns the bot, me.
Bot = ImABot()
Bot.run(_getkey.key())
但是,我收到以下错误:
Traceback (most recent call last):
File "/usr/local/lib/python3.6/site-packages/discord/client.py", line 307, in _run_event
yield from getattr(self, event)(*args, **kwargs)
File "/Users/edl/Desktop/ /Programming/Github/Democracy-Bot/demobot/client/client.py", line 22, in on_ready
inv = await self.create_invite(ts.default_channel)
File "/usr/local/lib/python3.6/site-packages/discord/client.py", line 2628, in create_invite
data = yield from self.http.create_invite(destination.id, **options)
AttributeError: 'NoneType' object has no attribute 'id'
我认为这意味着未创建服务器。我希望有人可以告诉我有关何时创建服务器的信息,以及首先是否可行。谢谢!
答案 0 :(得分:0)
公会不再具有默认频道,因此最好避免使用它们。
要获得第一个为服务器创建的频道,最好的选择是使用
discord.utils.get(new_server.channels, type=discord.ChannelType.text)
或者,如果您使用discord.py重写,则
new_server.text_channels[0]
然后您可以从该频道创建邀请。
答案 1 :(得分:0)
Discord漫游器无法创建服务器;只有用户帐户可以。虽然可以创建一个帐户并使用其令牌创建一个自助机器人,但由于against the discord Tos的存在,因此不建议使用。