Bitcoin Forum

Other => Meta => Topic started by: Naitik on December 23, 2017, 06:04:07 AM



Title: newbie help please; how activity react with your post and time logged in?
Post by: Naitik on December 23, 2017, 06:04:07 AM
Hey i want to know that Activity of the account is rekated to the the time spend or your post and replies. Do anyone help me.
I think i stuck with my account.


Title: Re: newbie help please; how activity react with your post and time logged in?
Post by: PavelIvanov on December 23, 2017, 06:17:14 AM
30 Activity: Jr. Member

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


Title: Re: newbie help please; how activity react with your post and time logged in?
Post by: mk4 on December 23, 2017, 06:18:49 AM
You gain activity by how active you are here on bitcointalk.

Activity is calculated with: activity = min(time * 14, posts)
Basically, to maximize activity increase, you need to post once a day. Activity updates every 2 weeks.

For more info: https://bitcointalk.org/index.php?topic=1689727.0