Advertisement
Guest User

Untitled

a guest
Dec 17th, 2017
838
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.47 KB | None | 0 0
  1. // accounts.js no longer required, open muledump.html and check out the first time setup tool
  2.  
  3. // editor with syntax highlighting is recommended (for example, notepad++ or textmate)
  4.  
  5. accounts = {
  6.  
  7. // Put your data here as shown below. Don't forget the commas and quotes!
  8. // If your emails or passwords contain single quotes,
  9. // escape them with backslashes (\) like this: 'pass\'word'
  10.  
  11.  
  12. 'Dragofire44+1@gmail.com': 'BEYJ4CXV6UAV',
  13. 'Dragofire44+2@gmail.com': 'M88X64VE9XR7',
  14. 'Dragofire44+3@gmail.com': '466X7YPG7G2Q',
  15. 'Dragofire44+4@gmail.com': 'OMSU9C2SXT78',
  16. 'Dragofire44+5@gmail.com': 'H84IRFWKBFLD',
  17. 'Dragofire44+6@gmail.com': 'GU4VPJWJUKFM',
  18. 'Dragofire44+7@gmail.com': 'FHVRJU7ARLXF',
  19. 'Dragofire44+8@gmail.com': '7Z8IIVAPGAXH',
  20. 'Dragofire44+9@gmail.com': 'SW2G903NZJY9',
  21. 'Dragofire44+10@gmail.com': 'DAQL7XBITT43',
  22. 'Dragofire44+11@gmail.com': 'GHG1M6ENYM7Q',
  23. 'Dragofire44+12@gmail.com': '1DAZCB7LHU8I',
  24. 'Dragofire44+13@gmail.com': 'Z085EWD0W31F',
  25. 'Dragofire44+14@gmail.com': 'BTLQC64323K3',
  26. 'Dragofire44+15@gmail.com': 'G04WJ6DJQOCM',
  27. 'Dragofire44+16@gmail.com': 'PAIYXJD8PX9G',
  28. 'Dragofire44+17@gmail.com': '55ETKSMETM4L',
  29. 'Dragofire44+18@gmail.com': 'ED2C2X9BDYDV',
  30. 'Dragofire44+19@gmail.com': 'XTO94BNM4BIE',
  31. 'Dragofire44+20@gmail.com': 'AL0V3MEPAB01',
  32. 'Dragofire44+21@gmail.com': 'NW1D1GP0A6BP',
  33. 'Dragofire44+22@gmail.com': 'MI1R0KOZSB5Y',
  34. 'Dragofire44+23@gmail.com': '6GTHU5OE8M6D',
  35. 'Dragofire44+24@gmail.com': 'YY58T6RTWC5F',
  36. 'Dragofire44+25@gmail.com': '3NU8RDMC9WTV',
  37. 'Dragofire44+26@gmail.com': '6TKN5NQGEPWI',
  38. 'Dragofire44+27@gmail.com': '1WLHKTX1P25Y',
  39. 'Dragofire44+28@gmail.com': '7LAGI0SK1NTF',
  40. 'Dragofire44+29@gmail.com': 'S0YLHXZGVXZ9',
  41. 'Dragofire44+30@gmail.com': 'ZPGB8W0AQACM',
  42. };// don't delete this line!
  43.  
  44.  
  45. // how many characters are displayed in each row (within one account)
  46. rowlength = 7;
  47.  
  48. // change to 1 to switch to testing
  49. testing = 0;
  50.  
  51. // change to 1 to enable price display in tooltips
  52. prices = 0;
  53.  
  54. // change to 1 to enable one-click login (run lib/mulelogin.au3 first)
  55. mulelogin = 0;
  56.  
  57. // 0 = use smart layout (fill empty spaces)
  58. // 1 = show account boxes row by row
  59. nomasonry = 0;
  60.  
  61. // seconds to delay between loading separate accounts (try to limit yourself to 6 requests per minute)
  62. accountLoadDelay = 2;
  63.  
  64. // whether or not to enable debug console logging
  65. debugging = false;
  66.  
  67. // if you have your own imgur client id then uncomment this line and add it here; this is not a required setting
  68. //ImgurClientID = '';
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement