Re: how to get mpp on rainbow? (changecolor command)

732 views
Skip to first unread message
Message has been deleted

Lamp

unread,
Jul 17, 2018, 5:28:07 PM7/17/18
to Multiplayer Piano Forum
on owop piano (available at mpp.terrium.net)  you can cycle your color through the rainbow with this code, but you'll need the admin password


var count = 0;
var size = 128;
var rainbow = new Array(size);


for (var i = 0; i < size; i++) {
   
var red = sin_to_hex(i, 0 * Math.PI * 2 / 3); // 0   deg
   
var blue = sin_to_hex(i, 1 * Math.PI * 2 / 3); // 120 deg
   
var green = sin_to_hex(i, 2 * Math.PI * 2 / 3); // 240 deg


    rainbow
[i] = "#" + red + green + blue;
}


function sin_to_hex(i, phase) {
   
var sin = Math.sin(Math.PI / size * 2 * i + phase);
   
var int = Math.floor(sin * 127) + 128;
   
var hex = int.toString(16);


   
return hex.length === 1 ? "0" + hex : hex;
}
setInterval
(function() {
   
if (count > rainbow.length) count = 0;
    MPP
.client.sendArray([{
        m
: "adminmsg",
        password
: "password",
        message
: {
            m
: "color",
            color
: rainbow[count],
            id
: MPP.client.getOwnParticipant().id
       
}
   
}]);
    count
++;
}, 33);


you cannot do this on original mpp

аня кошка

unread,
Nov 17, 2018, 1:00:38 PM11/17/18
to Multiplayer Piano Forum
прив

Message has been deleted

DANIELFTOSTA 176

unread,
Oct 5, 2020, 2:08:02 PM10/5/20
to Multiplayer Piano Forum
what is the admin password?


Em sábado, 17 de novembro de 2018 às 16:00:38 UTC-2, аня кошка escreveu:
прив

DANIELFTOSTA 176

unread,
Oct 5, 2020, 2:09:30 PM10/5/20
to Multiplayer Piano Forum
?
Message has been deleted

¡~Snøwy_Bøba~¡

unread,
Dec 13, 2021, 8:23:05 PM12/13/21
to Multiplayer Piano Forum
Hello Multiplayer piano. I have Just one small Suggestion, So I've Been wanting to ask if you can make an adjustment where we can make the rooms rainbow for the pride month and make our Usernames Multicolored? That would be great! Please. And also can we have a Midi player like https://pianorhythm.me has? Cause they seem to be working on having the piano out and ready so I just want it here thanks! :D
Reply all
Reply to author
Forward
0 new messages