PTC Account Creator menu

Shout-Out

User Tag List

Page 10 of 18 FirstFirst ... 67891011121314 ... LastLast
Results 136 to 150 of 260
  1. #136
    V1ceC1ty's Avatar Member
    Reputation
    2
    Join Date
    Jul 2016
    Posts
    5
    Thanks G/R
    5/1
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    The issue is that it will sometimes create duplicate accounts with the same username, and it somehow works. I already have 2 "Acc16" 's in my accounts.txt files with 2 completely different passwords.

    PTC Account Creator
  2. #137
    JakeP's Avatar Corporal
    Reputation
    7
    Join Date
    Aug 2016
    Posts
    15
    Thanks G/R
    1/6
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by V1ceC1ty View Post
    The issue is that it will sometimes create duplicate accounts with the same username, and it somehow works. I already have 2 "Acc16" 's in my accounts.txt files with 2 completely different passwords.
    That's because there's no duplication check, it'll "think" it's created the same account twice, but only the first would actually work, I'm surprised it even gets so far in the sign up process with an invalid username.

    Like I said, I'll work on adding a counting variable to a set username, see if I can call it upon each loop to the end of the username.

  3. Thanks V1ceC1ty (1 members gave Thanks to JakeP for this useful post)
  4. #138
    unknown00's Avatar Member
    Reputation
    3
    Join Date
    Jul 2016
    Posts
    22
    Thanks G/R
    0/2
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    know its been mentioned before - would be great if you could customize user/pass in UI

  5. #139
    billnyescifi's Avatar Member
    Reputation
    1
    Join Date
    Jul 2016
    Posts
    4
    Thanks G/R
    1/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Realized I needed to install the requires.. still spitting out a bunch of unknown keys. Will update when the iteration is done.
    Last edited by billnyescifi; 08-01-2016 at 09:27 AM. Reason: realized why i got errors

  6. #140
    Synapse7's Avatar Member CoreCoins Purchaser Authenticator enabled
    Reputation
    13
    Join Date
    Dec 2013
    Posts
    60
    Thanks G/R
    21/8
    Trade Feedback
    28 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    anyone got a compiled version that doesnt spit out random names?

  7. #141
    kingchenc's Avatar Member
    Reputation
    3
    Join Date
    Jul 2016
    Posts
    65
    Thanks G/R
    9/2
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by spodakek View Post
    All the accounts are automatically verified.
    Yes thats true, it was a bug from NecroBot With newest Update Necrobot its works with Created Accounts with the Tool here

  8. #142
    JakeP's Avatar Corporal
    Reputation
    7
    Join Date
    Aug 2016
    Posts
    15
    Thanks G/R
    1/6
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    So far, I've added user input to the script to specify a starting username which adds an integer converted to a string onto the end of the input username, e.g. specified user is Jake, program generates Jake0 on first account, Jake1 on second account, Jake2 on third, etc.

    The main issue I'm having now is with the actual sign up process, it hangs when I give the username a concatenated variable.

    Once I figure out where and why it hangs, I'll see if I can get permission from JD to add this feature to his script.

    EDIT

    Added user input for the password too.

  9. Thanks V1ceC1ty (1 members gave Thanks to JakeP for this useful post)
  10. #143
    philzx's Avatar Member
    Reputation
    1
    Join Date
    Aug 2016
    Posts
    12
    Thanks G/R
    1/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by JakeP View Post
    So far, I've added user input to the script to specify a starting username which adds an integer converted to a string onto the end of the input username, e.g. specified user is Jake, program generates Jake0 on first account, Jake1 on second account, Jake2 on third, etc.

    The main issue I'm having now is with the actual sign up process, it hangs when I give the username a concatenated variable.

    Once I figure out where and why it hangs, I'll see if I can get permission from JD to add this feature to his script.

    EDIT

    Added user input for the password too.
    I would appreciate that

  11. #144
    Jumbo-Cactuar's Avatar Member
    Reputation
    2
    Join Date
    Jul 2016
    Posts
    20
    Thanks G/R
    3/1
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    All these accounts using same email service will stick out like a sore thumb. If they later require re-verification theres no way.

  12. #145
    JakeP's Avatar Corporal
    Reputation
    7
    Join Date
    Aug 2016
    Posts
    15
    Thanks G/R
    1/6
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Well, unless you want to specify your own domain with catch-all email services, it'd be VERY hard to sign up automatically.

    I personally don't think they would do anything about having the same email service, lots of people may use them for all they know.

    What will catch us out is the lack of diversity in usernames. I don't suggest going 1, 2, 3, 4, 5, etc. but people are asking for it.

    Personally, I'm using "Username"#{3.times.map...}" to create my specified username with 3 random numbers trailing it from 1-9, which gives a possible 729 unique combinations, so the chances I hit a duplicate are pretty low, unless I create HUGE amounts of accounts, but then i'd just go to 4 trailing numbers to give over 6,500 combinations.

    In my opinion, we're never going to be fully undetectable as there's always at least one constant variable in the whole thing, they could catch us if they wanted to, but chances are they won't bother.


    EDIT

    Infact, I change my mind on having incrementing numbers 1 up, it does seem rather simple to detect.

    To the people requesting this, would you be satisfied with user input for the username, but 3 (or more) random numbers on the end? I'd like to meet somewhere in the middle between ease of use, and randomly generated data.

    Password would also be user input without any random generation if requested, I'm not sure duplicate passwords would flag, otherwise everyone with the password "password" would be flagged haha..
    Last edited by JakeP; 08-01-2016 at 10:33 AM.

  13. Thanks Jumbo-Cactuar, Synapse7 (2 members gave Thanks to JakeP for this useful post)
  14. #146
    Synapse7's Avatar Member CoreCoins Purchaser Authenticator enabled
    Reputation
    13
    Join Date
    Dec 2013
    Posts
    60
    Thanks G/R
    21/8
    Trade Feedback
    28 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    That sounds perfect

  15. #147
    JakeP's Avatar Corporal
    Reputation
    7
    Join Date
    Aug 2016
    Posts
    15
    Thanks G/R
    1/6
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    TL;DR for my edits,

    User input through command line to set username+random 3 digits for login
    User input for password, no randomization.

    Yes, or no?

  16. Thanks Synapse7 (1 members gave Thanks to JakeP for this useful post)
  17. #148
    V1ceC1ty's Avatar Member
    Reputation
    2
    Join Date
    Jul 2016
    Posts
    5
    Thanks G/R
    5/1
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by JakeP View Post
    Password would also be user input without any random generation if requested, I'm not sure duplicate passwords would flag, otherwise everyone with the password "password" would be flagged haha..

    I honestly like how the password is completely jumbled randomness atm. If I am giving the account to another user it entices them to go to PTC and change their password and feels more "secure". But do it as best as you see fit!

  18. #149
    Sam0883's Avatar Member
    Reputation
    7
    Join Date
    Apr 2008
    Posts
    70
    Thanks G/R
    3/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by JakeP View Post
    TL;DR for my edits,

    User input through command line to set username+random 3 digits for login
    User input for password, no randomization.

    Yes, or no?
    Yea please . Dang side you really adding to this effectively . I'd really appreciate a pm if you have th time to ask a some more questions


  19. #150
    OnlineGamingService's Avatar Member CoreCoins Purchaser
    Reputation
    1
    Join Date
    Jul 2016
    Posts
    379
    Thanks G/R
    1/0
    Trade Feedback
    25 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Program don't work anymore, any update ?

    Thanks in Advanced

