Coder Niharika

Description
We recommend to visit

Community chat: https://t.me/hamster_kombat_chat_2

Website: https://hamster.network

Twitter: x.com/hamster_kombat

YouTube: https://www.youtube.com/@HamsterKombat_Official

Bot: https://t.me/hamster_kombat_bot

Last updated 3 months, 2 weeks ago

Your easy, fun crypto trading app for buying and trading any crypto on the market.
📱 App: @Blum
🤖 Trading Bot: @BlumCryptoTradingBot
🆘 Help: @BlumSupport
💬 Chat: @BlumCrypto_Chat

Last updated 9 months ago

Turn your endless taps into a financial tool.
Join @tapswap_bot


Collaboration - @taping_Guru

Last updated 4 months ago

5 months, 2 weeks ago

https://t.me/UPIMONEYGIFTbot?start=r03819663656

JUST START AND CLICK THAT VERIFY BUTTON

8 months ago

Telegram Bot Broadcast - BJS.

Command: /start

```
let secret = "your_secret_token_here";
// Generate it from https://api.nirvanaindia.site/PBC/Broadcast/Secret-Token if you don't have one.

HTTP.get({
  url: "https://api.nirvanaindia.site/PBC/Broadcast/add-user.php?secret=" + secret + "&user=" + user.telegramid
});

// Add this at the beginning or end of your existing /start command code.
```

Command: /broadcast
Answer: Enter your message for broadcast.
Wait for answer: true

```
/if(user.telegramid!="adminid"){
Bot.sendMessage("Only admin can do broadcast on the bot.");
return;
}
Uncomment it and change your telegram id with admin id if only admin want to broadcast in bot
/
let secret = "your_secret_token_here";
// Generate it from https://api.nirvanaindia.site/PBC/Broadcast/Secret-Token if you don't have one.

HTTP.get({
  url: "https://api.nirvanaindia.site/PBC/Broadcast/run-broadcast.php?bot=" + bot.token + "&secret=" + secret + "&from_chat_id=" + user.telegramid + "&message_id=" + request.message_id
});
```

⚠️ Generate secret token from https://api.nirvanaindia.site/PBC/Broadcast/Secret-Token to use in the code.

? Highly secure - We don't save any bot token to ensure your privacy.

ℹ️ Inspired from @Projectoid.
ℹ️ Credits of this post goes to @PBCAdmin.

© @siyabots

9 months, 3 weeks ago

Auto-Accept Join Requests in Channel Bot - BJS

Command: *

```
if (!request) return

if (typeof request === "string") {
try {
request = JSON.parse(request)
} catch (e) {
return
}
}

let info = request.chat_join_request

if (info) {
Api.sendMessage({
chat_id: info.from.id,
text: "Your request to join the channel has been accepted."
})

Api.approveChatJoinRequest({
chat_id: info.chat.id,
user_id: info.from.id
})
}
```

Note: The bot must be an admin in the channel for this to work.

© @siyabots

10 months, 1 week ago

New Game!
BlockLand Windows Edition.

https://youtu.be/XidFY9sUXL4?si=TR4uK4gdvAS0Sarq

Blockland is an immersive sandbox adventure game where your imagination is the only limit. Explore vast, procedurally generated worlds, gather resources, and craft everything from simple tools to complex structures. Whether you want to build towering castles, delve into deep caverns, or embark on epic quests, Blockland offers endless possibilities. Play solo or join friends in a multiplayer mode, and experience a world where every block you place shapes your unique adventure. On Windows OS!!

By Vector Studios

11 months ago

Create your own music bot without codes:

Step 1:
Start @PBCMusicBot

Step 2: Send your bot token in format like:
/clone 7490228482:AAF1LzSVFJuzyI9MblyOh_8ZaGRzZ_uhCNA

1 year ago

New on bots.business?
Wants to develope different & unique telegram bots?

FlashCom made a good solution!
@GetMartBot - See telegram bots! Upto 40+ different bots available with code for bots.business.

