Timeout for after every 5th account. - #94
Conversation
I have noticed a cooldown imposed by www.pokemon.com for every to be created 6th account in a row.So i mitigate it by putting it to sleep for 5 mins,which is the time period i have noticed it takes to cool down.
|
Is it 5 minutes or 60 minutes to cool off IP limit? I was under the impression it was 1 hour... |
|
well until yesterday(20-2-17) ,when i amde 60 accounts,it was around 5 minutes per 5 accounts. |
| ulist.close() | ||
| for x in range(0,args.count): | ||
| print("Making account #" + str(x+1)) | ||
| if (((x+1)%6 = 0)): |
There was a problem hiding this comment.
Wow... the if statement is always true since you're not actually testing.
if x%6 == 5: would be the correct form... but it also doesn't work because the timeout required between 5 accounts is one hour and not 5 minutes.
Maybe this worked for you because it would wait 5 min for every account it created?
There was a problem hiding this comment.
Well this is embarrasing ,i don't know python.From the 200+ accounts i created i definitely run the command for 5 accounts every 5 minutes or maybe more ,lets say 10 minutes,definitely not 1 hour.
So after run a test i could create another 5 accs after 15 mins,yes it was more than 5 but definitely less than 1 hour.
There was a problem hiding this comment.
@Theo1996 you ran your tests with which code? Yours?
There was a problem hiding this comment.
Yours of course.
Again i created 10 accounts(5+5) with an interval of 20 mins(i was the one late but i am pretty sure it was the known 15 min cooldown)(clock 17:58-18:18),so would it be usefull to add this timer or not?As not to run commands every 15 mins.
I have noticed a cooldown imposed by www.pokemon.com for every to be created 6th account in a row.So i mitigate it by putting it to sleep for 5 mins,which is the time period i have noticed it takes to cool down.