ohno52
Guest
Member
Python:
anyone knows why this doesnt work? it fails to compare the discord tags, like in the screenshot:
can...
Read more
Code:
@bot.command()
async def verify(ctx, name):
discordnameq = hypixel.get_discord(name)
executorname = {ctx.author}
executorname = str(executorname)
if (executorname == discordnameq):
await ctx.send("Successfully linked!")
else:
await ctx.send(f"**{name}s** set discord (*{discordnameq}*) **doesnt match** yours (***{ctx.author}***).")
can...
Read more