Pages:
Author

Topic: The definitive explanation of how activity works! - page 7. (Read 16125 times)

global moderator
Activity: 3850
Merit: 2643
Join the world-leading crypto sportsbook NOW!
You don't need to post, you just need to log in to get 14points providing your post count is higher to your activity, not the other way around

I believe you need to at least make 1 post instead of just logging in, as the "time" in the formula is definied as:

The activity number is determined in this way:
time = number of two-week periods in which you've posted since your registration
activity = min(time * 14, posts)

Yeah, pretty sure you need to post.
hero member
Activity: 603
Merit: 500
You don't need to post, you just need to log in to get 14points providing your post count is higher to your activity, not the other way around

I believe you need to at least make 1 post instead of just logging in, as the "time" in the formula is definied as:

The activity number is determined in this way:
time = number of two-week periods in which you've posted since your registration
activity = min(time * 14, posts)
legendary
Activity: 1904
Merit: 1018
I kind of understand that, but i would like to give an example so I'll see If i understand It really.

If I created an account and was making 1 post every two days period from the day I created the account, after a month (let's say every month has 30 days) I would have 15 posts and 15 activity? After 5 months (150 days) I would have 75 posts and 75 activity? Now, If from now I made 15 posts a day, how my activity would increase? I guess I would also get 15 activity a day till how many activity? If i understand correct you get 28 activity every month so for 5 months you would get around 140 activity? But people say that you need like 6 and a half month for a Sr. member but 6.5*28 = 182 activity. I'm sure I misunderstand something but could you answer me using my example, how long would It take to get Sr. Member If I make 1 post every 2 days period for 6 months and later I just make 50 posts a day, would my activity increase 50 a day also till I reach my activity limit according to my registering day?

My main question is: If I'm not very active on forums and posted 1 post every 2 days period for let's say 10 months, then i should have 150 posts, now i decided to be very active on the forums and post maybe 30 posts a day, how my activity increases, also 30 a day till my activity limit reached according to my date registered? Or I'm not right?

Thanks a lot.

That was confusing to read, but simply put, you can only get 14 points every two week period. The periods don't start when you sign up but are fixed. The next one starts on tuesday and then changes every two weeks after that. You only need to make one post every two week period providing your activity is higher than your post count.

You don't need to post, you just need to log in to get 14points providing your post count is higher to your activity, not the other way around

To answer gagalady : you can't get more than 14point every 2weeks
global moderator
Activity: 3850
Merit: 2643
Join the world-leading crypto sportsbook NOW!
I kind of understand that, but i would like to give an example so I'll see If i understand It really.

If I created an account and was making 1 post every two days period from the day I created the account, after a month (let's say every month has 30 days) I would have 15 posts and 15 activity? After 5 months (150 days) I would have 75 posts and 75 activity? Now, If from now I made 15 posts a day, how my activity would increase? I guess I would also get 15 activity a day till how many activity? If i understand correct you get 28 activity every month so for 5 months you would get around 140 activity? But people say that you need like 6 and a half month for a Sr. member but 6.5*28 = 182 activity. I'm sure I misunderstand something but could you answer me using my example, how long would It take to get Sr. Member If I make 1 post every 2 days period for 6 months and later I just make 50 posts a day, would my activity increase 50 a day also till I reach my activity limit according to my registering day?

My main question is: If I'm not very active on forums and posted 1 post every 2 days period for let's say 10 months, then i should have 150 posts, now i decided to be very active on the forums and post maybe 30 posts a day, how my activity increases, also 30 a day till my activity limit reached according to my date registered? Or I'm not right?

Thanks a lot.

That was confusing to read, but simply put, you can only get 14 points every two week period. The periods don't start when you sign up but are fixed. The next one starts on tuesday and then changes every two weeks after that. You only need to make one post every two week period providing your activity is higher than your post count.
legendary
Activity: 938
Merit: 1000
I kind of understand that, but i would like to give an example so I'll see If i understand It really.

If I created an account and was making 1 post every two days period from the day I created the account, after a month (let's say every month has 30 days) I would have 15 posts and 15 activity? After 5 months (150 days) I would have 75 posts and 75 activity? Now, If from now I made 15 posts a day, how my activity would increase? I guess I would also get 15 activity a day till how many activity? If i understand correct you get 28 activity every month so for 5 months you would get around 140 activity? But people say that you need like 6 and a half month for a Sr. member but 6.5*28 = 182 activity. I'm sure I misunderstand something but could you answer me using my example, how long would It take to get Sr. Member If I make 1 post every 2 days period for 6 months and later I just make 50 posts a day, would my activity increase 50 a day also till I reach my activity limit according to my registering day?

My main question is: If I'm not very active on forums and posted 1 post every 2 days period for let's say 10 months, then i should have 150 posts, now i decided to be very active on the forums and post maybe 30 posts a day, how my activity increases, also 30 a day till my activity limit reached according to my date registered? Or I'm not right?

Thanks a lot.
legendary
Activity: 1904
Merit: 1018
So a meaningless post count number is not enough, now we need to complicate it further with an activity number...

PS - 4 more of these activity points and I get promoted to HERO status  Cheesy

April 29 you will be a Hero member

I've posted this in so many threads now...

So, basically, the formula for the activity value is this:

Code:
time = number of 2 week periods in which you posted
activity = min(time*14, posts)

So, lets break this down.

Code:
time = number of 2 week periods in which you posted

This basically means what it says. If you've been registered for one week, then this will be 1. If you've been registered for three weeks and posted on the first day of registration and again today, then it will be 2.

If you've been registered for one year (lets say you registered on the 1st January 2013 and today is the 1st January 2014), and you only posted on the 1st January, 10th January, 23rd March, 15 April, 18 April and the 23rd December, your time value would be 4, because you posted for 4 two-week periods.

Code:
activity = min(time*14, posts)

This basically says that your activity value is the smaller value of your time value multiplied by 14, and your post count. So, if your time value is 2, then your time*14 value would be 28. If your post count was 30, your activity value would be 28. If your post count was 20, your activity value would be 20.

I hope this explains it to some people Smiley

Liam
newbie
Activity: 36
Merit: 0
Thanks for great explanation. If we are active we can get 14 activity for 14 days.even if you post 100 posts maximum activity fro 14 days is 14 only.
legendary
Activity: 1092
Merit: 1000
nahtnam.com
So a meaningless post count number is not enough, now we need to complicate it further with an activity number...

PS - 4 more of these activity points and I get promoted to HERO status  Cheesy

Congratulations.
legendary
Activity: 2674
Merit: 2965
Terminated.
So a meaningless post count number is not enough, now we need to complicate it further with an activity number...

PS - 4 more of these activity points and I get promoted to HERO status  Cheesy
I thought hero members get that at 400.
legendary
Activity: 812
Merit: 1002
So a meaningless post count number is not enough, now we need to complicate it further with an activity number...

PS - 4 more of these activity points and I get promoted to HERO status  Cheesy
legendary
Activity: 1904
Merit: 1018
I've posted this in so many threads now...

So, basically, the formula for the activity value is this:

Code:
time = number of 2 week periods in which you posted
activity = min(time*14, posts)

So, lets break this down.

Code:
time = number of 2 week periods in which you posted

This basically means what it says. If you've been registered for one week, then this will be 1. If you've been registered for three weeks and posted on the first day of registration and again today, then it will be 2.

If you've been registered for one year (lets say you registered on the 1st January 2013 and today is the 1st January 2014), and you only posted on the 1st January, 10th January, 23rd March, 15 April, 18 April and the 23rd December, your time value would be 4, because you posted for 4 two-week periods.

Code:
activity = min(time*14, posts)

This basically says that your activity value is the smaller value of your time value multiplied by 14, and your post count. So, if your time value is 2, then your time*14 value would be 28. If your post count was 30, your activity value would be 28. If your post count was 20, your activity value would be 20.

I hope this explains it to some people Smiley

Liam

Confuse me.... Cheesy give me a simple answer
here's my summary info
Posts:    112
Activity:    56
Position:    Jr. Member
Date Registered:    March 03, 2014, 04:42:34 PM
Last Active:    Today at 06:10:25 AM

last I get 56 activity on April 1st
and when exactly I will be a Member?

Tomorrow you should get +14 in activity so you will become a Member
full member
Activity: 168
Merit: 100
Lithium core developer
I've posted this in so many threads now...

So, basically, the formula for the activity value is this:

Code:
time = number of 2 week periods in which you posted
activity = min(time*14, posts)

So, lets break this down.

Code:
time = number of 2 week periods in which you posted

This basically means what it says. If you've been registered for one week, then this will be 1. If you've been registered for three weeks and posted on the first day of registration and again today, then it will be 2.

If you've been registered for one year (lets say you registered on the 1st January 2013 and today is the 1st January 2014), and you only posted on the 1st January, 10th January, 23rd March, 15 April, 18 April and the 23rd December, your time value would be 4, because you posted for 4 two-week periods.

Code:
activity = min(time*14, posts)

This basically says that your activity value is the smaller value of your time value multiplied by 14, and your post count. So, if your time value is 2, then your time*14 value would be 28. If your post count was 30, your activity value would be 28. If your post count was 20, your activity value would be 20.

I hope this explains it to some people Smiley

Liam

Confuse me.... Cheesy give me a simple answer
here's my summary info
Posts:    112
Activity:    56
Position:    Jr. Member
Date Registered:    March 03, 2014, 04:42:34 PM
Last Active:    Today at 06:10:25 AM

last I get 56 activity on April 1st
and when exactly I will be a Member?
member
Activity: 77
Merit: 10
Thank you for your post So you can increase the activity of science
legendary
Activity: 1904
Merit: 1018
I feel like this question gets asked a lot and then people have trouble finding it after a while so gives it a supportive bump


It is very hard to find what you are looking for on the forum if you don't know the title, google helps a bit

Next activity change is Tuesday April 1st Smiley I still have a long wait before I reach Sr Member though, 120 of activity doesn't arrive that fast : in 120days minimum
legendary
Activity: 2800
Merit: 1115
Leading Crypto Sports Betting & Casino Platform
I feel like this question gets asked a lot and then people have trouble finding it after a while so gives it a supportive bump
newbie
Activity: 30
Merit: 0
Wicked really needed this thanks a million!!!
legendary
Activity: 1904
Merit: 1018
So if I make more than 14 posts in two weeks, I get +14 activity?

You are kidding right?

If you are not kidding : if you log in once every 2weeks you get +14 activity but your activity cannot be less than your total post count

Yeah, thats exactly what I said. If you make more than 14 posts, in two weeks, your activity goes up by 14. I was just confirming.

Yes you are correct but you don't need to make more than 14posts in 2weeks to get +14

If you have a post count that is at least 14 more than your activity you would get +14 activity just by logging in

The activity change is every other week, on Tuesday

Yeah ok. Do you know exactly which tuesday and what time the activity updates?

Next activity change is April 1st

I know that because I see my activity change every 2weeks on Tuesday and it seems to be the same for everyone but send me the link if you find the original post explaining this, it is probably on this post https://bitcointalksearch.org/topic/activity-new-membergroup-limits-237597
legendary
Activity: 1092
Merit: 1000
nahtnam.com
So if I make more than 14 posts in two weeks, I get +14 activity?

You are kidding right?

If you are not kidding : if you log in once every 2weeks you get +14 activity but your activity cannot be less than your total post count

Yeah, thats exactly what I said. If you make more than 14 posts, in two weeks, your activity goes up by 14. I was just confirming.

Yes you are correct but you don't need to make more than 14posts in 2weeks to get +14

If you have a post count that is at least 14 more than your activity you would get +14 activity just by logging in

The activity change is every other week, on Tuesday

Yeah ok. Do you know exactly which tuesday and what time the activity updates?
legendary
Activity: 1904
Merit: 1018
So if I make more than 14 posts in two weeks, I get +14 activity?

You are kidding right?

If you are not kidding : if you log in once every 2weeks you get +14 activity but your activity cannot be less than your total post count

Yeah, thats exactly what I said. If you make more than 14 posts, in two weeks, your activity goes up by 14. I was just confirming.

Yes you are correct but you don't need to make more than 14posts in 2weeks to get +14

If you have a post count that is at least 14 more than your activity you would get +14 activity just by logging in

The activity change is every other week, on Tuesday
legendary
Activity: 1092
Merit: 1000
nahtnam.com
So if I make more than 14 posts in two weeks, I get +14 activity?

You are kidding right?

If you are not kidding : if you log in once every 2weeks you get +14 activity but your activity cannot be less than your total post count

Yeah, thats exactly what I said. If you make more than 14 posts, in two weeks, your activity goes up by 14. I was just confirming.
Pages:
Jump to: