Guest User

Untitled

a guest
Sep 15th, 2016
37
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.41 KB | None | 0 0
  1. var config = {
  2. // Starts gen from startNumber to endNumber, determining how many accounts are made
  3. startNum:0,
  4. endNum:50,
  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. Make sure any "(username + number)@domain.com" is 100% unique, and is 6 characters minimum, but under 14 characters after the numbers are applied.
  18. username:"TheBigger23",
  19. // If you set randomPassword to 'false' above change this to your chosen password (so you have same password for all accounts)
  20. password:"NOSTATIC",
  21. // Enter your email address name. If your address is email@domain.com you'd enter 'email'
  22. emailUser:"TheBigger2j3",
  23. // Domain of email address. If your address is email@domain.com you'd enter 'domain.com'
  24. emailDomain:"keybinder.de",
  25. // Location Latitude for initial login
  26. latitude:"36.54596",
  27. // Location Longitude for initial login
  28. longitude:"-79.22247",
  29. // Country code (e.g. BE, FR, US, CA)
  30. country:"DE",
  31.  
  32. // 2Captcha API key
  33. useAutoCatcha: false,
  34. captchaApiKey: "YOUR_2CAPTCHA_API_KEY_HERE"
  35. };
  36.  
  37. module.exports = config;
Add Comment
Please, Sign In to add comment