mirror of
https://github.com/TeamPGM/PagerMaid_Plugins.git
synced 2024-11-21 14:38:31 +00:00
28 lines
856 B
Python
28 lines
856 B
Python
from pagermaid.listener import listener
|
|
from telethon import functions, types
|
|
from pagermaid.utils import alias_command
|
|
from pagermaid import version
|
|
|
|
|
|
@listener(outgoing=True, command=alias_command("nthmsg"),
|
|
description="获取你发送的第 n 条消息,默认为第一条",
|
|
parameters="<n>")
|
|
async def nthmsg(context):
|
|
await context.edit("获取中 . . .")
|
|
|
|
try:
|
|
n = int(context.parameter[0])
|
|
except:
|
|
n = 1
|
|
|
|
m = object()
|
|
async for m in context.client.iter_messages(context.chat_id, from_user="me", reverse=True, limit=n):
|
|
pass
|
|
try:
|
|
r = await context.client(
|
|
functions.channels.ExportMessageLinkRequest(channel=m.to_id, id=m.id, grouped=True))
|
|
except AttributeError:
|
|
await context.edit('获取失败。')
|
|
return
|
|
await context.edit(r.link)
|