Multiplayer Piano tips 'n tricks

Sbenny.com is trusted by 1,323,829 happy users since 2014.
Register

Tamuren

Lurker Lv0️⃣
Member for 8 years
Multiplayer Piano is a wonderful website where you can play collaboratively with other people in a chat room environment. First-timer or professional pianist, with 88 keys at your fingertips you can start pounding away at your favourite anime song or outdated pop culture tune.

Click HERE to reach Multiplayer Piano

One of the best things about Multiplayer Piano is it is highly susceptible to being modded in clever, unexpected ways. You can play midi files as notes on the piano, play 5 keys in 1, and so much more overwriting the javascript with TamperMonkey or adding your own.

How to animate your MPP name:

1. Right click the browser and select Inspect Element (chrome)
2. Navigate to console and post:
Code:
if (typeof(done) === "undefined") {
        var selfName = "Fallout"; // <-- your name here
       
        var done = true;
        var counter = 0;
        function updateName(name) {
                MPP.client.sendArray([
                {
                        m: "userset",
                        set:
                        {
                                name: name
                        }
                }])
        };
        var groceryList = ["1", "2", "Tactics: Brotherhood of Steel", 
          ": Brotherhood of Steel", "3", "New Vegas", "Shelter", "4"];
               
        var foo = setInterval( function() {
                if (counter < groceryList.length - 1) {
                        counter++;
                        updateName(`${selfName} ${groceryList[counter]}`)
                } else {
                        counter = 0;
                        updateName(`${selfName} ${groceryList[counter]}`)
                }
        }, 2100);
} else {
        console.info("==You already pasted this!==\nReload the page and paste again if you'd like to see any changes you made to the script.");
}
Note that you could edit this in several ways. Change 'var selfName = "Bob"' to your own name. Set your own element values for 'var groceryList'. You can even use emotes to convey animation! :D
 

Tamuren

Lurker Lv0️⃣
Member for 8 years
Play Notes x9999 a Second Like a Boss

So you're on MPP, you can't play piano, you're bored, what to do?? First of all, consider annoying others by playing incredibly fast. Use an Auto Fast Mouse Click program such as this one: Fast Mouse Clicker, and watch as you play so many notes everyone in the room will either be impressed or leave!
 

Sbenny

A crazy scientist
Staff member
Admin
SB Mod Squad ⭐
✔ Approved Releaser
Active User
LOL I didn't knew these ones!

Hehehe you forgot the third alternative (when playing x9999 notes a second):

3. Everyone in the room will mute you :lol:


Very nice topic!
 
Top