V
V
Vladislav Mukhin2021-02-12 21:41:55
Python
Vladislav Mukhin, 2021-02-12 21:41:55

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

1 answer(s)
M
Maxim Nevzorov, 2021-02-13
@SladkayaDoza

  1. pass_context does not exist in the current version of the library
  2. discord.Client.fetch_guilds(...) requests a list of all servers hosting the bot. You most likely meant discord.Client.fetch_guild(...)
  3. Without a string-to-manual converter/conversion int, you are passing a string to this function , not a number , which is what server IDs are in the current version of the library
  4. discord.Client.create_invitealso 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 question

Ask a Question

731 491 924 answers to any question