keyword maf 函数支持使用者触发关键词时回复其他用户 (#129)

This commit is contained in:
Xtao_dada 2021-02-17 23:38:09 +08:00 committed by GitHub
parent 5d392dd21c
commit 08f478f4dc
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -12,11 +12,17 @@ async def del_msg(context, t):
async def main(context, text, tgurl, mode=0, re=1, t=-1):
ids = tgurl.split("/")[-2:]
message = await context.client.get_messages(int(ids[0]), ids=int(ids[1]))
re_id = context.id
try:
data = message.photo
except:
data = message.media.document
sent = await context.client.send_message(context.chat_id, text, file=data, force_document=mode, reply_to=(context.id if re else None))
if context.is_reply:
me = await context.client.get_me()
if context.sender.id == me.id:
msg = await context.get_reply_message()
re_id = msg.id
sent = await context.client.send_message(context.chat_id, text, file=data, force_document=mode, reply_to=(re_id if re else None))
if t >= 0:
await del_msg(sent, t)
return ""
return ""