-
Notifications
You must be signed in to change notification settings - Fork 73
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Timeout for after every 5th account. #94
base: master
Are you sure you want to change the base?
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. |
@@ -148,6 +148,9 @@ def entry(): | |||
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.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
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.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
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.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@Theo1996 you ran your tests with which code? Yours?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
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.