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-06-14 21:09:25 +00:00
|
|
|
if event.fwd_from:
|
2018-05-18 16:48:44 +00:00
|
|
|
return
|
2018-05-18 16:45:09 +00:00
|
|
|
await event.delete()
|
|
|
|
mentions = "@all"
|
2018-06-22 08:46:39 +00:00
|
|
|
async for x in borg.iter_participants(await event.get_input_chat(), 100):
|
2018-05-18 16:45:09 +00:00
|
|
|
mentions += f"[\u2063](tg://user?id={x.id})"
|
|
|
|
await event.respond(mentions)
|