Discord.py bot - 如果语句为真,则向 discord 服务器发送消息

时间:2021-02-28 22:56:25

标签: python discord

每当我的 if 语句为真时,我想向我的 Discord 服务器发送一条消息。我遇到的问题是,Discord 似乎需要某种事件才能触发,然后才能向服务器发送消息。我找不到任何方法来做到这一点。

def checkCoinSell(coin):

mfiValue = getMfiValue(coin)
vwapValue = getVwapValue(coin)
currentPrice = float(getCurrentCoinPrice(coin))

if currentPrice > vwapValue and mfiValue >= 75.0:
    
    coinsToSell.remove(coin)
    coinsToCheck.append(coin)
    #Send message in a channel on my Discord server

1 个答案:

答案 0 :(得分:0)

channel = client.get_channel(channelId)
await channel.send('your message')

这段代码应该可以。确保 channelId 是一个整数