同时运行两个不和谐机器人令牌

时间:2021-03-25 19:30:11

标签: python discord discord.py token

我需要帮助制作一个脚本,让您可以运行 1 个以上的机器人令牌,而无需为每个机器人重复所有时间的命令代码,例如:

import discord
from discord.ext import commands
import asyncio

client1 = commands.Bot(command_prefix='?')
client2 = commands.Bot(command_prefix='?')

@client1.event
async def on_ready():
    await client1.change_presence(activity=discord.Game('?commands'))
    print('Connected to bot: {}'.format(client1.user.name))
    print('Bot ID: {}'.format(client1.user.id))

@client2.event
async def on_ready():
    await client2.change_presence(activity=discord.Game('?commands'))
    print('Connected to bot: {}'.format(client2.user.name))
    print('Bot ID: {}'.format(client2.user.id))

loop = asyncio.get_event_loop()
loop.create_task(client1.start('ODExMzI2MTU1NzM0OTA4OTQ4.YCwkXQ.xxxxxxxxxxxxxxxxxxxxxxxxxxx'))
loop.create_task(client2.start('ODExMzI4NTU0NTc4MDgzODcx.YCwmmQ.xxxxxxxxxxxxxxxxxxxxxxxxxxx'))
loop.run_forever()

我想把它变成这样:

import discord
from discord.ext import commands
import asyncio

client = commands.Bot(command_prefix='?')
token = ["ODExMzI2MTU1NzM0OTA4OTQ4.YCwkXQ.xxxxxxxxxxxxxxxxxxxxxxxxxxx",  "ODExMzI4NTU0NTc4MDgzODcx.YCwmmQ.xxxxxxxxxxxxxxxxxxxxxxxxxxx"]

@client.event
async def on_ready():
    await client.change_presence(activity=discord.Game('?commands'))
    print('Connected to bot: {}'.format(client.user.name))
    print('Bot ID: {}'.format(client.user.id))

client.run(token)

但它说 发生异常:AttributeError 'list' 对象没有属性 'strip',谁能帮帮我?

1 个答案:

答案 0 :(得分:0)

也许试试

for tok in token:
  client.run(tok)

client = commands.Bot(command_prefix='?')
bot = commands.Bot(command_prefix='?')

bot.run('bottoken')
client.run('bottoken')