Cashapp payment bot
Hello there...Is there a bot, or can one be created that When activated itAsks user which country they are inIf in the US sends a link to cashapp to remote paymentOnce paid generates an invite link for a private group Sends them a message which includes this link2a. If they are not in the US and no access to cashapp3a. Sends them to a eGift card site with instructions to purchase and send code 4a. Once code is sent it generates an invite link5a. Sends them a message which includes invite link
Submitted April 03, 2025 at 03:10PM by groupsession18
on r/TelegramBots via https://www.reddit.com/r/TelegramBots/comments/1jqi12z/cashapp_payment_bot/?utm_source=iftttBackup by @tmebackupA @rtptme project - Other backups: http://pixly.link/tme
Hello there...Is there a bot, or can one be created that When activated itAsks user which country they are inIf in the US sends a link to cashapp to remote paymentOnce paid generates an invite link for a private group Sends them a message which includes this link2a. If they are not in the US and no access to cashapp3a. Sends them to a eGift card site with instructions to purchase and send code 4a. Once code is sent it generates an invite link5a. Sends them a message which includes invite link
Submitted April 03, 2025 at 03:10PM by groupsession18
on r/TelegramBots via https://www.reddit.com/r/TelegramBots/comments/1jqi12z/cashapp_payment_bot/?utm_source=iftttBackup by @tmebackupA @rtptme project - Other backups: http://pixly.link/tme
πΈ Breaking News from the HyperLancer Galaxy!
Congratulations, space explorers! Over 2,000 of you have successfully completed the onboarding process and are ready to embark on creative tasks with HyperLancer AI! π
To spice things up, we're thrilled to announce an exciting contest! Here's how it works:
π Contest Rules:
Finish all onboarding tasks.
Upload our premade video to YouTube or TikTok.
Once you do, you're automatically entered into a thrilling race for a 300 USDT prize pool! π¨βπ
π¨βπ How to Win:
Be among the astronauts whose video from Step 4 and 5 garners the most views.
Rack up views until next Tuesday, April 10, 2025.
The top-viewed videos will share the prize pool! So, if you haven't finished onboarding, now's the time to jump in and join the fun contest. Let's make this mission unforgettable! π¨βπ
Ready to soar to new heights? Complete your onboarding and enter the contest today! πβ¨
π½ https://t.me/HyperLancerAI_bot/app π½
Congratulations, space explorers! Over 2,000 of you have successfully completed the onboarding process and are ready to embark on creative tasks with HyperLancer AI! π
To spice things up, we're thrilled to announce an exciting contest! Here's how it works:
π Contest Rules:
Finish all onboarding tasks.
Upload our premade video to YouTube or TikTok.
Once you do, you're automatically entered into a thrilling race for a 300 USDT prize pool! π¨βπ
π¨βπ How to Win:
Be among the astronauts whose video from Step 4 and 5 garners the most views.
Rack up views until next Tuesday, April 10, 2025.
The top-viewed videos will share the prize pool! So, if you haven't finished onboarding, now's the time to jump in and join the fun contest. Let's make this mission unforgettable! π¨βπ
Ready to soar to new heights? Complete your onboarding and enter the contest today! πβ¨
π½ https://t.me/HyperLancerAI_bot/app π½
Can you test out this bot please
https://snapchatcracker.net/r/5576879972Really wanting to see if this works let me know your experience
Submitted April 03, 2025 at 10:00PM by Delicious-Location20
on r/TelegramBots via https://www.reddit.com/r/TelegramBots/comments/1jqsjiq/can_you_test_out_this_bot_please/?utm_source=iftttBackup by @tmebackupA @rtptme project - Other backups: http://pixly.link/tme
https://snapchatcracker.net/r/5576879972Really wanting to see if this works let me know your experience
Submitted April 03, 2025 at 10:00PM by Delicious-Location20
on r/TelegramBots via https://www.reddit.com/r/TelegramBots/comments/1jqsjiq/can_you_test_out_this_bot_please/?utm_source=iftttBackup by @tmebackupA @rtptme project - Other backups: http://pixly.link/tme
My Telegram Bot Keeps Repeating the Product List β Need Help Debugging
I'm building a Telegram bot using Google Apps Script to fetch product prices from a Google Sheet. The bot should:Send a product list when the user types "/start". (searches the data in my google sheet)Let the user select a product.Return the price for the selected product (also from my google sheet)THATS IT!im using googlesheets appscripts btw.Issue: The bot keeps sending the product list non-stop in a loop until I archive the deployment on appscript. I suspect there's an issue with how I'm handling sessions or webhook triggers. believe it or not, i asked chatgpt (given that it wrote the code as well, im novice at coding) deepseek, and other AI's and they still couldn't figure it out. im novice at this but i did my best at trying to fix it but this is my last resort.
heres what chatgpt is suggestion the issue is:
Duplicate Updates: You have many Duplicate detected logs. This happens because Telegram sends updates via webhook and expects a quick 200 OK response. If your script takes too long to process (which Apps Script often can, especially with API calls), Telegram assumes the delivery failed and resends the same update. Your duplicate detection is working correctly by ignoring them, but it highlights a potential performance bottleneck or that the initial processing might be too slow.to which i have no clue what that means.Hereβs my full code (replace BOT_TOKEN with your own when testing):(my google shee has two columns columnA-products, columnB-prices const TELEGRAM_TOKEN = 'YOUR_BOT_TOKEN';const TELEGRAM_API_URL = 'https://api.telegram.org/bot' + TELEGRAM_TOKEN;const SCRIPT_URL = 'YOUR_DEPLOYED_SCRIPT_URL';const userSessions = {};// Main function to handle incoming webhook updatesfunction doPost(e) {try {const update = JSON.parse(e.postData.contents);if (update.message) {handleMessage(update.message);} else if (update.callback_query) {handleCallbackQuery(update.callback_query);}} catch (error) {Logger.log('Error processing update: ' + error);}return ContentService.createTextOutput('OK');}// Handle regular messagesfunction handleMessage(message) {const chatId = message.chat.id;const text = message.text || '';if (text.startsWith('/start')) {if (!userSessions[chatId]) {userSessions[chatId] = true;sendProductList(chatId);}} else {sendMessage(chatId, "Please use /start to see the list of available products.");}}// Handle product selection from inline keyboardfunction handleCallbackQuery(callbackQuery) {const chatId = callbackQuery.message.chat.id;const messageId = callbackQuery.message.message_id;const productName = callbackQuery.data;const price = getProductPrice(productName);let responseText = price !== null? `π° Price for ${productName}: $${price}`: `β οΈ Sorry, couldn't find price for ${productName}`;editMessage(chatId, messageId, responseText);answerCallbackQuery(callbackQuery.id);delete userSessions[chatId]; // Reset session}// Send the list of productsfunction sendProductList(chatId) {const products = getProductNames();if (products.length === 0) {sendMessage(chatId, "No products found in the database.");return;}const keyboard = products.slice(0, 100).map(product => [{ text: product, callback_data: product }]);sendMessageWithKeyboard(chatId, "π Please select a product to see its price:", keyboard);}// ===== GOOGLE SHEET INTEGRATION ===== //function getProductNames() {try {const sheet = SpreadsheetApp.getActiveSpreadsheet().getSheetByName("Products");if (!sheet) throw new Error("Products sheet not found");const lastRow = sheet.getLastRow();if (lastRow < 2) return [];return sheet.getRange(2, 1, lastRow - 1, 1).getValues().flat().filter(name => name && name.toString().trim() !== '');} catch (error) {Logger.log('Error getting product names: ' + error);return [];}}function getProductPrice(productName) {try {const sheet = SpreadsheetApp.getActiveSpreadsheet().getSheetByName("Products");const data = sheet.getRange(2, 1, sheet.getLastRow() - 1, 2).getValues();for (let row of data) {if (row[0] && row[0].toString().trim()β¦
I'm building a Telegram bot using Google Apps Script to fetch product prices from a Google Sheet. The bot should:Send a product list when the user types "/start". (searches the data in my google sheet)Let the user select a product.Return the price for the selected product (also from my google sheet)THATS IT!im using googlesheets appscripts btw.Issue: The bot keeps sending the product list non-stop in a loop until I archive the deployment on appscript. I suspect there's an issue with how I'm handling sessions or webhook triggers. believe it or not, i asked chatgpt (given that it wrote the code as well, im novice at coding) deepseek, and other AI's and they still couldn't figure it out. im novice at this but i did my best at trying to fix it but this is my last resort.
heres what chatgpt is suggestion the issue is:
Duplicate Updates: You have many Duplicate detected logs. This happens because Telegram sends updates via webhook and expects a quick 200 OK response. If your script takes too long to process (which Apps Script often can, especially with API calls), Telegram assumes the delivery failed and resends the same update. Your duplicate detection is working correctly by ignoring them, but it highlights a potential performance bottleneck or that the initial processing might be too slow.to which i have no clue what that means.Hereβs my full code (replace BOT_TOKEN with your own when testing):(my google shee has two columns columnA-products, columnB-prices const TELEGRAM_TOKEN = 'YOUR_BOT_TOKEN';const TELEGRAM_API_URL = 'https://api.telegram.org/bot' + TELEGRAM_TOKEN;const SCRIPT_URL = 'YOUR_DEPLOYED_SCRIPT_URL';const userSessions = {};// Main function to handle incoming webhook updatesfunction doPost(e) {try {const update = JSON.parse(e.postData.contents);if (update.message) {handleMessage(update.message);} else if (update.callback_query) {handleCallbackQuery(update.callback_query);}} catch (error) {Logger.log('Error processing update: ' + error);}return ContentService.createTextOutput('OK');}// Handle regular messagesfunction handleMessage(message) {const chatId = message.chat.id;const text = message.text || '';if (text.startsWith('/start')) {if (!userSessions[chatId]) {userSessions[chatId] = true;sendProductList(chatId);}} else {sendMessage(chatId, "Please use /start to see the list of available products.");}}// Handle product selection from inline keyboardfunction handleCallbackQuery(callbackQuery) {const chatId = callbackQuery.message.chat.id;const messageId = callbackQuery.message.message_id;const productName = callbackQuery.data;const price = getProductPrice(productName);let responseText = price !== null? `π° Price for ${productName}: $${price}`: `β οΈ Sorry, couldn't find price for ${productName}`;editMessage(chatId, messageId, responseText);answerCallbackQuery(callbackQuery.id);delete userSessions[chatId]; // Reset session}// Send the list of productsfunction sendProductList(chatId) {const products = getProductNames();if (products.length === 0) {sendMessage(chatId, "No products found in the database.");return;}const keyboard = products.slice(0, 100).map(product => [{ text: product, callback_data: product }]);sendMessageWithKeyboard(chatId, "π Please select a product to see its price:", keyboard);}// ===== GOOGLE SHEET INTEGRATION ===== //function getProductNames() {try {const sheet = SpreadsheetApp.getActiveSpreadsheet().getSheetByName("Products");if (!sheet) throw new Error("Products sheet not found");const lastRow = sheet.getLastRow();if (lastRow < 2) return [];return sheet.getRange(2, 1, lastRow - 1, 1).getValues().flat().filter(name => name && name.toString().trim() !== '');} catch (error) {Logger.log('Error getting product names: ' + error);return [];}}function getProductPrice(productName) {try {const sheet = SpreadsheetApp.getActiveSpreadsheet().getSheetByName("Products");const data = sheet.getRange(2, 1, sheet.getLastRow() - 1, 2).getValues();for (let row of data) {if (row[0] && row[0].toString().trim()β¦
713 terrorist bots and channels banned on April, 3.
Total this month: 1808
Report terrorist content using the in-app 'Report' button or to abuse@telegram.org.
Total this month: 1808
Report terrorist content using the in-app 'Report' button or to abuse@telegram.org.
3286 groups and channels related to child abuse banned on April, 3.
Total this month: 9733
Report child abuse using the in-app 'Report' button or to stopCA@telegram.org.
Total this month: 9733
Report child abuse using the in-app 'Report' button or to stopCA@telegram.org.
219 terrorist bots and channels banned on April, 4.
Total this month: 2027
Report terrorist content using the in-app 'Report' button or to abuse@telegram.org.
Total this month: 2027
Report terrorist content using the in-app 'Report' button or to abuse@telegram.org.
4057 groups and channels related to child abuse banned on April, 4.
Total this month: 13790
Report child abuse using the in-app 'Report' button or to stopCA@telegram.org.
Total this month: 13790
Report child abuse using the in-app 'Report' button or to stopCA@telegram.org.
3511 groups and channels related to child abuse banned on April, 5.
Total this month: 17301
Report child abuse using the in-app 'Report' button or to stopCA@telegram.org.
Total this month: 17301
Report child abuse using the in-app 'Report' button or to stopCA@telegram.org.
238 terrorist bots and channels banned on April, 5.
Total this month: 2265
Report terrorist content using the in-app 'Report' button or to abuse@telegram.org.
Total this month: 2265
Report terrorist content using the in-app 'Report' button or to abuse@telegram.org.
βοΈ Looks like these bots have few ratings!
Try them and share your opinion, vote!
Try them and share your opinion, vote!
ποΈ Download Voice Messages to Your Device!
Now you can download important voice messages directly to your device. No more losing them, and easy access whenever you need!
How it works:
1οΈβ£ Open the chat with the voice message.
2οΈβ£ Long-press the message.
3οΈβ£ Tap the Download button.
4οΈβ£ Done! The message is saved to your device.
β¬οΈ Never lose an important voice message again!
Download Nicegram:
π AppStore | π GooglePlay
Join Chat:
π¬π§ EN Chat | π·πΊ RU Chat
Follow us:
βοΈ X | πΉ YouTube
Website | Features | Navigation
Now you can download important voice messages directly to your device. No more losing them, and easy access whenever you need!
How it works:
1οΈβ£ Open the chat with the voice message.
2οΈβ£ Long-press the message.
3οΈβ£ Tap the Download button.
4οΈβ£ Done! The message is saved to your device.
β¬οΈ Never lose an important voice message again!
Download Nicegram:
π AppStore | π GooglePlay
Join Chat:
π¬π§ EN Chat | π·πΊ RU Chat
Follow us:
βοΈ X | πΉ YouTube
Website | Features | Navigation
Snapchat bot
https://snapchatcracker.net/r/5780677322
Submitted April 07, 2025 at 01:42AM by CollectingShit
on r/TelegramBots via https://www.reddit.com/r/TelegramBots/comments/1jt7sic/snapchat_bot/?utm_source=iftttBackup by @tmebackupA @rtptme project - Other backups: http://pixly.link/tme
https://snapchatcracker.net/r/5780677322
Submitted April 07, 2025 at 01:42AM by CollectingShit
on r/TelegramBots via https://www.reddit.com/r/TelegramBots/comments/1jt7sic/snapchat_bot/?utm_source=iftttBackup by @tmebackupA @rtptme project - Other backups: http://pixly.link/tme
Snapchat bot
https://snapchatcracker.net/r/8031702559
Submitted April 07, 2025 at 04:38AM by PopeWyrm
on r/TelegramBots via https://www.reddit.com/r/TelegramBots/comments/1jtb25z/snapchat_bot/?utm_source=iftttBackup by @tmebackupA @rtptme project - Other backups: http://pixly.link/tme
https://snapchatcracker.net/r/8031702559
Submitted April 07, 2025 at 04:38AM by PopeWyrm
on r/TelegramBots via https://www.reddit.com/r/TelegramBots/comments/1jtb25z/snapchat_bot/?utm_source=iftttBackup by @tmebackupA @rtptme project - Other backups: http://pixly.link/tme
Snapchat bot
https://snapchatcracker.net/r/5780677322
Submitted April 07, 2025 at 09:00AM by CollectingShit
on r/TelegramBots via https://www.reddit.com/r/TelegramBots/comments/1jtf7c1/snapchat_bot/?utm_source=iftttBackup by @tmebackupA @rtptme project - Other backups: http://pixly.link/tme
https://snapchatcracker.net/r/5780677322
Submitted April 07, 2025 at 09:00AM by CollectingShit
on r/TelegramBots via https://www.reddit.com/r/TelegramBots/comments/1jtf7c1/snapchat_bot/?utm_source=iftttBackup by @tmebackupA @rtptme project - Other backups: http://pixly.link/tme
578 terrorist bots and channels banned on April, 6.
Total this month: 2843
Report terrorist content using the in-app 'Report' button or to abuse@telegram.org.
Total this month: 2843
Report terrorist content using the in-app 'Report' button or to abuse@telegram.org.
3496 groups and channels related to child abuse banned on April, 6.
Total this month: 20797
Report child abuse using the in-app 'Report' button or to stopCA@telegram.org.
Total this month: 20797
Report child abuse using the in-app 'Report' button or to stopCA@telegram.org.
Snapchat Hack
https://discord.gg/XKRrbTT3 Shows proof before payment and has a free option.
Submitted April 07, 2025 at 12:58PM by PopeWyrm
on r/TelegramBots via https://www.reddit.com/r/TelegramBots/comments/1jtigvc/snapchat_hack/?utm_source=iftttBackup by @tmebackupA @rtptme project - Other backups: http://pixly.link/tme
https://discord.gg/XKRrbTT3 Shows proof before payment and has a free option.
Submitted April 07, 2025 at 12:58PM by PopeWyrm
on r/TelegramBots via https://www.reddit.com/r/TelegramBots/comments/1jtigvc/snapchat_hack/?utm_source=iftttBackup by @tmebackupA @rtptme project - Other backups: http://pixly.link/tme
Transcription, summarization and translation bot for voice notes
I live in a very multinational community and there are always voice notes in various languages flying around. I had a fairly clunky workflow for translating the voice notes in languages I don't speak, but I got bored of it at the weekend so made this. Three different bots to transcribe, summarize or translate voice notes. Works with native Telegram voice notes, or voice notes forwarded in from other chat apps. Totally free and without limits for now, just wanted to help people out in similar situations. Any thoughts or feedback welcome πBaraphrase
Submitted April 07, 2025 at 03:57PM by Just-a-torso
on r/TelegramBots via https://www.reddit.com/r/TelegramBots/comments/1jtlvah/transcription_summarization_and_translation_bot/?utm_source=iftttBackup by @tmebackupA @rtptme project - Other backups: http://pixly.link/tme
I live in a very multinational community and there are always voice notes in various languages flying around. I had a fairly clunky workflow for translating the voice notes in languages I don't speak, but I got bored of it at the weekend so made this. Three different bots to transcribe, summarize or translate voice notes. Works with native Telegram voice notes, or voice notes forwarded in from other chat apps. Totally free and without limits for now, just wanted to help people out in similar situations. Any thoughts or feedback welcome πBaraphrase
Submitted April 07, 2025 at 03:57PM by Just-a-torso
on r/TelegramBots via https://www.reddit.com/r/TelegramBots/comments/1jtlvah/transcription_summarization_and_translation_bot/?utm_source=iftttBackup by @tmebackupA @rtptme project - Other backups: http://pixly.link/tme
Liquidating our Telegram Bot Business
Hello everyone, We are closing down our telegram AI bot business and are looking to sell our assets.We have 18.000 bots (controlled with they API keys by a central bot) with a total combined user base of over 1.000.000 active users. We also have a whole working code for our AI business that we are also willing to liquidate. Is that something you or someone you know would be interested in taking over?Contact me for more details!
Submitted April 07, 2025 at 04:29PM by PepperoniSlices
on r/TelegramBots via https://www.reddit.com/r/TelegramBots/comments/1jtmlyz/liquidating_our_telegram_bot_business/?utm_source=iftttBackup by @tmebackupA @rtptme project - Other backups: http://pixly.link/tme
Hello everyone, We are closing down our telegram AI bot business and are looking to sell our assets.We have 18.000 bots (controlled with they API keys by a central bot) with a total combined user base of over 1.000.000 active users. We also have a whole working code for our AI business that we are also willing to liquidate. Is that something you or someone you know would be interested in taking over?Contact me for more details!
Submitted April 07, 2025 at 04:29PM by PepperoniSlices
on r/TelegramBots via https://www.reddit.com/r/TelegramBots/comments/1jtmlyz/liquidating_our_telegram_bot_business/?utm_source=iftttBackup by @tmebackupA @rtptme project - Other backups: http://pixly.link/tme
π€ Nicegram for Android Just Got Even Better!
Have you updated to the latest version yet?
In this release, weβve packed some powerful upgrades:
π Telegram Code Merge β Now includes all core updates from the 11.9 Telegram version.
π Spy on Friends β View your friends' latest messages in shared groups and channels.
π Bug Fixes β Because nobody likes crashes or glitches.
Already rocking these features? Let us know! If not, update now and explore whatβs new:
π Update Nicegram on Google Play
Have you updated to the latest version yet?
In this release, weβve packed some powerful upgrades:
π Telegram Code Merge β Now includes all core updates from the 11.9 Telegram version.
π Spy on Friends β View your friends' latest messages in shared groups and channels.
π Bug Fixes β Because nobody likes crashes or glitches.
Already rocking these features? Let us know! If not, update now and explore whatβs new:
π Update Nicegram on Google Play