Bots.Business now:
Bots:
Created 195K bots and 46K bots worked now
Active during last:
- 1 hour: 1K bots
- 1 day: 3K bots
- 1 week: 6K bots
- 1 month: 11K bots
- 1 year: 32K bots
Chats:
15 Mln chats and 6 Mln chats for now worked bots
Active during last:
- 1 hour: 15K chats
- 1 day: 200K chats
- 1 week: 1.1 Mln chats
- 1 month: 4 Mln chats
- 1 year: 14.5 Mln chats
Bots:
Created 195K bots and 46K bots worked now
Active during last:
- 1 hour: 1K bots
- 1 day: 3K bots
- 1 week: 6K bots
- 1 month: 11K bots
- 1 year: 32K bots
Chats:
15 Mln chats and 6 Mln chats for now worked bots
Active during last:
- 1 hour: 15K chats
- 1 day: 200K chats
- 1 week: 1.1 Mln chats
- 1 month: 4 Mln chats
- 1 year: 14.5 Mln chats
Forwarded from Deleted Account
⁉️ New BJS For Adding Unlimited Admins In Bot.
♻️ Command:
🌐 Bjs:
💠 Wait For Answer:
=====================================
Command to check if admin
♻️Command:
🌐Bjs:
Usage:
Type
Like this in params to add as admin, make sure that you type the command name and leave space and type the user ID.
𝘾𝙤𝙙𝙚𝙙 𝘽𝙮 @MRAn0nym0u5
♻️ Command:
/addadmin🌐 Bjs:
if (user.telegramid == "OWNER_TELEGRAM_ID") {
Bot.setProperty("adm"+params+"","ADMIN","string")
Bot.sendMessage(" Successfully added "+params+" as Admin")
}💠 Wait For Answer:
off =====================================
Command to check if admin
♻️Command:
/admin🌐Bjs:
let adm = Bot.getProperty("adm"+user.telegramid)
if (adm=="ADMIN") {
Bot.sendMessage("Welcome Admin ")
}else{
Bot.sendMessage("you are not admin")
}Usage:
Type
/addadmin 1196767401Like this in params to add as admin, make sure that you type the command name and leave space and type the user ID.
𝘾𝙤𝙙𝙚𝙙 𝘽𝙮 @MRAn0nym0u5
Forwarded from Deleted Account
⁉️ New BJS For Adding Unlimited Admins In Bot.
♻️ Command:
🌐 Bjs:
💠 Wait For Answer:
=====================================
Command to check if admin
♻️Command:
🌐Bjs:
Usage:
Type
Like this in params beside the command, there must be user ID of whom you want to remove admin.
𝘾𝙤𝙙𝙚𝙙 𝘽𝙮 @MRAn0nym0u5
♻️ Command:
/removeadmin🌐 Bjs:
if (user.telegramid == "OWNER_TELEGRAM_ID") {
Bot.setProperty("adm"+params+"","USER","string")
Bot.sendMessage("Successfully removed "+params+" from Admin")
}💠 Wait For Answer:
off =====================================
Command to check if admin
♻️Command:
/admin🌐Bjs:
let adm = Bot.getProperty("adm"+user.telegramid)
if (adm=="ADMIN") {
Bot.sendMessage("Welcome Admin ")
}else{
Bot.sendMessage("you are not admin")
}Usage:
Type
/removeadmin 1196767401Like this in params beside the command, there must be user ID of whom you want to remove admin.
𝘾𝙤𝙙𝙚𝙙 𝘽𝙮 @MRAn0nym0u5
The first ads bb broadcasting is just runned.
Only for free bots with ads.
Your iterations is not spent.
Only for free bots with ads.
Your iterations is not spent.
You can always turn off Ads in App - Profile - Billing
Your bots will be not affected for future Ads broadcasting.
Your bots will be not affected for future Ads broadcasting.
What is Multi Account?
Each bot have Bot Nickname from @BotFather.
It is possible to bound this username only for one BB account.
Each bot have Bot Nickname from @BotFather.
It is possible to bound this username only for one BB account.
How to run/stop your bot via API ?
You need perform POST request to:
https://api.bots.business/v1/bots/YOUR_BOT_ID/status?api_key
for start you also need pass param:
status: "start_launch"
You need perform POST request to:
https://api.bots.business/v1/bots/YOUR_BOT_ID/status?api_key
for start you also need pass param:
status: "start_launch"
// Start current bot:
HTTP.post( {
url: "https://api.bots.business/v1/bots/" + bot.id + "/status?api_key",
success: '/onStart ',
body: {status: "start_launch"}
} )
// Stop current bot:
| HTTP.post( {
url: "https://api.bots.business/v1/bots/" + bot.id + "/status?api_key",
success: '/onStop '
} )
HTTP.post( {
url: "https://api.bots.business/v1/bots/" + bot.id + "/status?api_key",
success: '/onStart ',
body: {status: "start_launch"}
} )
// Stop current bot:
| HTTP.post( {
url: "https://api.bots.business/v1/bots/" + bot.id + "/status?api_key",
success: '/onStop '
} )