Post
Topic
Board 中文 (Chinese)
Re: Activity的计算方法
by
omo
on 25/02/2014, 04:08:52 UTC
搜一下,这个问题被问过多次了:
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)

Activity is updated every 30 minutes.

发帖间隔时间
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);


还有一点,在2周的期间内,如果只发了1贴,activity也加14。所以如果有多个小号要养的话,平均发帖比较合适。
另外,2周的计算不是按照注册时间算的,是固定的,按unix的timestamp算的,应该是每隔1周的周4,所以,如果你正好在某个周3注册,并且只发了一个贴,周4你的activity也会+14