forked from sebastienvercammen/ptc-acc-gen
-
Notifications
You must be signed in to change notification settings - Fork 0
/
config.js
37 lines (33 loc) · 1.3 KB
/
config.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
var config = {
// Starts gen from startNumber to endNumber, determining how many accounts are made
startNum:0,
endNum:10,
// Creation Options
// Use nicknames file, or just append numbers to username?
nicknameFile:false,
// If true generate a random password, If false set "password" field below
randomPassword:true,
// Saves a screenshot per account creation when set to true
screenshotResult:true,
// Saves a screenshot even if registration fails when set to true
screenshotOnFailure:true,
// Creation Requirements
// Keep the '', User- & display name. It is recommended to keep the username set in your config to around 6 characters.
username:"CHANGEME",
// If you set randomPassword to 'false' above change this to your chosen password (so you have same password for all accounts)
password:"NOSTATIC",
// Enter your email address name. If your address is [email protected] you'd enter 'email'
emailUser:"CHANGEME",
// Domain of email address. If your address is [email protected] you'd enter 'domain.com'
emailDomain:"CHANGEME",
// Location Latitude for initial login
latitude:"CHANGEME",
// Location Longitude for initial login
longitude:"CHANGEME",
// Country code (e.g. BE, FR, US, CA)
country:"US",
// 2Captcha API key
useAutoCatcha: false,
captchaApiKey: "YOUR_2CAPTCHA_API_KEY_HERE"
};
module.exports = config;