Bots.Business
3.79K subscribers
673 photos
19 videos
27 files
595 links
Download Telegram
We have big traffic. Needs time for restoring
πŸ₯°8πŸ‘1
Uptime
😈12πŸ”₯5πŸ‘2πŸ‘Ž1πŸ™1
app-release.apk
25.8 MB
Fixed App version.
πŸ”₯6πŸ‘4πŸ₯°1
app-release.apk
26.3 MB
βœ… New languages added:
French
German
Italian
Portuguese
Japanese
Korean
Arab
Dutch
Turkish
Polish
Swedish
Danish
Finnish
Norwegian
Greek
Indonesian
Hebrew
Thai
Czech

* In Google Play now:
https://play.google.com/store/apps/details?id=bb_app.com.bots.business
πŸ‘10πŸ‘Ž7πŸ”₯4❀3πŸ€”3πŸ₯°1πŸ€ͺ1
Iterations is over on Free with ADs Plan?

Write to @BotsBusinessAdmin for request more iterations.

Please write:
I want more iterations on My Free.ADS account.
My email: email
πŸ‘6πŸ”₯5
πŸ‘6
Bots.Business
[up] Top priority tasks now: It is just list without fixing priority - πŸͺ² 1000 timeout errors with props - πŸ’₯ List ordering + searching - πŸͺ² MCL - fixing - πŸͺ² Bot.runAll - fixing - πŸͺ² Another error with Broadcasting - πŸ’₯ Update all request - new feature - πŸͺ² Admin…
[up] Top priority tasks now:
It is just list without fixing priority

- πŸͺ² 1000 timeout errors with props (become rare, only bad codes have it)
- πŸ’₯ List ordering + searching (it was needed by RefLib. RefLib have own Top Board now)
- πŸͺ² MCL - fixing
- πŸͺ² Bot.runAll - fixing
- πŸͺ² Another error with Broadcasting
- πŸ’₯ Update all request - new feature
- πŸͺ² Admin Panel saving button not works
πŸ‘3❀1πŸ‘1
We have such plans for ADs for future
1. AD Tag. something like "Paid AD" or etc
2. Report AD system. We will collect alerts so we can stop ADs with big alerts count in future
3. Link something like "Why I receive this AD ?" to page with this content
4. We will make more strongly moderation system where new ad-owners will be checking more strongly
5. Other plans like Ads Income Sharing (AI Sharing)

Now we focus on stability. Stability - top priority work in this week.

What can i do now?
1. You can write on /start command that your bot show ADs and this is third-party ads.
2. You can disable ADs in App > Iterations

Unfortunately we can't make BB totally FREE.
We needs ADs for powering FREE with ADs bots.
This income used for developments also.


Please write your ideas in comments.
- "Stop ads!" - is not good idea because we will need "Free with ADs" plan stopping also.
πŸ‘6πŸ‘2πŸ€”2
We have very simple code for user's balance.
For example, it is adding +2 to balance.

let balance = User.getProp("balance") || 0;
balance = balance + 2;
User.setProp("balance", balance)


But much more users use such with ResLib:
let balance = Libs.ResourcesLib.userRes("balance");
res.add(2)


ResLib was not constructed for this.
ResourcesLib is good for using it with growth. If you don't have growth it is possible you don't need use this lib.

Now we improve ResLib for using it just for adding.
But
it is still not so good use ResLib just for adding 2+2 values.
πŸ‘8❀2
Somehow we forgot, but we are already 8 years old. πŸ™„πŸŽ‰

1 000 000 Free with Ads now (from next period)
πŸ”₯7😎2πŸ‘1
We have punishments with @BBPointBot now:

⚠️ Restrictions - possible punishments (read mode only):
- 8-hour - πŸ’Ž -1 BBP.
- 24-hour - πŸ’Ž -3 BBP.
- 1-week - πŸ’Ž -6 BBP.
- Permanent - πŸ’Ž -10 BBP.

Why i have can - BBP?
- none English text
- spam (bots, channels, etc)
- nude content
- foul language, swearing

You can promote your own BB bots or any BB-relative service
Tag it with #bbbot , #aroundBB
But you also can have -1 BBP or more - so keep your BBP balance positive
πŸ‘Ž9πŸ‘4πŸ”₯3❀1
Bots.Business
Are we need something like this in BB Store? https://t.me/hamster_kombat_boT/start?startapp=kentId519829299
We already know how to make such games in BB.
I spent time researching the game mechanics and I can say:
- bonus clock mechanics possible with ResLib
- web application is possible with our web application
- daily tasks like YouTube are fake so this is possible too
- an option with a mechanical crane is possible
- bonus combination - possible
- Morse task - possible
- recommendations - possible
- top list - possible (but looks fake)

What's difficult?
- is web application coding. I think it's 70% web app, 30% bot (web development requires good skills).
- you need to understand the web part and the server part (the web application can be hacked, fake data from the web application is possible)
- we need to check the bonus on the server before receiving rewards
- the tap mechanic is not so necessary at high levels (we can check the hour limit before receiving the reward on the server side), so it can be faked by the players, but this is not critical
- views on YouTube are completely fake πŸ˜†
YouTube doesn't have an API for this
- multilingualism is also difficult

I think we need a good demo for such WebApp Games.
πŸ‘8πŸ”₯3❀2πŸ₯°2πŸ€”2
we have much more Error Rate in last 3 hours.
Fix in progress.
Bots.Business
Once more about just_created fields for user and chat. There are clarifications. (Help and prev message are edited) We have user.just_created - only for totally new BB user! User can have any BB bot(s) before your bot. So user.just_created will be false.…
⚠️ From this date we delete blocking chat only after 6 months.

chat.just_created is true for new chat on /start command

For old blocked chats:
- is just created if user restart blocking after 6 months
- it NOT just created if user restart blocking in 6 months

You can use this code for welcome bonus:
if(chat.just_created && chat.chat_type=="private"){
Bot.sendMessage("Hello, new user!")
// bonus here
}else{
Bot.sendMessage("Hello, old user!")
}


Please note:
User can make new group chat with bot. We need  to check that chat is "private" only.
User can have only one private chat with bot.


Use chat.just_created - it is more quickly way for new chat verification.

#justCreated
πŸ‘10❀3πŸ”₯3
Code refactoring with #timeout issue.

This is bad code example. It have timeout issue and looks very complex.

In this topic i make code refactoring step by step.

You can use it for teaching.
❀5πŸ‘1