Skip to content
Open
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
18 changes: 2 additions & 16 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,19 +1,5 @@
# Marie-2.0-English
A modular telegram Python bot running on python3 with an sqlalchemy database.

Originally a simple group management bot with multiple admin features, it has evolved, becoming extremely modular and
simple to use.

Can be found on telegram as [Marie](https://t.me/BanhammerMarie_bot).

Marie and I are moderating a [support group](https://t.me/MarieSupport), where you can ask for help setting up your
bot, discover/request new features, report bugs, and stay in the loop whenever a new update is available. Of course
I'll also help when a database schema changes, and some table column needs to be modified/added. Note to maintainers that all schema changes will be found in the commit messages, and its their responsibility to read any new commits.

Join the [news channel](https://t.me/MarieNews) if you just want to stay in the loop about new features or
announcements.

Alternatively, [find me on telegram](https://t.me/SonOfLars)! (Keep all support questions in the support chat, where more people can help you.)
# Royal Bot
questions in the support chat, where more people can help you.)

## You can also tap the Deploy To Heroku button below to deploy straight to Heroku!

Expand Down
16 changes: 4 additions & 12 deletions tg_bot/__main__.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,17 +20,12 @@
PM_START_TEXT = """
hoi {}, my name is {}! if you have any questions about how to use me please give me /help...

im a group manager bot maintained by [this person](tg://user?id={}).
im a group manager bot maintained by [this person](tg:/Royal_Boy16/user?id={}).

My future updates will be put into This Channel - @MarieChechi & My Support Group @InFoTelGroup.

This is my [Deploy Code](https://heroku.com/deploy?template=https://github.com/TGExplore/Marie-2.0-English),
you can create clone same like me..
My future updates will be put in this group- My Support Group @the_royal_network .

For more commands click /help...

**Keep in mind that any changes you DO do to the source have to be on github, as per the license.**

"""

HELP_STRINGS = """
Expand All @@ -50,10 +45,7 @@
""".format(dispatcher.bot.first_name, "" if not ALLOW_EXCL else "\nAll of the following commands / or ! can be used...\n")

DONATE_STRING = """Heya, glad to hear you want to donate!
It took lots of work for [my creator](t.me/SonOfLars) to get me to where I am now, and every donation helps \
motivate him to make me even better. All the donation money will go to a better VPS to host me, and/or beer \
(see his bio!). He's just a poor student, so every little helps!
There are two ways of paying him; [PayPal](paypal.me/PaulSonOfLars), or [Monzo](monzo.me/paulnionvestergaardlarsen)."""
It took lots of work for [my creator](t.me/Royal_Boy16)

IMPORTED = {}
MIGRATEABLE = []
Expand Down Expand Up @@ -145,7 +137,7 @@ def start(bot: Bot, update: Update, args: List[str]):
PM_START_TEXT.format(escape_markdown(first_name), escape_markdown(bot.first_name), OWNER_ID),
parse_mode=ParseMode.MARKDOWN)
else:
update.effective_message.reply_text("waked up😏😏😏")
update.effective_message.reply_text("Hey' I'am Online✨⚡")


# for test purposes
Expand Down