PersonsadminTeam

Monopoly Code Generator! | FREE MONEY METHOD

Apr 10th, 2017
215
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 1.28 KB | None | 0 0
  1. All you have to do is find a monopoly code (Either buy one at the store. or find one on Youtube) and subtract the M and the front, enter it in the code generator and watch the codes generate. To use: Press ctrl+shift+i, and click "Console" and enter this code:
  2. Code:
  3. -------------------------------------------------------------------------------
  4. var code = 'PXPNN3LT9AAG35H'
  5. var Repeats = 10;
  6. function randomString(length, chars) {
  7.     var mask = '';
  8.     if (chars.indexOf('a') > -1) mask += '0123456789';
  9.     if (chars.indexOf('A') > -1) mask += 'ACGHKLNPRTWXZ';
  10.     if (chars.indexOf('#') > -1) mask += '0123456789';
  11.     if (chars.indexOf('!') > -1) mask += code;
  12.     var result = '';
  13.     for (var i = length; i > 0; --i) result += mask[Math.floor(Math.random() * mask.length)];
  14.     return result;
  15. }
  16. for (i = 0; i < Repeats; i++) {
  17. var res = code.replace(randomString(1, '!'), randomString(1, '#A'));
  18. var res2 = res.replace(randomString(1, '!'), randomString(1, '#A'));
  19. var res3 = res2.replace(randomString(1, '!'), randomString(1, '#A'));
  20. console.log('M' + res3);
  21. }
  22. ------------------------------------------------------------------------------------------------
  23.  
  24.  
  25. Vouch if it worked! (It mostly either says invalid, or 2nd sweepstakes thing)
  26.  
  27. Go to http://playmonopoly.us to use.
Add Comment
Please, Sign In to add comment