Post
Topic
Board Meta
Re: i have to wait 5 minutes between each post
by
ahmedjamal1998
on 18/09/2017, 19:09:16 UTC
when does it stop? what requirements i have to meet

Well if you read the sticky that clearly says "Newbies - Read before posting" you could've known.

Quote from: Lauda link=topic=1689727.msg16958010#msg16958010

How long do I need to wait between forum posts?
Waiting time between forum posts is calculated with the following formula:
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);

How is forum activity calculated?
Activity is calculated with the following formula:
Code:

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.