Bots.Business
3.79K subscribers
673 photos
19 videos
27 files
595 links
Download Telegram
smartBot Lib development in progress:

πŸ”Ή vars can be in object now not only in text

πŸ”Ή types supports! We can define common (shared) type like button, text or any object!

See screenshot - we have common joinInlineKeyboard
πŸ‘6πŸ‘Ž3
Api methods fixed:
copy_message, create_chat_invite_link edit_chat_invite_link, unpin_all_chat_messages, set_sticker_set_thumb


All supported methods now:
❀5πŸ”₯2πŸ‘1
RefLib updates: more easy debug now!

- you can pass "debug" param
- use RefLib.clearRef() - it remove current ref data and you can test ref link again like new user
❀2πŸ‘2
MCLib fix:

Fixed: chat verification is skipped now for already deleted from Admin Panels chats.
#json

// JSON parsing bug workaround

let myData;
try {
myData = JSON.parse(content);
}catch(e){
// now on error you can see what text do you have in content
// and you can check this text in JSON validator
throw new Error('JSON parsing error: ' + content)
}
πŸ‘2
We need technical downtime for 5-10 min after 30 min from now
πŸ‘Ž7πŸ‘4
Downtime started
πŸ€ͺ9πŸ‘Ž5
Uptime
πŸ‘Ž8πŸ‘5
BB speed degradation in progress now
πŸ‘Ž13πŸ‘3❀1
Uptime
πŸ‘Ž12πŸ‘4
Please don't ask about other bot sources.

All BB public bots available in App > Store only.

Don't ask about other bot sources.
πŸ‘2
We have more useful error messages now. Before (1 pic) and now (2 pic)
πŸ‘1
Users asked about any videos with BB Tutorials.

And we have them:
https://www.youtube.com/results?search_query=bots.business

Also we still have reward for video: 50 - 1000 BBP (depended from quality)
You can create your own YouTube video around BB.
πŸ‘Ž1
Bots.Business
Import! Your Ref system can be not working now! If you have this https://t.me/bot?start=100 Or https://t.me/bot?start=r100 And etc Instead of: https://t.me/bot?start=user100 It is custom ref prefix! Need fix! Read this https://t.me/botsbus/1870
❗️❗️❗️❗️❗️❗️❗️❗️❗️❗️❗️❗️
DOUBLE NOT WORKING ALERT AGAIN!

Import!
Your Ref system can be not working now!

If you have this Ref Link:
https://t.me/bot?start=100
Or
https://t.me/bot?start=r100
And etc
Instead of:
https://t.me/bot?start=user100


It is custom ref prefix! Need fix! Read this
Need fixing!

❌ Change your old code in /start command:
RefLib.track({
onAttracted: onAttracted
// any other your code here
...
});


βœ… to this new code:
RefLib.track({
onAttracted: onAttracted
// any other code here
...
// just add link prefix
linkPrefix: "user", // you can use "", "r" and etc
});
πŸ‘Ž5πŸ€”1
❗️ Global telegram bug

FIXED!

We have this error now.
it is error from Telegram Api. All bots (not only BB) can't send messages

Bot can't send message to any external channel /chat (?).

Bot also have admin's permissions.


Update:
it is GLOBAL issue (for all bots like Python and etc):
link, link

WE WAIT FOR FIX FROM TELEGRAM
😱4πŸ€”2πŸ‘1πŸ”₯1
Command run for other user is fixed:

Bot.run({
user_id: USER_ID
})


before we need to pass chat id also:
Bot.run({
user_id: USER_ID,
chat_id: USER_ID // not needed now, user_id is needed only
})
πŸ‘4πŸ‘2