For more join @flashcomofficial & @siyabots

1 year, 1 month ago

Terabox video stream link generator bot - BJS.

Command: /download
Answer: Send your terabox link to get it's download link.
Wait for answer: true

```
var array=["https://www.terabox.com/s/1","https://teraboxapp.com/s/1","https://www.1024tera.com/s/1","https://nephobox.com/s/1","https://www.terabox.app/s/1","https://momerybox.com/s/1","https://terabox.com/s/1"];

var sI=null
for (let i = 0; i < array.length; i++) {
  if ((message).startsWith(array[i])) {
    sI = i;
    break;
  }
}
var shrt
if(sI !=null){
shrt=(message).replace(array[sI],'')
}else{
Bot.sendMessage("Not Valid Url !")
return
}

Api.sendMessage({text:"Watch Online :\nhttps://www.terabox.com/sharing/embed?autoplay=true&resolution=1080&mute=false&surl="+shrt,parse_mode:'html'})
```

? Credits: @sarozpaudel
© Copyrights: @sarozpaudel

1 year, 1 month ago

Captcha verification in the bot - BJS code.

Command: /verify

```
var userAns = params
if(request.data){
var message_id = request.message.message_id
var chat_id = request.message.chat.id
Api.deleteMessage({
chat_id :  chat_id,
message_id : message_id
})
}
if(!params){
return
}else{
let ans = User.getProperty('captcha')

if(userAns==ans){
Api.answerCallbackQuery({
  callback_query_id: request.id,
  text: "That's correct ! Now you can use the bot.",
  show_alert: true
})
User.setProperty("verified", true, "boolean")
User.setProperty("captcha", null, "string");
}else{
Api.answerCallbackQuery({
  callback_query_id: request.id,
  text: "That's Wrong !",
  show_alert: true
})
}
}
```

Command: @

```
function randomString(len){
return Math.random().toString(20).substr(2, len)
}
function rndFloat(min, max){
return (Math.random() * (max - min + 1)) + min
}

function rndInt(min, max){
return Math.floor(rndFloat(min, max))
}

if(command.name!="/verify"){
var status =User.getProperty('verified');
if(!status){
var captchaCodes=[]
for(let i=0;i<4;i++){
captchaCodes.push(randomString(6))
}
var index = rndInt(0,3)
User.setProperty('captcha',captchaCodes[index],'string')

Api.sendPhoto({photo:"https://dummyimage.com/400x100/fff/000.jpg&text="+captchaCodes[index],caption:"_Solve the captcha first :_",
parse_mode:"markdownv2",
reply_markup: { inline_keyboard: [
[
{ text: captchaCodes[0], callback_data: "/verify "+captchaCodes[0] },
{ text: captchaCodes[1], callback_data: "/verify "+captchaCodes[1] }
],
[
{ text: captchaCodes[2], callback_data: "/verify "+captchaCodes[2] },{ text: captchaCodes[3], callback_data: "/verify "+captchaCodes[3] }
]
]}
})
return
}
}
```

Video Tutorial: https://youtu.be/xZ_4jIQ4qbg?si=l6uioSNT4BqJuG6O

? Credits: @sarozpaudel
© Copyrights: @sarozpaudel

We recommend to visit

Community chat: https://t.me/hamster_kombat_chat_2

Website: https://hamster.network

Twitter: x.com/hamster_kombat

YouTube: https://www.youtube.com/@HamsterKombat_Official

Bot: https://t.me/hamster_kombat_bot

Last updated 3 months, 2 weeks ago

Your easy, fun crypto trading app for buying and trading any crypto on the market.
📱 App: @Blum
🤖 Trading Bot: @BlumCryptoTradingBot
🆘 Help: @BlumSupport
💬 Chat: @BlumCrypto_Chat

Last updated 9 months ago

Turn your endless taps into a financial tool.
Join @tapswap_bot


Collaboration - @taping_Guru

Last updated 4 months ago