Skip to content

Upiii #2

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Draft
wants to merge 3 commits into
base: Rioyz
Choose a base branch
from
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,9 +6,9 @@ _**This bot can mention members upto 10,000 in groups and can mention members up
- Telegram Library: Telethon.

### 🚀 Deploy to heroku
[![Deploy](https://www.herokucdn.com/deploy/button.svg)](https://heroku.com/deploy?template=https://github.com/RioProjectX/Mentionbot)
[![Deploy](https://www.herokucdn.com/deploy/button.svg)](https://heroku.com/deploy?template=https://github.com/lutfifirmansyahh/Mentionbot)

### 🎯 Credits and Other
- [Rio](https://github.com/RioProjectX) for this Project ;)
- [Upi](https://github.com/lutfifirmansyahh) for this Project ;)

**Do not forget to follow me on Github ✌️**
2 changes: 1 addition & 1 deletion app.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"name": "Mention All Bot",
"name": "Hashish Mention Bot",
"description": "A simple mention all for telegram.",
"env": {
"TOKEN": {
Expand Down
10 changes: 5 additions & 5 deletions bot.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,19 +16,19 @@

@client.on(events.NewMessage(pattern="^/start$"))
async def start(event):
await event.reply("__**Saya Adalah MentionAll Bot**, Saya Dapat Membantu Anda Mention Semua Member 👻\nClick **/help** Untuk Infromasi Lebih Lanjut__\n\n Maintaned By @fckualot",
await event.reply("__**Saya Adalah Hashish Mention Bot**, Saya Dapat Membantu Anda Mention Semua Member 👻\nClick **/help** Untuk Infromasi Lebih Lanjut__\n\n Maintaned By [Upi](https://t.me/fqcxuu)",
buttons=(
[Button.url('📣 Channel', 'https://t.me/RioProjects'),
Button.url('📦 Group', 'https://t.me/RioGroupSupport')]
[Button.url('📣 Channel', 'https://t.me/upiirobott'),
Button.url('📦 Group', 'https://t.me/ethreborn')]
),
link_preview=False
)
@client.on(events.NewMessage(pattern="^/help$"))
async def help(event):
helptext = "**Help Menu of MentionAllBot**\n\nCommand: /mentionall\n__You can use this command with text what you want to mention others.__\n`Example: /mentionall Good Morning!`\n__You can you this command as a reply to any message. Bot will tag users to that replied messsage__.\n\nFollow [Rio](https://github.com/RioPROJECTX) on Github"
helptext = "**Help Menu of HashishMentionBot**\n\nCommand: /mentionall\n__Kamu bisa menggunakan perintah dengan pesan yang kamu ingin mention all.__\n`Contoh: /mentionall Good Morning!`\n__Anda dapat memberikan perintah ini sebagai balasan untuk pesan apa pun. Bot akan menandai pengguna ke pesan balasan itu__.\n\nFollow [Upi](https://github.com/lutfifirmansyahh) on Github"
await event.reply(helptext,
buttons=(
[Button.url('📣 Channel', 'https://t.me/RioProjects'),
[Button.url('📣 Channel', 'https://t.me/upiirobott'),
Button.url('📦 Group', 'https://t.me/RioGroupSupport')]
),
link_preview=False
Expand Down