Advertisement
onutesaul76555

Multiplayer Piano Cleanup

Jun 19th, 2021
1,682
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. // multiplayerpiano.com
  2. // created by IUS
  3.  
  4. // clean version
  5. javascript:var cleanup = setInterval(function(){t=0; Object.keys(MPP.piano.keys).forEach(function(key) {setTimeout(function () {MPP.press(key,1)}, t++ * 0)});}, 1000);setTimeout(function(){clearInterval(cleanup)}, 30000)
  6.  
  7. // loop version
  8. javascript:setInterval(function(){t=0; Object.keys(MPP.piano.keys).forEach(function(key) {setTimeout(function () {MPP.press(key,1)}, t++ * 0)});}, Math.random()*10000);
  9.  
  10. // Please refresh because this script holds pianoroll notes.
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement