如何使用json制作欢迎机器人?不和谐

时间:2020-06-10 07:18:09

标签: python discord discord.py

我希望每个服务器都在其中设置自己的频道!我想知道是否有一种方法可以存储在通道中,以便每个服务器都有自己的欢迎通道!有人能弄清楚吗?

这是我当前的代码:

import discord
from discord.ext import commands

#Client
client = discord.Client()

#Prefix
client = commands.Bot(command_prefix = '!')

x = 'welcome'

#Custom Status
@client.event
async def on_ready():
    print("The bot is ready!")

async def welcomechannel(self, ctx):

    msg = ctx.message.content


async def on_member_join(member):
    channel = discord.utils.get(member.guild.channels, name=x)
    await channel.send("Test")




client.run('MY TOKEN')

1 个答案:

答案 0 :(得分:0)

我最近观看了以下视频:https://www.youtube.com/watch?v=Y9DzfPJsP2s

Witch解释了有关数据库以及为每台服务器保存配置的所有内容!