uniborg/stdplugins/all.py

16 lines
553 B
Python
Raw Normal View History

2018-05-18 16:45:09 +00:00
# This Source Code Form is subject to the terms of the Mozilla Public
# License, v. 2.0. If a copy of the MPL was not distributed with this
# file, You can obtain one at http://mozilla.org/MPL/2.0/.
from telethon import events
2018-05-18 16:48:44 +00:00
@borg.on(events.NewMessage(pattern=r"\.all", outgoing=True))
2018-05-18 16:45:09 +00:00
async def _(event):
2018-05-18 16:48:44 +00:00
if event.forward:
return
2018-05-18 16:45:09 +00:00
await event.delete()
mentions = "@all"
async for x in borg.iter_participants(await event.input_chat, 100):
mentions += f"[\u2063](tg://user?id={x.id})"
await event.respond(mentions)