Post
Topic
Board Beginners & Help
Re: Number of Post in a Day and a Week.
by
Maus0728
on 18/02/2022, 07:11:50 UTC
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.
Okay so I understand that the higher your activity is the shorter your waiting or post interval would be. But by looking at the code, and substituting my current activity count which is 1106, the waiting time gives me a negative value for >= 15 and >= 60

Code:
if(activity >= 15)
        waittime = (int)(90 - 1106);  = -1016
Code:
if(activity >= 60)
        waittime=(int)(34.7586 - (0.0793103 * 1106)); = -52.96
Code:
if(activity >= 100)
        waittime = max((int)(14-(activity/50)), 4); = 4

Should I take the negative as an equivalent for a longer period of waiting time? Or I am just taking the code literally..