-
Member
Yes I will post a screenshot right now and yes it's in a folder accouunts.txt with both username : password (without space)
EDIT: My apologies. For some reason the accounts.txt had made a space in the top where the first username : password should have been.. I removed that line to make sure the first line was an account. Worked fine.
-
Private
Originally Posted by
Axeon1g
Yes I will post a screenshot right now and yes it's in a folder accouunts.txt with both username : password (without space)
EDIT: My apologies. For some reason the accounts.txt had made a space in the top where the first username : password should have been.. I removed that line to make sure the first line was an account. Worked fine.
I should have add a "continue" for those cases, but well, you solved it so everything is good
-
Post Thanks / Like - 2 Thanks
Axeon1g,
PBO (2 members gave Thanks to mydragon1 for this useful post)
-
Member
Originally Posted by
mydragon1
I should have add a "continue" for those cases, but well, you solved it so everything is good

I was about to say that however I have no idea how the coding works, difficulty, time and honestly this is already amazing as is with its one click function.. Simple fix if anyone has that issue just double check the accounts.txt before running the auth creator. Appreciate your response though.
-
Member
Do you guys know how is it possible to change password? And maybe you know the email that assigned to each user?
-
Member
Is there a way so the account is not so random?
Like you enter details like:
MyAccount : MyPassword
and what it pumps out is
MyAccount01 : MyPassword
MyAccount02 : MyPassword
MyAccount03 : MyPassword
MyAccount04 : MyPassword
?
-
Member
Read up someone already posted the code to do so, you just need to edit the source code.
-
Corporal
Originally Posted by
killersmurf101
Is there a way so the account is not so random?
Like you enter details like:
MyAccount : MyPassword
and what it pumps out is
MyAccount01 : MyPassword
MyAccount02 : MyPassword
MyAccount03 : MyPassword
MyAccount04 : MyPassword
?
It's possible, and I have it *MOSTLY* done, I just hit one issue at the minute which I'm debugging to find a solution.
I have it so the username you want is inputted through the command line on first run, the data is stored and an integer is added to the end of it, which increments on each loop.
The password is also requested upon run and stored.
The only issue I'm running into is, when I have two variables in the username variable, it causes the program to hang..
I'm having trouble finding exactly which line of code cannot be completed as Ruby isn't the easiest thing for me to debug, considering I only picked it up yesterday when I started editing this program.
tl;dr
the sign up process doesn't like
Code:
username = "#{$user}#{Array.new(3) { Random.rand(9) }.join}"
Originally Posted by
Axeon1g
Read up someone already posted the code to do so, you just need to edit the source code.
What was released earlier, was the option to have a specified username with 5 random numbers following it, so the element of randomness is still there really.
-
Post Thanks / Like - 1 Thanks
Axeon1g (1 members gave Thanks to JakeP for this useful post)
-
Member
Originally Posted by
JakeP
It's possible, and I have it *MOSTLY* done, I just hit one issue at the minute which I'm debugging to find a solution.
I have it so the username you want is inputted through the command line on first run, the data is stored and an integer is added to the end of it, which increments on each loop.
The password is also requested upon run and stored.
The only issue I'm running into is, when I have two variables in the username variable, it causes the program to hang..
I'm having trouble finding exactly which line of code cannot be completed as Ruby isn't the easiest thing for me to debug, considering I only picked it up yesterday when I started editing this program.
tl;dr
the sign up process doesn't like
Code:
username = "#{$user}#{Array.new(3) { Random.rand(9) }.join}"
What was released earlier, was the option to have a specified username with 5 random numbers following it, so the element of randomness is still there really.
If you manage to get that working and release it. Kudos to you JakeP. Would make managing the accounts a lot easier.
-
Member
change email
Is there any opportunity to change account email? I think we can have problems if this temporary email stays for ever?
-
Active Member
Originally Posted by
JD
Hey guys,
I created a PTC Account Creator that creates 10 accounts at a time.
Requirements
- A windows computer
- Half a brain
How To:
- Unzip files
- Double click .exe file
- Open accounts.txt file to see your accounts
Download
Source
V1.1
Added random DOB
V1.2
Added TOS accepting
Enjoy!
COuld you add an other download link?
-
Member
Originally Posted by
grambas
Is there any opportunity to change account email? I think we can have problems if this temporary email stays for ever?
You can log in after on PTC website and change password/e-mail.
-
Active Member
Originally Posted by
wakewakewakaranai
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
wait like 15 seconds, then press ctrl+c in the cmd window once.
-
Member
I came out with something, using the code someone else provided a few posts before wasn't very stable because the script picks a random line. It will stuck pretty soon. So by using this piece of code the script will auto delete the username it used. Just add it after:
Code:
File.open("accounts.txt", 'a') do |file|
file.puts "#{username}:#{password}:#{email}"
end
Here it is:
Code:
open('custom_names.txt', 'r') do |f|
open('custom_names.txt.tmp', 'w') do |f2|
f.each_line do |line|
f2.write(line) unless line.start_with? "#{username}"
end
end
end
Also you will need to add these at the top of the page and download the gems as well:
Code:
require 'fileutils'
require 'tempfile'
-
So does it verify yes or no? I see many different answers
-
Member
Originally Posted by
killersmurf101
Is there a way so the account is not so random?
Like you enter details like:
MyAccount : MyPassword
and what it pumps out is
MyAccount01 : MyPassword
MyAccount02 : MyPassword
MyAccount03 : MyPassword
MyAccount04 : MyPassword
?
I edit source and create new thread with select name and pwd
http://www.ownedcore.com/forums/poke...or-edited.html