Skip to content
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

Open
wants to merge 1 commit into
base: master
Choose a base branch
from

Conversation

Theo1996
Copy link

@Theo1996 Theo1996 commented Feb 9, 2017

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.

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.
@Theo1996 Theo1996 changed the title Timeout for every 5th account. Timeout for after every 5th account. Feb 10, 2017
@neskk
Copy link
Contributor

neskk commented Feb 21, 2017

Is it 5 minutes or 60 minutes to cool off IP limit? I was under the impression it was 1 hour...

@Theo1996
Copy link
Author

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)):
Copy link
Contributor

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?

Copy link
Author

@Theo1996 Theo1996 Mar 6, 2017

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.

Copy link
Contributor

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?

Copy link
Author

@Theo1996 Theo1996 Mar 7, 2017

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.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants