PTC Account Creator + Verifier menu

User Tag List

Page 8 of 8 FirstFirst ... 45678
Results 106 to 112 of 112
  1. #106
    Itzasan's Avatar Member
    Reputation
    2
    Join Date
    Aug 2016
    Posts
    6
    Thanks G/R
    0/1
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    If you have your own domain and you have a forward all set up pointing to a gmail use this.

    1. Login to Gmail
    2. Go to Apps Script – Google Apps Script
    3. Click File/New/Script file
    4. Enter the code below, save it, then click run. You will have to allow permission.
    5. You will see Running function myFunction...Cancel Dismiss on the top
    6.. Click View > Logs. At the bottom you'll see the total accounts verified.


    The script will stop after about 100 emails. This is a limitation of Google Scripts, not the script itself. Just keep running the script over and over until all your accounts are verified
    all verified emails will be deleted you can change that in the script to keep if you want.

    Code:
    function myFunction() {
      var verified = 0;
      var moveToTrash = true;
      
      var threads = GmailApp.search('in:inbox subject:"Pokémon Trainer Club Activation"');
      Logger.log("Found " + threads.length + " threads.");
     
      threads.forEach(function(thread) {
        var messages = thread.getMessages();
        Logger.log("Found " + messages.length + " messages.");
        
        messages.forEach(function(msg) {
          var value = msg.getBody()
                         .match(/Verify your email/m);
          
          if(msg.isInInbox() && value) {
            var link = msg.getBody().match(/<a href="https:\/\/club.pokemon.com\/us\/pokemon-trainer-club\/activated\/([\w\d]+)"/);
            
            if(link) {
              var url = 'https://club.pokemon.com/us/pokemon-trainer-club/activated/' + link[1];
              var options = {
                "muteHttpExceptions": true
              };
              
              var status = UrlFetchApp.fetch(url, options).getResponseCode();
              Logger.log("[#] Verified (" + status + "): " + url);
              
              if(status == 200) {
                verified++;
                msg.markRead();
                
                if(moveToTrash) { msg.moveToTrash(); }
              }
            }
          }
        });
      });
      
      Logger.log("Completed " + verified + " verifications.");
    }
    .

    PTC Account Creator + Verifier
  2. Thanks AznRico (1 members gave Thanks to Itzasan for this useful post)
  3. #107
    Acesplit's Avatar Member
    Reputation
    1
    Join Date
    Feb 2008
    Posts
    3
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by Shorta View Post
    Stuck at captcha using this? I do have funds...

    also @mail.goman.io is correct?
    I have the same issue - anyone know a solution?

  4. #108
    vladik86's Avatar Member
    Reputation
    1
    Join Date
    Dec 2007
    Posts
    7
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by HighPoint :D View Post
    For some reason this account was not created. Check signup details! GOTTHEM
    We have reached the end of the list

    i always got his error, how to fix it ?
    me too... i try to chage every option, but nothing

  5. #109
    nertman's Avatar Active Member
    Reputation
    17
    Join Date
    Aug 2008
    Posts
    64
    Thanks G/R
    0/4
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Going to test this today making accounts now

    Error i am getting:
    [16-12-22 04:45:16:445 EST] Found 1 threads.
    [16-12-22 04:45:16:810 EST] Found 96 messages.
    [16-12-22 04:45:17:125 EST] Completed 0 verifications.
    not sending the mails to the trash if it is verifying the emails

    Anyone able to get the code above to work with labels in google example i have a label POGO and all the emails going in to that label i tried to change it to the following but no luck

    Code:
    function myFunction() {
      var verified = 0;
      var moveToTrash = true;
      
      var threads = GmailApp.search('in:POGO subject:"Pokémon Trainer Club Activation"');
      Logger.log("Found " + threads.length + " threads.");
     
      threads.forEach(function(thread) {
        var messages = thread.getMessages();
        Logger.log("Found " + messages.length + " messages.");
        
        messages.forEach(function(msg) {
          var value = msg.getBody()
                         .match(/Verify your email/m);
          
          if(msg.isInInbox() && value) {
            var link = msg.getBody().match(/<a href="https:\/\/club.pokemon.com\/us\/pokemon-trainer-club\/activated\/([\w\d]+)"/);
            
            if(link) {
              var url = 'https://club.pokemon.com/us/pokemon-trainer-club/activated/' + link[1];
              var options = {
                "muteHttpExceptions": true
              };
              
              var status = UrlFetchApp.fetch(url, options).getResponseCode();
              Logger.log("[#] Verified (" + status + "): " + url);
              
              if(status == 200) {
                verified++;
                msg.markRead();
                
                if(moveToTrash) { msg.moveToTrash(); }
              }
            }
          }
        });
      });
      
      Logger.log("Completed " + verified + " verifications.");
    }
    i also tried

    Code:
      var threads = GmailApp.search('in:label:POGO subject:"Pokémon Trainer Club Activation"');
      var threads = GmailApp.search('in:label/POGO subject:"Pokémon Trainer Club Activation"');
    got it working changed us to uk for the links in the code however had to move all my mails to my inbox unable to get it working with label
    Last edited by nertman; 12-22-2016 at 05:25 AM.

  6. #110
    Gazaman's Avatar Active Member
    CoreCoins Purchaser
    Reputation
    58
    Join Date
    Aug 2016
    Posts
    360
    Thanks G/R
    89/57
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Its stuck at Attepting to solve reCAPTCHER please wait.....! , i have funds , trying goman & pobro none work
    Scheme hot like shabba madda pot

  7. #111
    AznRico's Avatar Active Member
    Reputation
    20
    Join Date
    Sep 2006
    Posts
    35
    Thanks G/R
    1/18
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by Gazaman View Post
    Its stuck at Attepting to solve reCAPTCHER please wait.....! , i have funds , trying goman & pobro none work
    your bid may be too low, therefore no one is solving the captcha for you.

  8. #112
    nertman's Avatar Active Member
    Reputation
    17
    Join Date
    Aug 2008
    Posts
    64
    Thanks G/R
    0/4
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Currently stuck at what i posted here below. i have my 2captcha set to the max ($1 for 1000 captchas) the bar will not let me make the bidding any bigger

    Code:
    Attempting to create account(s), please wait... 
    Navigating to age verification page and fetching CSRF. 
    Successfull obtained CSRF. 
    Attemption to submit age verification details. 
    Successfully submitted age verification details. 
    Attepting to solve reCAPTCHER please wait.....!

Page 8 of 8 FirstFirst ... 45678

Similar Threads

  1. Replies: 143
    Last Post: 09-19-2016, 10:11 PM
  2. [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
  3. [Release] PTC Account Creator
    By JD in forum Pokemon GO Hacks|Cheats
    Replies: 259
    Last Post: 08-07-2016, 06:36 PM
  4. [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
  5. Replies: 0
    Last Post: 07-28-2016, 09:15 PM
All times are GMT -5. The time now is 08:25 AM. Powered by vBulletin® Version 4.2.3
Copyright © 2024 vBulletin Solutions, Inc. All rights reserved. User Alert System provided by Advanced User Tagging (Pro) - vBulletin Mods & Addons Copyright © 2024 DragonByte Technologies Ltd.
Digital Point modules: Sphinx-based search