Answer the question
In order to leave comments, you need to log in
How to generate an invitation to the server knowing its ID using a bot?
Help me please))
@Client.command(pass_context = True)
async def link(ctx, yy):
server = Client.fetch_guilds(yy)
link = await Client.create_invite(destination=server,xkcd=True,max_age=0,max_uses=2)
await ctx.send(link)
TypeError: fetch_guilds() takes 1 positional argument but 2 were given
Answer the question
In order to leave comments, you need to log in
pass_context
does not exist in the current version of the libraryint
, you are passing a string to this function , not a number , which is what server IDs are in the current version of the librarydiscord.Client.create_invite
also does not exist on the current version of the library , instead the required method is in the channel object@Client.command()
async def link(ctx, guild_id: int): # https://discordpy.readthedocs.io/en/stable/ext/commands/commands.html#converters
server = Client.get_guild(guild_id)
channel = server.channels[0]
link = await channel.create_invite(max_uses=2)
await ctx.send(link)
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question