im trying to do something for running multible Bots with the Same commands (Like Groovy1, Groovy2 etc)
I tried both of these and not a single worked...
client = commands.Bot(command_prefix = prefix, intents=discord.Intents().all())
@raid.command()
async def test(self, message: str):
await ctx.send(message)
for line in open('test.txt'):
try:
loop.run_forever(client.run(line))
except:
pass
client = commands.Bot(command_prefix = prefix, intents=discord.Intents().all())
@raid.command()
async def test(self, message: str):
await ctx.send(message)
for line in open('test.txt'):
try:
client.run(line)
except:
pass