PTC Account Creator menu

User Tag List

Page 12 of 18 FirstFirst ... 8910111213141516 ... LastLast
Results 166 to 180 of 260
  1. #166
    mydragon1's Avatar Private
    Reputation
    21
    Join Date
    Aug 2016
    Posts
    9
    Thanks G/R
    0/14
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Sure C# VS2015 Console

    Code:
    using System;
    using System.IO;
    
    namespace AuthGenerator
    {
        class Program
        {
            static void Main(string[] args)
            {
                int i = 1;
                foreach (string line in File.ReadLines("accounts.txt"))
                {
                    try
                    {
                        string[] data = line.Split(':');
                        string auth = $"{{ \"AuthType\": \"ptc\",\n\"GoogleRefreshToken\": null,\n\"PtcUsername\": \"{data[0]}\",\n\"PtcPassword\": \"{data[1]}\",\n\"GoogleUsername\": null,\n\"GooglePassword\": null }}";
                        string path = Environment.CurrentDirectory + $"\\Acc{i}";
                        if (!Directory.Exists(path))
                            Directory.CreateDirectory(path);
                        File.WriteAllText(path + "\\auth.json", auth);
                        i++;
                    }
                    catch(Exception e)
                    {
                        Console.WriteLine("Error at Bot " + i + ": " + e);
                        Console.ReadLine();
                        Environment.Exit(0);
                    }
                }
            }
        }
    }

    PTC Account Creator
  2. Thanks JakeP, ziggar, TheIEnd (3 members gave Thanks to mydragon1 for this useful post)
  3. #167
    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)
    Thanks man, will come in useful holding on to this code

    I hope you don't mind, I made some VERY minor tweaks to make the output code a little more structured.

    Code:
    using System;
    using System.IO;
    
    namespace AuthGenerator
    {
        class Program
        {
            static void Main(string[] args)
            {
                int i = 0;
                foreach (string line in File.ReadLines("accounts.txt"))
                {
                    try
                    {
                        string[] data = line.Split(':');
                        string auth = $"{{ \r\n\"AuthType\": \"ptc\",\r\n\"GoogleRefreshToken\": null,\r\n\"PtcUsername\": \"{data[0]}\",\r\n\"PtcPassword\": \"{data[1]}\",\r\n\"GoogleUsername\": null,\r\n\"GooglePassword\": null \r\n}}";
                        string path = Environment.CurrentDirectory + $"\\Bot{i}";
                        if (!Directory.Exists(path))
                            Directory.CreateDirectory(path);
                        File.WriteAllText(path + "\\auth.json", auth);
                        i++;
                    }
                    catch (Exception e)
                    {
                        Console.WriteLine("Error at Bot " + i + ": " + e);
                        Console.ReadLine();
                        Environment.Exit(0);
                    }
                }
            }
        }
    }
    Download from Mega.nz << Compiled exe.


    Virustotal - 1 False Positive
    VirusTotal

    All credits to MyDragon1 for the program.
    Last edited by JakeP; 08-01-2016 at 06:07 PM.

  4. #168
    wakewakewakaranai's Avatar Member
    Reputation
    1
    Join Date
    Jul 2016
    Posts
    4
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    can anyone help, when I try to run nothing appears, no text nothing. I just hangs then closes. Am I missing a step or requirement?

    windows 10

  5. #169
    Dovkan's Avatar Member
    Reputation
    1
    Join Date
    Jul 2016
    Posts
    4
    Thanks G/R
    2/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Works like a charm.

  6. #170
    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 wakewakewakaranai View Post
    can anyone help, when I try to run nothing appears, no text nothing. I just hangs then closes. Am I missing a step or requirement?

    windows 10
    Are you talking about the account creator?

    If so, have you installed RubyInstaller for Windows?

    Once you have done that, you need to install nokogiri by typing "gem install nokogiri" into the command prompt.

    I may have missed a required repository, but try those then run the application again.

  7. #171
    bobdan's Avatar Knight CoreCoins Purchaser
    Reputation
    17
    Join Date
    May 2012
    Posts
    202
    Thanks G/R
    16/4
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    i know its probably asking a bit much, but any chance to add an option to have it user the same password all the time? would make it easier for using with map services lol

  8. #172
    glenn1200's Avatar Member
    Reputation
    1
    Join Date
    Jul 2016
    Posts
    2
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    verified aswell?

  9. #173
    Axeon1g's Avatar Member
    Reputation
    3
    Join Date
    Jul 2016
    Posts
    80
    Thanks G/R
    13/2
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    With both those AuthGens I get IndexOutOfRangeException error any ideas JakeP or MyDragon1?

  10. #174
    mushira's Avatar Member
    Reputation
    1
    Join Date
    Jul 2016
    Posts
    1
    Thanks G/R
    1/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    can someone help me please?

    when i try to execute the application happens this error: FATAL ERROR: Failed to create process (C:\Users\win\AppData\Local\Temp\ocr52B4.tmp\bin\ruby.exe): 216 how can i fix it?

  11. #175
    c0san1j's Avatar Member
    Reputation
    1
    Join Date
    Jun 2012
    Posts
    8
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Took 15 hours to learn new language and to modified few code that cause bot to freeze up and had to break bot to pieces to debug the source and find where was the issue and how to re-code it better, i'm glad is working with my on custom username and password and I can tell it how many account I want
    Last edited by c0san1j; 08-01-2016 at 09:05 PM.

  12. #176
    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 c0san1j View Post
    Took 15 hours to learn new language and to modified few code that cause bot to freeze up and had to break bot to pieces to debug the source and find where was the issue and how to re-code it better, i'm glad is working with my on custom username and password and I can tell it how many account I want
    Feel free to share

  13. #177
    wakewakewakaranai's Avatar Member
    Reputation
    1
    Join Date
    Jul 2016
    Posts
    4
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by JakeP View Post
    Are you talking about the account creator?

    If so, have you installed RubyInstaller for Windows?

    Once you have done that, you need to install nokogiri by typing "gem install nokogiri" into the command prompt.

    I may have missed a required repository, but try those then run the application again.
    I tried what you suggested but nothing has changed Im afraid, any more suggestions?

  14. #178
    ziggar's Avatar Active Member CoreCoins Purchaser
    Reputation
    67
    Join Date
    Jul 2008
    Posts
    324
    Thanks G/R
    51/43
    Trade Feedback
    5 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Thank you very much mydragon1 .

  15. #179
    TheIEnd's Avatar Member CoreCoins Purchaser Authenticator enabled
    Reputation
    3
    Join Date
    Jan 2014
    Posts
    56
    Thanks G/R
    12/1
    Trade Feedback
    1 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by mydragon1 View Post
    Here you go:
    Zippyshare.com - AuthGenerator.exe

    Creates a folder with auth.json for each line in accounts.txt usings seperator ":".
    Just put it in same folder as accounts.txt
    Wow, thank you! Works great

  16. #180
    mydragon1's Avatar Private
    Reputation
    21
    Join Date
    Aug 2016
    Posts
    9
    Thanks G/R
    0/14
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by Axeon1g View Post
    With both those AuthGens I get IndexOutOfRangeException error any ideas JakeP or MyDragon1?
    Can you make a screenshot? Is your file named accounts.txt and has entries in format namew?

  17. Thanks Axeon1g (1 members gave Thanks to mydragon1 for this useful post)
Page 12 of 18 FirstFirst ... 8910111213141516 ... 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 03:30 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