A bot that marks-as-read messages for a few selected groups
Sorry for my bad English and thanks in advance!As mentioned in the title , is there any bot which can auto "mark as read" message of certain groups that I find unimportant and instead of manually clicking on mark as read, the bot does the work? . what i mean to say is once i put these groups in that bot, it should auto read them i need not manually click on mark as read
Submitted June 27, 2023 at 04:41PM by sharag123
on r/TelegramBots via https://www.reddit.com/r/TelegramBots/comments/14kflr9/a_bot_that_marksasread_messages_for_a_few/Backup by @tmebackupA @rtptme project - Other backups: http://pixly.link/tme
Sorry for my bad English and thanks in advance!As mentioned in the title , is there any bot which can auto "mark as read" message of certain groups that I find unimportant and instead of manually clicking on mark as read, the bot does the work? . what i mean to say is once i put these groups in that bot, it should auto read them i need not manually click on mark as read
Submitted June 27, 2023 at 04:41PM by sharag123
on r/TelegramBots via https://www.reddit.com/r/TelegramBots/comments/14kflr9/a_bot_that_marksasread_messages_for_a_few/Backup by @tmebackupA @rtptme project - Other backups: http://pixly.link/tme
Three identical messages shared for example by 3 people at the same time generate in people totally different reactions.
Example: Person 1 (less famous) or 2 (very good famous) are saying something, most people don't believe that and maybe even think it's bullshit. Few days later same message is shared by Elon Musk or a famous celebrity or politician or whatever, immediately the previous message become a true story, approved and liked, if no one told that before. Even if all three shared a bullshit, people still believe more what person 3 is saying, without put such thing in discussion.
Don't be like sheep #StopDieWelle and don't believe just because of the # of followers too!
Example: Person 1 (less famous) or 2 (very good famous) are saying something, most people don't believe that and maybe even think it's bullshit. Few days later same message is shared by Elon Musk or a famous celebrity or politician or whatever, immediately the previous message become a true story, approved and liked, if no one told that before. Even if all three shared a bullshit, people still believe more what person 3 is saying, without put such thing in discussion.
Don't be like sheep #StopDieWelle and don't believe just because of the # of followers too!
Bot telegram Zabbix
Hello guys, I need help.I need a code for a Python bot that does the following:It should check within a Telegram group if there are 2 or more messages that contain a line saying (Original problem ID: x), where X will vary and will be an integer, not a fixed value.If it detects that there is more than 1 message with that content and the same X value, it should delete the messages with the same number.The bot should run approximately once every hour.The bot is executed in Python 3 on Ubuntu.I have this code already, but it doesn't work and gives me an error on line 52.import timefrom telegram import Bot, Updatefrom telegram.ext import Updater, CommandHandler# Bot tokenTOKEN = 'YOUR_TOKEN'# Group IDGROUP_ID = 'Group_ID'# Dictionary to store messages with the same IDmessages = {}# Function to handle the /start commanddef start(update: Update, context) -> None: context.bot.send_message( chat_id=update.effective_chat.id, text='Hello! I am the duplicate message removal bot.' )# Function to check and remove duplicate messagesdef check_duplicates(context) -> None: global messages # Get messages from the group updates = context.bot.get_chat(GROUP_ID).get('updates') # Reset the messages dictionary on each execution messages = {} # Iterate over the messages for update in updates: message = update.get('message') text = message.get('text') # Check if the message contains the line "Original problem ID: x" if text and 'Original problem ID:' in text: # Extract the ID number id_number = int(text.split(':')[-1].strip()) # Check if there are already messages with the same ID if id_number in messages: # If there are more than one message with the same ID, remove them if messages[id_number] != message['message_id']: context.bot.delete_message(chat_id=GROUP_ID, message_id=message['message_id']) else: # Store the message ID messages[id_number] = message['message_id']# Create the botbot = Bot(token=TOKEN)updater = Updater(bot=bot)# Add the handler for the /start commandupdater.dispatcher.add_handler(CommandHandler('start', start))# Get the update queue from the updaterupdate_queue = updater.update_queue# Schedule the execution of the duplicate check every hourupdater.job_queue.run_repeating(check_duplicates, interval=3600, first=0)# Start the botupdater.start_polling()# Keep the bot running until manually stoppedupdater.idle()If someone knows what I'm doing wrong, please let me know. Thank you.
Submitted June 27, 2023 at 07:19PM by Riwil
on r/TelegramBots via https://www.reddit.com/r/TelegramBots/comments/14kjn4v/bot_telegram_zabbix/Backup by @tmebackupA @rtptme project - Other backups: http://pixly.link/tme
Hello guys, I need help.I need a code for a Python bot that does the following:It should check within a Telegram group if there are 2 or more messages that contain a line saying (Original problem ID: x), where X will vary and will be an integer, not a fixed value.If it detects that there is more than 1 message with that content and the same X value, it should delete the messages with the same number.The bot should run approximately once every hour.The bot is executed in Python 3 on Ubuntu.I have this code already, but it doesn't work and gives me an error on line 52.import timefrom telegram import Bot, Updatefrom telegram.ext import Updater, CommandHandler# Bot tokenTOKEN = 'YOUR_TOKEN'# Group IDGROUP_ID = 'Group_ID'# Dictionary to store messages with the same IDmessages = {}# Function to handle the /start commanddef start(update: Update, context) -> None: context.bot.send_message( chat_id=update.effective_chat.id, text='Hello! I am the duplicate message removal bot.' )# Function to check and remove duplicate messagesdef check_duplicates(context) -> None: global messages # Get messages from the group updates = context.bot.get_chat(GROUP_ID).get('updates') # Reset the messages dictionary on each execution messages = {} # Iterate over the messages for update in updates: message = update.get('message') text = message.get('text') # Check if the message contains the line "Original problem ID: x" if text and 'Original problem ID:' in text: # Extract the ID number id_number = int(text.split(':')[-1].strip()) # Check if there are already messages with the same ID if id_number in messages: # If there are more than one message with the same ID, remove them if messages[id_number] != message['message_id']: context.bot.delete_message(chat_id=GROUP_ID, message_id=message['message_id']) else: # Store the message ID messages[id_number] = message['message_id']# Create the botbot = Bot(token=TOKEN)updater = Updater(bot=bot)# Add the handler for the /start commandupdater.dispatcher.add_handler(CommandHandler('start', start))# Get the update queue from the updaterupdate_queue = updater.update_queue# Schedule the execution of the duplicate check every hourupdater.job_queue.run_repeating(check_duplicates, interval=3600, first=0)# Start the botupdater.start_polling()# Keep the bot running until manually stoppedupdater.idle()If someone knows what I'm doing wrong, please let me know. Thank you.
Submitted June 27, 2023 at 07:19PM by Riwil
on r/TelegramBots via https://www.reddit.com/r/TelegramBots/comments/14kjn4v/bot_telegram_zabbix/Backup by @tmebackupA @rtptme project - Other backups: http://pixly.link/tme
https://xtelegram.me/CedIV8Vf82Uk3OTc0 ~~~~~~~~~~~~~~~~~~~~~~~~~~~https://xtelegram.me/OrDd7ybnX0A0MDE0 ~~~~~~~~~~~~~~~~~~~~~~~~~~~https://xtelegram.me/9z6Uknb1YjRk
No text found
Submitted June 27, 2023 at 09:28PM by Responsible-Speed-50
on r/TelegramBots via https://www.reddit.com/r/TelegramBots/comments/14kn1ct/httpsxtelegrammecediv8vf82uk3otc0/Backup by @tmebackupA @rtptme project - Other backups: http://pixly.link/tme
No text found
Submitted June 27, 2023 at 09:28PM by Responsible-Speed-50
on r/TelegramBots via https://www.reddit.com/r/TelegramBots/comments/14kn1ct/httpsxtelegrammecediv8vf82uk3otc0/Backup by @tmebackupA @rtptme project - Other backups: http://pixly.link/tme
"...bringing it closer and closer to a real social network" Bullshit by Italian journalists ...
Do you know that Telegram is more social than most of all socials out there!, and sure not for the introduction of Stories, that if you really want to be honest they can already be done using a channel + auto deletion of the posts.
And for the "closer and closer to a real social network": 1) can you have all other socials on one social like it's possible here on Telegram? 2) can you do unlimited things on other socials like with Telegram 3) can you create crazy workflows on other socials like with Telegram 4) ... Obviously not, and this not just to say that, but are facts that we are showing every time!
Stories are not the real big change of Telegram. Only once Telegram will launch "For You" or feed based channels (possible using other ways), this will make an huge difference. But first ... people should already start to use channels. Because currently the usage of channels is pretty low and most people just use Telegram to chat to people.
So before writing bullshit, please start to use Telegram, instead of using just WhatsApp, with no idea of how Telegram works, all things you can do with Telegram, etc.
Do you know that Telegram is more social than most of all socials out there!, and sure not for the introduction of Stories, that if you really want to be honest they can already be done using a channel + auto deletion of the posts.
And for the "closer and closer to a real social network": 1) can you have all other socials on one social like it's possible here on Telegram? 2) can you do unlimited things on other socials like with Telegram 3) can you create crazy workflows on other socials like with Telegram 4) ... Obviously not, and this not just to say that, but are facts that we are showing every time!
Stories are not the real big change of Telegram. Only once Telegram will launch "For You" or feed based channels (possible using other ways), this will make an huge difference. But first ... people should already start to use channels. Because currently the usage of channels is pretty low and most people just use Telegram to chat to people.
So before writing bullshit, please start to use Telegram, instead of using just WhatsApp, with no idea of how Telegram works, all things you can do with Telegram, etc.
N4de bot
1 free nude https://t. me/RealClothesOffBot?start=refECIGFFEACG
Submitted June 27, 2023 at 11:52PM by JustXrexX
on r/TelegramBots via https://www.reddit.com/r/TelegramBots/comments/14kqquq/n4de_bot/Backup by @tmebackupA @rtptme project - Other backups: http://pixly.link/tme
1 free nude https://t. me/RealClothesOffBot?start=refECIGFFEACG
Submitted June 27, 2023 at 11:52PM by JustXrexX
on r/TelegramBots via https://www.reddit.com/r/TelegramBots/comments/14kqquq/n4de_bot/Backup by @tmebackupA @rtptme project - Other backups: http://pixly.link/tme
Is the app TG Saved Messages safe?
I found out about a bot that organizes files you send to it (@filetobot) and it recommends using the app. Does anyone know if it's actually safe?
Submitted June 28, 2023 at 03:28AM by weavisel
on r/TelegramBots via https://www.reddit.com/r/TelegramBots/comments/14kvu3f/is_the_app_tg_saved_messages_safe/Backup by @tmebackupA @rtptme project - Other backups: http://pixly.link/tme
I found out about a bot that organizes files you send to it (@filetobot) and it recommends using the app. Does anyone know if it's actually safe?
Submitted June 28, 2023 at 03:28AM by weavisel
on r/TelegramBots via https://www.reddit.com/r/TelegramBots/comments/14kvu3f/is_the_app_tg_saved_messages_safe/Backup by @tmebackupA @rtptme project - Other backups: http://pixly.link/tme
new bot
t.me/myundressbot?start=ref=1588098488
Submitted June 28, 2023 at 04:59AM by johnnyj654
on r/TelegramBots via https://www.reddit.com/r/TelegramBots/comments/14kxstd/new_bot/Backup by @tmebackupA @rtptme project - Other backups: http://pixly.link/tme
t.me/myundressbot?start=ref=1588098488
Submitted June 28, 2023 at 04:59AM by johnnyj654
on r/TelegramBots via https://www.reddit.com/r/TelegramBots/comments/14kxstd/new_bot/Backup by @tmebackupA @rtptme project - Other backups: http://pixly.link/tme
Remember, a TelegramFreaks with such symptoms is not a True TelegramFreaks, but just like all sheep TelegramFreaks! Never be a sheep! #StopDieWelle Act rationally, don't follow the mass of people like chickens
@DieWelleTelegram
@DieWelleTelegram
2075 groups and channels related to child abuse banned on June, 27.
Total this month: 47207
Report child abuse using the in-app 'Report' button or to stopCA@telegram.org.
Total this month: 47207
Report child abuse using the in-app 'Report' button or to stopCA@telegram.org.
492 terrorist bots and channels banned on June, 27.
Total this month: 8107
Report terrorist content using the in-app 'Report' button or to abuse@telegram.org.
Total this month: 8107
Report terrorist content using the in-app 'Report' button or to abuse@telegram.org.
❤️ Introducing Nicegram Navigation!
Lost in the sea of Nicegram channels? 🌊
Join our Navigation Channel to easily explore and navigate through all the channels & links of Nicegram 🗺️
🔗 https://t.me/NicegramNavigation
We accidentally missed a channel? Don't worry!
Send us the link, and we'll include it for smooth navigation 👇
Join now and never miss out on the best of Nicegram's channels! 🌟
Don't Miss! #Nicegram x $GRUM
Join Forces - Leading Mem-Coin on the Bitcoin Blockchain!
😼 How To Get $GRUM
❤️ Grumpy Chat
Lost in the sea of Nicegram channels? 🌊
Join our Navigation Channel to easily explore and navigate through all the channels & links of Nicegram 🗺️
🔗 https://t.me/NicegramNavigation
We accidentally missed a channel? Don't worry!
Send us the link, and we'll include it for smooth navigation 👇
Join now and never miss out on the best of Nicegram's channels! 🌟
Don't Miss! #Nicegram x $GRUM
Join Forces - Leading Mem-Coin on the Bitcoin Blockchain!
😼 How To Get $GRUM
❤️ Grumpy Chat
❤️ Icon Contest Update! ❤️
🔔 We're thrilled to witness the tremendous impact of LilyAI within the Nicegram community! In light of this overwhelming response, we've decided to elevate the stakes and make this contest even more exciting for you 🎆
Are you ready to show your artistry? 😎
We invite ALL Nicegram users to participate in our captivating icon design contest for our beloved application.
📄 Contest Guidelines:
1. Only submissions to the chat during the contest period will be accepted.
2. Each user may submit one picture only.
3. Visual effects are allowed and encouraged.
🚫 Strictly Prohibited:
1. Profanity.
2. Spam.
3. Claiming someone else's picture as your own.
📆 Deadline: July 21th
The winning icon will proudly feature in the application's design, forever recognized as a masterpiece crafted by a talented individual like yourself 😍
After careful consideration, we have decided to raise the prize for this contest. The winner will not only receive 50 gems added to their balance but also have the chance to claim the GRAND PRIZE of 100 USDT💰
Don't Miss! #Nicegram x $GRUM
Join Forces - Leading Mem-Coin on the Bitcoin Blockchain!
😼 How To Get $GRUM
❤️ Grumpy Chat
🔔 We're thrilled to witness the tremendous impact of LilyAI within the Nicegram community! In light of this overwhelming response, we've decided to elevate the stakes and make this contest even more exciting for you 🎆
Are you ready to show your artistry? 😎
We invite ALL Nicegram users to participate in our captivating icon design contest for our beloved application.
📄 Contest Guidelines:
1. Only submissions to the chat during the contest period will be accepted.
2. Each user may submit one picture only.
3. Visual effects are allowed and encouraged.
🚫 Strictly Prohibited:
1. Profanity.
2. Spam.
3. Claiming someone else's picture as your own.
📆 Deadline: July 21th
The winning icon will proudly feature in the application's design, forever recognized as a masterpiece crafted by a talented individual like yourself 😍
After careful consideration, we have decided to raise the prize for this contest. The winner will not only receive 50 gems added to their balance but also have the chance to claim the GRAND PRIZE of 100 USDT💰
Don't Miss! #Nicegram x $GRUM
Join Forces - Leading Mem-Coin on the Bitcoin Blockchain!
😼 How To Get $GRUM
❤️ Grumpy Chat
Hello I create a telegram bot like deepnude dm on telegram @indian_smm_provider
I tech you how to create telegram bot like deepnude but it's paid don't come for free......
Submitted June 28, 2023 at 09:42PM by Pleasant_Eye2531
on r/TelegramBots via https://www.reddit.com/r/TelegramBots/comments/14lizsx/hello_i_create_a_telegram_bot_like_deepnude_dm_on/Backup by @tmebackupA @rtptme project - Other backups: http://pixly.link/tme
I tech you how to create telegram bot like deepnude but it's paid don't come for free......
Submitted June 28, 2023 at 09:42PM by Pleasant_Eye2531
on r/TelegramBots via https://www.reddit.com/r/TelegramBots/comments/14lizsx/hello_i_create_a_telegram_bot_like_deepnude_dm_on/Backup by @tmebackupA @rtptme project - Other backups: http://pixly.link/tme
1671 groups and channels related to child abuse banned on June, 28.
Total this month: 48878
Report child abuse using the in-app 'Report' button or to stopCA@telegram.org.
Total this month: 48878
Report child abuse using the in-app 'Report' button or to stopCA@telegram.org.
201 terrorist bots and channels banned on June, 28.
Total this month: 8308
Report terrorist content using the in-app 'Report' button or to abuse@telegram.org.
Total this month: 8308
Report terrorist content using the in-app 'Report' button or to abuse@telegram.org.
Illegal Ai bots on telegram
Earning via generating N*des from AI bots,I got to know about that on 15th may 2023 , its is trending. AI bots were Used is Appropriate to tell here. Many teenagers and scammers targeted innocent girls and middle aged women as a Target . Blackmailers starts blackmailing and demanding money in return they don't put pictures online or send to any of their relatives. That's how it was going.One of my Friends, End up with the solution , And gather plenty of member in the telegram group. For the shake of Society They banned 47+ telegram bots ,which can turn a normal pic in intimating pic or N*de.Telegram group : https://t.me/BOTBANNER Join and help them in this initiative .
Submitted June 29, 2023 at 05:54PM by befogfang
on r/TelegramBots via https://www.reddit.com/r/TelegramBots/comments/14m8m35/illegal_ai_bots_on_telegram/Backup by @tmebackupA @rtptme project - Other backups: http://pixly.link/tme
Earning via generating N*des from AI bots,I got to know about that on 15th may 2023 , its is trending. AI bots were Used is Appropriate to tell here. Many teenagers and scammers targeted innocent girls and middle aged women as a Target . Blackmailers starts blackmailing and demanding money in return they don't put pictures online or send to any of their relatives. That's how it was going.One of my Friends, End up with the solution , And gather plenty of member in the telegram group. For the shake of Society They banned 47+ telegram bots ,which can turn a normal pic in intimating pic or N*de.Telegram group : https://t.me/BOTBANNER Join and help them in this initiative .
Submitted June 29, 2023 at 05:54PM by befogfang
on r/TelegramBots via https://www.reddit.com/r/TelegramBots/comments/14m8m35/illegal_ai_bots_on_telegram/Backup by @tmebackupA @rtptme project - Other backups: http://pixly.link/tme
Telegram
BOT BANNERS
Admin - @shimarux
d33pf4ke bot
https:@//t.me/SnapDress_3_bot?start=5913584729 remove @
Submitted June 29, 2023 at 11:01PM by Remote_Character3090
on r/TelegramBots via https://www.reddit.com/r/TelegramBots/comments/14mgelb/d33pf4ke_bot/Backup by @tmebackupA @rtptme project - Other backups: http://pixly.link/tme
https:@//t.me/SnapDress_3_bot?start=5913584729 remove @
Submitted June 29, 2023 at 11:01PM by Remote_Character3090
on r/TelegramBots via https://www.reddit.com/r/TelegramBots/comments/14mgelb/d33pf4ke_bot/Backup by @tmebackupA @rtptme project - Other backups: http://pixly.link/tme
Telegram
SnapDress
Click to join our official channel for the latest updates.👇
https://t.me/SnapDressFamily
https://t.me/SnapDressFamily
trading mega and dropbox links dm on here or on telegram ztefhzrxg
No text found
Submitted June 29, 2023 at 11:27PM by [deleted]
on r/TelegramBots via https://www.reddit.com/r/TelegramBots/comments/14mh2eo/trading_mega_and_dropbox_links_dm_on_here_or_on/Backup by @tmebackupA @rtptme project - Other backups: http://pixly.link/tme
No text found
Submitted June 29, 2023 at 11:27PM by [deleted]
on r/TelegramBots via https://www.reddit.com/r/TelegramBots/comments/14mh2eo/trading_mega_and_dropbox_links_dm_on_here_or_on/Backup by @tmebackupA @rtptme project - Other backups: http://pixly.link/tme
d33pf4ke bot
https:@//t.me/SnapDress_1_bot?start=5913584729remove @
Submitted June 30, 2023 at 12:16AM by Remote_Character3090
on r/TelegramBots via https://www.reddit.com/r/TelegramBots/comments/14miajz/d33pf4ke_bot/Backup by @tmebackupA @rtptme project - Other backups: http://pixly.link/tme
https:@//t.me/SnapDress_1_bot?start=5913584729remove @
Submitted June 30, 2023 at 12:16AM by Remote_Character3090
on r/TelegramBots via https://www.reddit.com/r/TelegramBots/comments/14miajz/d33pf4ke_bot/Backup by @tmebackupA @rtptme project - Other backups: http://pixly.link/tme
Telegram
SnapDressBot
Click to join our official channel for the latest updates.👇
https://t.me/SnapDressFamily
https://t.me/SnapDressFamily