Merge pull request #9 from xtaodada/master

merge
This commit is contained in:
AAA 2020-10-09 18:10:34 +08:00 committed by GitHub
commit fd743daf4c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 6 additions and 4 deletions

View File

@ -42,10 +42,10 @@
},
{
"name": "sendat",
"version": "1.0",
"version": "1.2",
"section": "chat",
"maintainer": "fruitymelon",
"size": "13.0 kb",
"size": "13.1 kb",
"supported": true,
"des-short": "定时发送消息。",
"des": "这个人很懒,什么都没有留下。"

View File

@ -221,7 +221,7 @@ async def sendatdump(context):
await context.edit(".\n-sendat " + "\n-sendat ".join(clean_mem))
@listener(outgoing=True, command="sendatparse", diagnostics=True, ignore_edited=True,
description="导入已导出的 sendat 配置")
description="导入已导出的 sendat 配置。用法:-sendatparse 在此处粘贴 -sendatdump 命令的输出结果")
async def sendatparse(context):
chat = await context.get_chat()
text = "\n".join(context.message.text.split("\n")[1:])
@ -230,11 +230,13 @@ async def sendatparse(context):
if text.find(".\n") == 0:
text = "\n".join(text.split("\n")[1:])
lines = text.split("\n")
pms = []
for i in range(len(lines)):
line = lines[i]
sent = await sendmsg(context, chat, line)
sent.parameter = line.replace("-sendat ", "").split(" ")
await sendat(sent)
pms.append(sendat(sent))
await asyncio.wait(pms)
""" Modified pagermaid autorespond plugin. """