uz
Feedback
Coding with Mohit

Coding with Mohit

Kanalga Telegram’da oβ€˜tish

🚩 Channel was restricted by Telegram

Ko'proq ko'rsatish
Ma'lumot yo'q
Obunachilar
-624 soatlar
+377 kun
+4230 kun
Postlar arxiv
βœ… 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 πŸ”₯ Don't forget to drop reactions 😊

πŸ₯² Finally, exam over πŸ”œ Coming soon

πŸ™‚ I'm going Offline for 28 days πŸ‘‹ Bye - Bye Friends πŸ₯° Don't leave aane ke baad kuch leke aa raha hu

❀️ A very Happy New Year 2024 to all my friends πŸ₯°
❀️ A very Happy New Year 2024 to all my friends πŸ₯°

πŸ₯Ή And finally, we did it πŸŽ‰ ❀️ Literally, I didn't expect that we will achieve this in such time. I'm very thankful to you all friends πŸ™‚ πŸ”₯ Thank you so much & love you friends for your support. 😊 Keep supporting, something big is coming for my friends πŸ₯³

sticker.webp0.15 KB

βœ”οΈ Those who didn't receive the bot due to server issue, check now the bot has been sent πŸ“€ 😊 And the users who still haven'
βœ”οΈ Those who didn't receive the bot due to server issue, check now the bot has been sent πŸ“€ 😊 And the users who still haven't watched the tutorial, go now & watch it to make your #free Refer & Earn Bot πŸ”₯ ↗️ Tutorial : Click

⚠️ Notice : Those who haven't received the bot, please don't panic because there's server issue of Bots.Business. πŸ‘‰ Those who didn't receive, raise your hands ( βœ‹ ) in the comment & I'll send the bot again after the server uptime. ⚠️ Note : Only users who've claimed & not received will raise hand else go & watch the full tutorial ~ Thank you Β© @codingwithmohit ❀️

βœ”οΈ How to create an Advance Refer and Earn Bot without Coding - Full Tutorial Explained πŸŽ‰ Refer and Earn Bot tutorial publis
βœ”οΈ How to create an Advance Refer and Earn Bot without Coding - Full Tutorial Explained πŸŽ‰ Refer and Earn Bot tutorial published βœ… Link : https://youtube.com/@codingwithmohit05 😍 Go & watch & make your own #Free Refer and Earn Bot πŸ₯° Drop more & more reactions 😊

πŸ”₯ Get ready friends βœ… Subscribe & on the notification: https://youtube.com/@codingwithmohit05
πŸ”₯ Get ready friends βœ… Subscribe & on the notification: https://youtube.com/@codingwithmohit05

sticker.webp0.17 KB

πŸ”₯ I've found a great RUB bot that's literally genuine & is going to pay you all on 03/01/2024 for your referrals 😍 πŸ”— Bot l
πŸ”₯ I've found a great RUB bot that's literally genuine & is going to pay you all on 03/01/2024 for your referrals 😍 πŸ”— Bot link : Click ❓ How will you get free RUB? Β» Start the bot Β» Join all the channels Β» Submit your Payeer ID & Twitter username Β» Done ! Now refer to earn free RUB πŸ†“ βœ”οΈ Payeer link : Click πŸ‘ It's πŸ’―% legit so don't miss & share with your friends to earn free RUB πŸ†“

Do you guys want a revised video tutorial on how to make "Advance Telegram Refer & Earn Bot" in detail ?
Anonymous voting

sticker.webp0.16 KB

Looking for some fantastic content related to Web Development and ProgrammingπŸ€”? Look no further! Join this telegram channel For Fantastic Content 🀩 πŸ‘‡πŸ» https://t.me/codingexpert142 https://t.me/codingexpert142

sticker.webp0.16 KB

πŸ“’ Broadcast anything Bjs :- βœ”οΈ Command : /start πŸ’« Bjs :
var newUser = User.getProperty("newUser")

if (!newUser) {
  User.setProperty("newUser", "Yes", "string")

var url = "https://api.projectoid.site/v1/telegram/botpanel/adduser.php"
  var botID = bot.token.split(":")[0]
  var accessToken = "your access token" // Generate it from https://projectoid.site/services/telegram/bot/register

  HTTP.post({
    url: url,
    body: {
      bot_id: botID,
      access_token: accessToken,
      user_id: userID
    }
  })
}
βœ”οΈ Command : /broadcast πŸ‘‰ Answer : *πŸ“’ Send the message to broadcast.* βœ… Wait for answer : On πŸ’« Bjs :
var admin = Bot.getProperty("admin") //enter your telegram id if don't have admin property
var users = user.telegramid
var botLink = "@" + bot.name

if (users === admin) {
  var url = "https://api.projectoid.site/v1/telegram/botpanel/broadcast.php"
  var botID = bot.token.split(":")[0]
  var accessToken = "your access token" // Generate it from https://projectoid.site/services/telegram/bot/register

  try {
    var msg = message
    function broadcast(type, method, cap, fileid) {
      HTTP.post({
        url: "https://api.projectoid.site/v1/telegram/botpanel/broadcast.php",
        headers: { "content-type": "application/json" },
        body: {
          method: method,
          text: cap,
          access_token: accessToken,
          bot_token: bot.token,
          admin: admin,
          type: type,
          file_id: fileid,
          caption: cap,
          parseMode: "html", //you can change it to Markdown
          disableWebPreview: true,
          protectContent: false //pass true if you don't allow to forward/save message
        }
      })
    }
    var boarding = " <b><u>Broadcast By Admin</u></b> \n\n"
    var caption = !request.caption ? boarding : boarding + " " + request.caption

    if (request.photo[0]) {
      broadcast("photo", "sendPhoto", caption, request.photo[0].file_id)
      return
    }
    if (request.text) {
      broadcast(
        "text",
        "sendMessage",
        " <b><u>Broadcast By Admin</u></b> \n\n" + message,
        null
      )
      return
    }
    if (request.video) {
      broadcast("video", "sendVideo", caption, request.video.file_id)
      return
    }
    if (request.audio) {
      broadcast("audio", "sendAudio", caption, request.audio.file_id)
      return
    }
    if (request.document) {
      broadcast("document", "sendDocument", caption, request.document.file_id)
      return
    }
    if (request.sticker) {
      broadcast("sticker", "sendSticker", null, request.sticker.file_id)
      return
    }
    if (request.animation) {
      broadcast(
        "animation",
        "sendAnimation",
        caption,
        request.animation.file_id
      )
      return
    }
    if (request.voice) {
      broadcast("voice", "sendVoice", caption, request.voice.file_id)
      return
    }
    if (request.video_note) {
      broadcast("video_note", "sendVideo", caption, request.video_note.file_id)
      return
    }
  } catch (err) {
    Bot.sendMessage(
      err + "\n\n*Please Reach out @BjsCodesChat with Error Screenshot.*"
    )
  }
  return
} else {
  var notAdminText = "<i>⚠️ You're not the admin of " + botLink + ".</i>"

  Api.sendMessage({
    text: notAdminText,
    parse_mode: "html"
  })
}
πŸ”— Generate your access token from here : https://projectoid.site/services/telegram/bot/register πŸ‘‘ Bjs coded by : @Mohit_Kr_Mishra 🀝 API credit : Projectoid ❀️ Share with credit : @codingwithmohit Β©

sticker.webp0.17 KB