So I want to make a command where for only a few certain people it says something specific and for the others that aren't specified on the code, it will just say a normal thing.
@client.command()
async def test(ctx):
if ctx.author.id == 1:
await ctx.reply('Hello Person 1')
if ctx.author.id == 2:
await ctx.reply("Hello Person 2")
if not ctx.author.id == 1 and 2:
await ctx.reply ("Hello")
Something like the code above, which I did in fact try, but it will not count the second condition on line 7. Anyone have a solution?