Bitcoin Forum

Other => Meta => Topic started by: Booted1543 on December 28, 2017, 06:55:00 PM



Title: How many posts until I won't have to wait between them?
Post by: Booted1543 on December 28, 2017, 06:55:00 PM
So, I'm new and I need to wait 6 minutes between each post. How long until that restriction is lifted? I'm sure it's listed somewhere, but I've searched and can not find it.


Title: Re: How many posts until I won't have to wait between them?
Post by: hilariousetc on December 28, 2017, 07:02:07 PM
It's in the sticky: https://bitcointalk.org/index.php?topic=178608.msg1861412#msg1861412

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

It just gradually goes down the more activity you get, though you can now also purchase a Copper Membership as well which will reduce the times: https://bitcointalk.org/index.php?topic=2385104.0


Title: Re: How many posts until I won't have to wait between them?
Post by: Chironexxx on December 28, 2017, 07:02:32 PM
Hi!

I guess this is the information you were looking for:

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


more info can be found here: https://bitcointalk.org/index.php?topic=178608.0 (https://bitcointalk.org/index.php?topic=178608.0)


EDIT: 25seconds too late...@hilariousetc was quicker! ;D


Title: Re: How many posts until I won't have to wait between them?
Post by: Booted1543 on December 29, 2017, 03:47:42 PM
I knew it had to be somewhere, that was what I was looking for. Looks like I'm two posts away from having the limit slashed.