# Do not edit this file, copy this file & rename it to const.py. Any format error will result in not getting start or help message. from pyrogram.types import InlineKeyboardMarkup, InlineKeyboardButton #use the same format for name & user_id placeholders START_MSG = """ Hi **[{}](tg://user?id={})**,๐ˆโ€™๐ฆ ๐ญ๐ก๐ž ๐€๐๐†๐‘๐˜ ๐Ÿ˜ก ๐๐ˆ๐‘๐ƒ ๐…๐ข๐ฅ๐ž ๐’๐ž๐ซ๐ฏ๐ž ๐๐จ๐ญ ๐Ÿ๐ซ๐จ๐ฆ ๐“๐ž๐š๐ฆ ๐…๐ข๐ซ๐žโšก๐๐จ๐ฅ๐ญ ! ๐๐ž๐ž๐ ๐š ๐Œ๐Ž๐•๐ˆ๐„ ๐จ๐ซ ๐’๐„๐‘๐ˆ๐„๐’ ? ๐‰๐ฎ๐ฌ๐ญ ๐ฌ๐ž๐ง๐ ๐ญ๐ก๐ž ๐ง๐š๐ฆ๐ž, ๐š๐ง๐ ๐ˆโ€™๐ฅ๐ฅ ๐Ÿ๐ข๐ง๐ ๐ข๐ญ ๐Ÿ๐จ๐ซ ๐ฒ๐จ๐ฎ ๐ข๐ง๐ฌ๐ญ๐š๐ง๐ญ๐ฅ๐ฒ! ๐Ÿฟ๐ŸŽฅ ๐–๐š๐ง๐ญ ๐ญ๐จ ๐ค๐ง๐จ๐ฐ ๐ฆ๐จ๐ซ๐ž? ๐“๐ฒ๐ฉ๐ž /help ๐Ÿ๐จ๐ซ ๐š๐ฅ๐ฅ ๐œ๐จ๐ฆ๐ฆ๐š๐ง๐๐ฌ. ๐‹๐ž๐ญโ€™๐ฌ ๐ก๐ฎ๐ง๐ญ ๐๐จ๐ฐ๐ง ๐ฌ๐จ๐ฆ๐ž ๐ ๐ซ๐ž๐š๐ญ ๐œ๐จ๐ง๐ญ๐ž๐ง๐ญ! """ HELP_MSG = """ REQUEST FORMAT :- *MOVIE NAME WITH YEAR (LANGUAGE OPTIONAL) REQUEST LIKE THIS :- =>IRON MANโœ… =>IRON MAN 2008โœ… =>IRON MAN 2008 TAMILโœ… DON'T REQUEST LIKE THIS :- =>IRON MAN MOVIE โŒ =>IRON MAN 2008 GIVE โŒ =>IRON MAN 2008 ANAPUGA โŒ [๐Ÿ™…Don't use this words while searching: HD, MOVIES, SEND, PREDVD, WEB-DL, ANAPUGA, SEND PANNUGA, HDrip, VENUM] If Any Movies Not Available Send Your MOVIE NAMES Via `/request ` or REPORT HERE ๐Ÿ‘‰ @ANGRY_BIRD22_bot โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ” **You can find the bot commands here.** **User Commands:-** /start - Start the bot and view main menu /help - Show this help message /trending - View top 10 trending movies this week /newuploads - View latest 25 newly uploaded movies /request - Request a missing movie from admins (`/request Movie Name`) /settings - Toggle settings of Precise Mode and Button Mode **Precise Mode:** - If Enabled, bot will match the word & return results with only the exact match - If Disabled, bot will match the word & return all the results containing the word **Result Mode:** - If Button, bot will return results in button format - If List, bot will return results in list format - If HyperLink, bot will return results in hyperlink format **Admin Commands:-** /requests - View pending movie requests summary /message - Send message to user's PM - `/message [optional text]` /logs - Get logs as a file /server - Get server stats /restart - Restart the bot /stats - Get bot user stats /broadcast - Reply to a message to send that to all bot users /index - Start indexing a database channel (bot must be admin of the channel if that is private channel) *(You can just forward the message from database channel for starting indexing, no need to use the /index command)* /delete - Reply to a file to delete it from database /autodelete - Set file auto delete time in seconds /repairmode - Enable or disable repair mode - If on, bot will not send any files /customcaption - Set custom caption for files /adminsettings - Get current admin settings /ban - Ban a user from bot - `/ban user_id` /unban - Unban a user from bot - `/unban user_id` /addfilter - Add a text filter - `/addfilter filter message` or `/addfilter "filter multiple words" message` *(If a filter is there, bot will send the filter rather than file)* /delfilter - Delete a text filter - `/delfilter filter` /listfilters - List all filters currently added in the bot /forcesub - Set force subscribe channel - `/forcesub channel_id` *(Bot must be admin of that channel)* /checklink - Check invite link for force subscribe channel /total - Get count of total files in DB """ START_KB = InlineKeyboardMarkup( [ [ InlineKeyboardButton("๐Ÿ†˜ Help", callback_data="help_cb"), InlineKeyboardButton( "๐Ÿ“ž Contact", url="https://telegram.me/ANGRY_BIRD22_bot" ) ], [ InlineKeyboardButton( "โ“ How To Download โ“", url="https://telegram.me/FIREBOLTTutorial/23" ) ], ] ) HELP_KB = InlineKeyboardMarkup( [ [ InlineKeyboardButton("๐Ÿ”™ Back", callback_data="back_m"), ], ] )