mirror of
https://github.com/TeamPGM/PagerMaid_Plugins.git
synced 2024-11-22 12:15:37 +00:00
parent
9fb2606fd9
commit
0f043a40ea
@ -372,12 +372,12 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "msgst",
|
"name": "msgst",
|
||||||
"version": "1.0",
|
"version": "1.1",
|
||||||
"section": "chat",
|
"section": "chat",
|
||||||
"maintainer": "c3b2a",
|
"maintainer": "c3b2a",
|
||||||
"size": "3.0 kb",
|
"size": "3.1 kb",
|
||||||
"supported": true,
|
"supported": true,
|
||||||
"des-short": "消息每天定时发送",
|
"des-short": "每天定时发送消息",
|
||||||
"des": "命令: msgst, msgset。"
|
"des": "命令: msgst, msgset。"
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
|
6
msgst.py
6
msgst.py
@ -1,4 +1,4 @@
|
|||||||
import asyncio
|
import time, asyncio
|
||||||
from pagermaid import bot, redis, redis_status
|
from pagermaid import bot, redis, redis_status
|
||||||
from pagermaid.listener import listener
|
from pagermaid.listener import listener
|
||||||
|
|
||||||
@ -24,7 +24,7 @@ async def del_msg(context, t_lim):
|
|||||||
|
|
||||||
@listener(is_plugin=True, outgoing=True, command="msgst",
|
@listener(is_plugin=True, outgoing=True, command="msgst",
|
||||||
description="消息每天定时发送",
|
description="消息每天定时发送",
|
||||||
parameters="new <time> <text>` 或 `del <msg_id>` 或 `list")
|
parameters="new 时:分:秒 消息` 或 `del <msg_id>` 或 `list")
|
||||||
async def process(context):
|
async def process(context):
|
||||||
params = []
|
params = []
|
||||||
for p in context.parameter:
|
for p in context.parameter:
|
||||||
@ -78,4 +78,6 @@ async def sendmsg(context):
|
|||||||
if parse[0] == "send_msg":
|
if parse[0] == "send_msg":
|
||||||
async with bot.conversation(bot_data[1]) as conversation:
|
async with bot.conversation(bot_data[1]) as conversation:
|
||||||
await bot.send_read_acknowledge(conversation.chat_id)
|
await bot.send_read_acknowledge(conversation.chat_id)
|
||||||
|
s_time = int(time.time() + 1) - time.time()
|
||||||
|
await asyncio.sleep(s_time)
|
||||||
await bot.send_message(int(parse[1]), "|".join(parse[2:]))
|
await bot.send_message(int(parse[1]), "|".join(parse[2:]))
|
||||||
|
Loading…
Reference in New Issue
Block a user