Post
Topic
Board Beginners & Help
Re: Number of Post in a Day and a Week.
by
Upgrade00
on 19/02/2022, 03:15:14 UTC
Is that real production code? Where can I find it?
Yes, it is.
It was posted by theymos some time back for members to use to calculate their cool down time;
What are the time limits on posting and the levels??
I know 360 seconds are for new people like me, but was wondering if there was break down somewhere on this.

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);