Page 10 of 18 FirstFirst ... 67891011121314 ... LastLast

Similar Threads

  1. [Tool] Working PTC Account Creator?
    By Microsoft in forum Pokemon GO Hacks|Cheats
    Replies: 13
    Last Post: 03-23-2021, 11:03 AM
  2. Replies: 143
    Last Post: 09-19-2016, 10:11 PM
  3. [Bot] Ptc Account Creator
    By coiner in forum Pokemon GO Hacks|Cheats
    Replies: 24
    Last Post: 09-05-2016, 01:28 PM
  4. [Release] PTC Accounts Creator + Email Verifier (Bonus: PokeMobBot Compatible)
    By blaanima2 in forum Pokemon GO Hacks|Cheats
    Replies: 41
    Last Post: 08-13-2016, 05:25 AM
  5. [Release] PTC Account Creator (edited) With Name and Pwd select
    By aVitomin in forum Pokemon GO Hacks|Cheats
    Replies: 45
    Last Post: 08-03-2016, 03:00 PM
All times are GMT -5. The time now is 05:55 AM. Powered by vBulletin® Version 4.2.3
Copyright © 2025 vBulletin Solutions, Inc. All rights reserved. User Alert System provided by Advanced User Tagging (Pro) - vBulletin Mods & Addons Copyright © 2025 DragonByte Technologies Ltd.
Google Authenticator verification provided by Two-Factor Authentication (Free) - vBulletin Mods & Addons Copyright © 2025 DragonByte Technologies Ltd.
Digital Point modules: Sphinx-based search