Author

Topic: Recent Post Timer Reduced? (Read 518 times)

hero member
Activity: 504
Merit: 500
November 02, 2015, 10:10:23 AM
#9
4 second limits probably are to avoid the posting bot. But for real case, the time we need to read a thread and its comments will take more than 4 seconds even a few minutes. It could be ignored.

I doubt anyone who is hero or probably Legendary member,
would risk his account to make bot posting lots of spam,
4 seconds are enough normally, but if someone wants to spam this isn't enough.
legendary
Activity: 1596
Merit: 1000
November 02, 2015, 09:20:49 AM
#8
-snip-
From an calculation that i just made when you have 700 activity points you wait 0 seconds.
This comes from this formula: if(activity >= 100) waittime = max((int)(14-(activity/50)), 4);
I think now you should not worry about the wait time Smiley

You will always have a limit of 4 seconds.

Correct, the maximum of 0 and 4 is 4.
Forgot to check the last part of formula while i calculated it.
First i was checking how long do legendary members needs to wait but seems that all of them have to wait 4 seconds.
4 second limits probably are to avoid the posting bot. But for real case, the time we need to read a thread and its comments will take more than 4 seconds even a few minutes. It could be ignored.
hero member
Activity: 504
Merit: 500
November 02, 2015, 08:26:06 AM
#7
-snip-
From an calculation that i just made when you have 700 activity points you wait 0 seconds.
This comes from this formula: if(activity >= 100) waittime = max((int)(14-(activity/50)), 4);
I think now you should not worry about the wait time Smiley

You will always have a limit of 4 seconds.

Correct, the maximum of 0 and 4 is 4.
Forgot to check the last part of formula while i calculated it.
First i was checking how long do legendary members needs to wait but seems that all of them have to wait 4 seconds.
copper member
Activity: 1498
Merit: 1528
No I dont escrow anymore.
November 02, 2015, 08:22:22 AM
#6
-snip-
From an calculation that i just made when you have 700 activity points you wait 0 seconds.
This comes from this formula: if(activity >= 100) waittime = max((int)(14-(activity/50)), 4);
I think now you should not worry about the wait time Smiley

You will always have a limit of 4 seconds.
hero member
Activity: 504
Merit: 500
November 02, 2015, 07:40:22 AM
#5
Hey guys, I've recently been wondering about something. Just last week, I could post, but not post again from the same IP for 6 minutes. Now, it's only 62 seconds, even though i'm still a newbie!

Was there a recent change I havent been notified of?

Well if your activity is less than 15 activity points,
Then you should wait 360 seconds or 6 minutes
But if your activity is larger than 15 (in your case 28) then you should wait (90 - activity) seconds.
that seems like a pretty big jump doesnt it? from 360 to 62 in 2 activity periods. what happens if your activity goes over 90?

From an calculation that i just made when you have 700 activity points you wait 0 seconds.
This comes from this formula: if(activity >= 100) waittime = max((int)(14-(activity/50)), 4);
I think now you should not worry about the wait time Smiley
hero member
Activity: 924
Merit: 1005
4 Mana 7/7
November 02, 2015, 07:36:31 AM
#4
Hey guys, I've recently been wondering about something. Just last week, I could post, but not post again from the same IP for 6 minutes. Now, it's only 62 seconds, even though i'm still a newbie!

Was there a recent change I havent been notified of?

Well if your activity is less than 15 activity points,
Then you should wait 360 seconds or 6 minutes
But if your activity is larger than 15 (in your case 28) then you should wait (90 - activity) seconds.
that seems like a pretty big jump doesnt it? from 360 to 62 in 2 activity periods. what happens if your activity goes over 90?
What are the time limits on posting and the levels??
I know 360 seconds are for new people like me, but was wondering if there was break down somewhere on this.

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);
full member
Activity: 126
Merit: 100
November 02, 2015, 07:33:22 AM
#3
Hey guys, I've recently been wondering about something. Just last week, I could post, but not post again from the same IP for 6 minutes. Now, it's only 62 seconds, even though i'm still a newbie!

Was there a recent change I havent been notified of?

Well if your activity is less than 15 activity points,
Then you should wait 360 seconds or 6 minutes
But if your activity is larger than 15 (in your case 28) then you should wait (90 - activity) seconds.
that seems like a pretty big jump doesnt it? from 360 to 62 in 2 activity periods. what happens if your activity goes over 90?
hero member
Activity: 504
Merit: 500
November 02, 2015, 07:25:39 AM
#2
Hey guys, I've recently been wondering about something. Just last week, I could post, but not post again from the same IP for 6 minutes. Now, it's only 62 seconds, even though i'm still a newbie!

Was there a recent change I havent been notified of?

Well if your activity is less than 15 activity points,
Then you should wait 360 seconds or 6 minutes
But if your activity is larger than 15 (in your case 28) then you should wait (90 - activity) seconds.
sr. member
Activity: 280
Merit: 250
Two heads are better than one.
November 02, 2015, 07:18:22 AM
#1
Hey guys, I've recently been wondering about something. Just last week, I could post, but not post again from the same IP for 6 minutes. Now, it's only 62 seconds, even though i'm still a newbie!

Was there a recent change I havent been notified of?
Jump to: