you could've known.
How long do I need to wait between forum posts?
Waiting time between forum posts is calculated with the following formula:
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);
How is forum activity calculated?
Activity is calculated with the following formula:
activity = min(time * 14, posts)
Activity is increased by staying logged in or by posting and is updated every 30 minutes. There is a maximum of 14 activity points every 2 weeks.