Im trying to make a program to create an endless loop, for example:
bot1.py
@bot.command()
async def loop1(ctx):
await ctx.send('$loop2')
bot2.py
@bot.command()
async def loop2(ctx):
await ctx.send('$loop1')
But the main problem is a bot would not listen to another bot, so this won't work...
is there a way to make a bot listen to another bot? Thanks in advance! :)