Post
Topic
Board Beginners & Help
Merits 5 from 3 users
Re: Number of Post in a Day and a Week.
by
Upgrade00
on 17/02/2022, 22:24:06 UTC
⭐ Merited by DdmrDdmr (2) ,Daniel91 (2) ,hosseinimr93 (1)
There is no total number of posts for a week or day. There is just a wait time between posts, sort of like a cool down time to stimulate users to read more then they post. Here is how it is calculated based on your activity;
Code:
waittime = 360;
if(activity >= 15)
        waittime = (int)(90 - activity);
if(activity >= 60)
        waittime=(int)(34.7586 - (0.0793103 * activity));
if(activity >= 100)
        waittime = max((int)(14-(activity/50)), 4);
The higher your activity, the shorter the time.