-
- Good Egg Galaxy: Original
-
- Honeyhive Galaxy: Original
-
- Loopdeeloop Galaxy: Repeated (Beach Bowl Galaxy) (First Appearance)
-
- Flipswitch Galaxy: Generic (Classic)
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // ==UserScript== | |
| // @name MPP.net Old Colors | |
| // @namespace Violentmonkey Scripts | |
| // @icon data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAMAAAADACAYAAABS3GwHAAALTUlEQVR4Xu2dX2hUSRbGT2dHdx13Wx+CAUVQQfdJITaKT4KCguKLCEEfIwqGfZF90oDI4oOwBCEs6C7rwi4OQy9OZgTxaRBc/IO6qFFQAov4oCBIZjIzmclfk2yd2JV0TKdv9a1O29X1u3Dotq1bXfXV+erUd6r6JiNcIBAxApmI+07XQUAgAE4QNQIQIOrhp/MQAB+IGgEIEPXw03kIgA9EjQAEiHr46TwEwAeiRgACRD38dB4C4ANRIwABoh5+Og8B8IGoEYAAUQ8/nYcA+EDUCECAqIefzkMAfCBqBCBA1MNP5yEAPhA1AhAg6uGn8xAAH4gaAQgQ9fDTeQiAD0SNAASIevjpPATAB6JGAAJEPfx0HgLgA1EjAAGiHn46DwHwgagRgABRDz+dhwD4QNQIQICoh5/OQwB8IGoEIEDUw0/nIQA+EDUCECDq4afzEAAfiBoBCBD18NP5WhGg+Htq9Z2MbmMhMFXojn2tSu9q4YztpqUdxpqq0mIqiRGBH02n/2Dsf0UkUCJ4k2GxCaD1PzC2LcZRo89VReCPpra/Gps0NlF49SZBLQjwX9PYXFWhoLIYEThtOv03Y++LTIngRYKaEaC1tVU6OnQlVP4aGBiQzs5OmZjQvrlfp06dkg0bNpS84ezZs/L27Vv3ykzJI0eOyO7du2VqqvIoOzY2JidPnpTDhw/Lzp07E7+3r69PLly4kFiuuMCSJUvk/Pnzks1m593XCBiOj49LV1eXvHr1yvbvT+bNP4yNFmzMvI4XIoFGhVTXYhNA1/0PjeXa2tokn89LJlP+K9+8eSMbN26UkZGRijr04MED2b59+7x71IG3bt0qvb2 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // ==UserScript== | |
| // @name better snow | |
| // @namespace Violentmonkey Scripts | |
| // @match https://multiplayerpiano.net/* | |
| // @grant none | |
| // @version 1.0 | |
| // @author Hri7566 | |
| // @description 1/13/2025, 10:29:51 PM | |
| // @require https://cdn.jsdelivr.net/npm/tsparticles-preset-snow@2/tsparticles.preset.snow.bundle.min.js | |
| // ==/UserScript== |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // ==UserScript== | |
| // @name Back in my day | |
| // @namespace Violentmonkey Scripts | |
| // @match https://multiplayerpiano.net/* | |
| // @grant none | |
| // @version 1.0.0 | |
| // @author Hri7566 | |
| // @description 6/30/2024, 6:12:12 AM | |
| // ==/UserScript== |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| -- libgantry | |
| -- Crane control library | |
| -- by Hri7566 | |
| -- Crane designed by Khorne_The_Proto | |
| local gantry = {} | |
| local bn = nil | |
| local gs = nil | |
| local red = nil |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // ==UserScript== | |
| // @name Hri's MPP bot | |
| // @namespace http://tampermonkey.net/ | |
| // @version 0.1 | |
| // @description Uses object-oriented commands. | |
| // @author You | |
| // @match http://www.multiplayerpiano.com/* | |
| // @grant none | |
| // ==/UserScript== |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| float flimit(float n, float low, float high) | |
| { | |
| return max(min(n, high), low); | |
| } | |
| float fmap(float n, float start1, float stop1, float start2, float stop2) | |
| { | |
| float newval = (n - start1) / (stop1 - start1) * (stop2 - start2) + start2; | |
| if (start2 < stop2) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // ==UserScript== | |
| // @name Eval | |
| // @namespace Violentmonkey Scripts | |
| // @match https://multiplayerpiano.net/* | |
| // @grant none | |
| // @version 1.0 | |
| // @author Hri7566 | |
| // @description 4/21/2023, 7:12:33 AM | |
| // ==/UserScript== |
NewerOlder