Advertisement
Guest User

Untitled

a guest
Nov 13th, 2016
164
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.33 KB | None | 0 0
  1. var config = {
  2. // Starts gen from startNumber to endNumber, determining how many accounts are made
  3. startNum:17,
  4. endNum:19,
  5.  
  6. // Creation Options
  7. // Use nicknames file, or just append numbers to username?
  8. nicknameFile:false,
  9. // If true generate a random password, If false set "password" field below
  10. randomPassword:true,
  11. // Saves a screenshot per account creation when set to true
  12. screenshotResult:true,
  13. // Saves a screenshot even if registration fails when set to true
  14. screenshotOnFailure:true,
  15.  
  16. // Creation Requirements
  17. // Keep the '', User- & display name. It is recommended to keep the username set in your config to around 6 characters.
  18. username:"loliet67",
  19. // If you set randomPassword to 'false' above change this to your chosen password (so you have same password for all accounts)
  20. password:"azerty123",
  21. // Enter your email address name. If your address is email@domain.com you'd enter 'email'
  22. emailUser:"loliet67",
  23. // Domain of email address. If your address is email@domain.com you'd enter 'domain.com'
  24. emailDomain:"yahoo.com",
  25. // Location Latitude for initial login
  26. latitude:"48.84",
  27. // Location Longitude for initial login
  28. longitude:"7.61",
  29. // Country code (e.g. BE, FR, US, CA)
  30. country:"FR",
  31.  
  32. // 2Captcha API key
  33. useAutoCatcha: false,
  34. captchaApiKey: "YOUR_2CAPTCHA_API_KEY_HERE"
  35. };
  36.  
  37. module.exports = config;
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement