cookie

Ми використовуємо файли cookie для покращення вашого досвіду перегляду. Натиснувши «Прийняти все», ви погоджуєтеся на використання файлів cookie.

avatar

𝙋𝙧𝙞𝙫𝙖𝙩𝙚 𝘾𝙤𝙙𝙚𝙧𝙨 🔥

Official Channel in the @Telegram It does not go against the law. And it has no pornographic and rough posts. please pay attention! Admin @TG_HoneY ❤️ Branch Of @TG_BrotherS

Більше
Країна не вказанаМова не вказанаТехнології та додатки37 470
Рекламні дописи
737
Підписники
Немає даних24 години
-177 днів
-4530 днів

Триває завантаження даних...

Приріст підписників

Триває завантаження даних...

⭐️Cheapest And Most Trusted Smm Panel In Telegram ⭐Telegram Premium Members,Views ☺️Instagram Followers,Likes, Views ❤️Telegram Auto Post Views ☺️YouTube Subscribers,Likes,Views 📌And Many Other Things... ✅️Website Link  GlobalFame.in ✅️Official Channel @GlobalFame ⛔️For Query Discount Contact Owner @TG_Honey
Показати все...
👍 2
👤 USER: All Request: OTP Bot. 🆕 OTP Bot ☄️ Settuping Bot ☄️ ⚙️ open @ command and put your details there.
⚡️ To get The Codes for Free Follow the Steps: 📲 Go to @BjsCodesBot » Choose OTP Bot » Get the Bot Codes at your Email Instantly by clicking 'Get OTP Bot Codes on mail' Button
~ A Creation of BjsCodes
Показати все...
🤖Bjs Codes Free

This Channel Provides free Bots.Business Codes. Discussion :- @BjsCodesChat Coders :- @Royal_Devendra ~ @MrHackeroid @Abhishek71599 @its_Cyborg @MrPrajjwal @spidy1577 More Channels by Us: @NodejsCodes @TBCCodes

👍 2🔥 1
Фото недоступнеДивитись в Telegram
🎲 New Service 867 🌐 Telegram Post Views - Instant - Speed : 📍Fast - Lifetime Refill - Stable price ⛔️ - ₹0.576 per 1000 🎲 New Service 868 🌐 Telegram Post Views - Instant - Speed : 📍Fast - Lifetime Refill - Stable price ⛔️ - ₹0.568 per 1000 🎲 New Service 1293 [Recomended] 🌐 Telegram Post Views - Instant - Speed : 📍Fast - Lifetime Refill - Stable price ⛔️ - ₹0.6 per 1000 🎲Checkout Now Globalfame.in
Показати все...
👍 3
Фото недоступнеДивитись в Telegram
❤ New Bot! ✨ Description - Its A Movie Search Bot ➡️ @PCMovieSearch_Bot
Показати все...
👍 2
✨ Join Me
Фото недоступнеДивитись в Telegram
❤ New Bot! ✨ Description - Its A Font Changer Bot ➡️ @PCFontChanger_Bot
Показати все...
👍 1
✨ Join Me
🔰PHP Auto Kicker Bot codes! ➖➖➖➖➖➖➖➖➖➖➖➖
<?php

//edit bellow three things

$botToken = 'bot-token-here';
$botusername = 'bot-username-without-@';
$webhookUrl = 'webhook-url';

//no need to edit bellow

$update = file_get_contents('php://input');
$updateData = json_decode($update, true);

if (isset($updateData['message'])) {
    $chatId = $updateData['message']['chat']['id'];
    $userId = $updateData['message']['from']['id'];
    $messageText = $updateData['message']['text'];

    if ($messageText === '/start') {
        $keyboard = [
            'inline_keyboard' => [
                [
                    ['text' => 'Add to Channel', 'url' => 'https://t.me/'.$botusername.'?startgroup=invite_to_channel']
                ]
            ]
        ];

        $keyboard = json_encode($keyboard);

        $welcomeMessage = "Hello! *UserFirstName*, welcome to Auto Kicker Bot. I can ban users who leave your channel. Just add me to your channel and make me an admin with ban user rights!";
        $welcomeMessage = str_replace('*UserFirstName*', $updateData['message']['from']['first_name'], $welcomeMessage);

        $apiRequest = [
            'chat_id' => $chatId,
            'text' => $welcomeMessage,
            'parse_mode' => 'Markdown',
            'reply_markup' => $keyboard
        ];

        file_get_contents('https://api.telegram.org/bot' . $botToken . '/sendMessage?' . http_build_query($apiRequest));
    }
}

if (isset($updateData['chat_member']) && $updateData['chat_member']['new_chat_member']['status'] === 'left') {
    $chatId = $updateData['chat_member']['chat']['id'];
    $userId = $updateData['chat_member']['from']['id'];
    $apiRequest = [
        'chat_id' => $chatId,
        'user_id' => $userId
    ];

    file_get_contents('https://api.telegram.org/bot' . $botToken . '/banChatMember?' . http_build_query($apiRequest));
}

$setWebhookRequest = [
    'url' => $webhookUrl,
    'allowed_updates' => json_encode(['message', 'chat_member', 'left_chat_member'])
];

file_get_contents('https://api.telegram.org/bot' . $botToken . '/setWebhook?' . http_build_query($setWebhookRequest));
?>
➖➖➖➖➖➖➖➖➖➖➖➖ 🔐 How to setup this Bot? 1. create new autokickerbot.php file in your 000webhost website filemanger! 2. Now paste codes and edit the three thing which at top of codes! 3. Run that file once to activate with telegram bot! Above is short tutorial on using above php in 000webhost! *3rd step is important  ➖➖➖➖➖➖➖➖➖➖➖➖ 🌟Credit: No Need to Give 📚Publish By: @TG_Honey
Показати все...
👍 1 1😁 1
⁉️BJS: Spam Ban Bjs 📚Description: Bjs protect your bot from "spam", it will ban user if send more than 5 messages in 2 sec. 👁‍🗨Command: @ 📝BJS:
var messageCount = User.getProperty("message_count") || 0;
var lastMessageTime = User.getProperty("last_message_time") || 0;
var currentTime = Date.now();

if (currentTime - lastMessageTime < 2000) {
  messageCount++;
} else {
  messageCount = 1;
}

User.setProperty("message_count", messageCount, "integer");
User.setProperty("last_message_time", currentTime, "integer");

if (messageCount > 5) {
  Bot.sendMessage("*You Are Blocked.*\n_😎Aur kar baap ke bot me spam_")
  Bot.blockChat(chat.id);
  return
}
🔰Creator: @coderajinkya ©Copyright: @PrivateCoders 📰Publisher: @PrivateCoders
Показати все...
😁 1
✅ Bjs for deleting message after a certain ( fixed ) :- 👉 Command : * 💫 Bjs :
var messageID = request.message_id
var deleteAfter = 10

User.setProperty("messageID", messageID, "string")

Bot.run({
  command: "/delete",
  run_after: deleteAfter
})
👉 Command : /delete 💫 Bjs :
var messageID = User.getProperty("messageID")

Api.deleteMessage({
  message_id: messageID
})
👑 Bjs coded by : @Mohit_Kr_Mishra 🌟 Bjs requested by : Renus Hacker ❤️ Share with credit : @codingwithmohit ⚠️ Note : It works in both perosnal & in group too. 🔥 Don't forget to drop reactions 😊
Показати все...
👍 5🔥 1
Random Email Generate Bb Codes For Channel Post 🚀 Command : /email
HTTP.get({ url:"https://tempmail.apinepdev.workers.dev/api/gen",
  success:"email"
})
❤️ Command : email
try {
  var email = JSON.parse(content).email;

  var button = [[{ text: "🔎 Generate Email", callback_data: "/email" }]];
  var editMessageObject = {
    chat_id: "@Privates_RoBot", // By @Privates_RoBot
    text: "<code>" + email + "</code> 🚀 By @Mr_RoleXG",
    parse_mode: "HTML",
    disable_web_page_preview: false,
    message_id: 545,
    reply_markup: { inline_keyboard: button }
  };// By @Privates_RoBot

  Api.editMessageText(editMessageObject);
} catch (error) {
  console.error("Error parsing JSON:", error);//  By @Privates_RoBot
}
👑 Codes by : @Mr_RoleXG ⚡ Api by : @NepCoder © Copyright By : @PrivateCoders 🎀 Note : Must Give Credit If You Are Posting This In Your Channel 💫
Показати все...
2🔥 1
New Smm Bot Launched Link :- @HoneyViews_Bot Key Features:- 1. Mostly All The Services Will Me There 🔜 2. Fully Advanced Bot 3. Deposit Available In Upi, Wallet Or Crypto 4. Cheap Prices Are Available Here
Показати все...
👍 5🔥 1
Оберіть інший тариф

На вашому тарифі доступна аналітика тільки для 5 каналів. Щоб отримати більше — оберіть інший тариф.