25 lines
829 B
Markdown
25 lines
829 B
Markdown
# [Pianoverse Client for pianoverse.me](https://pianoverse.me/)
|
|
|
|
Extracted from the https://pianoverse.net site at 10:33, November 25.
|
|
Bundle.js has modifications to point towards "api.pianoverse.me"
|
|
Commit ID: 6202927ae53e43bafd8b8fd3be1ffcaaa45426a3
|
|
|
|
```
|
|
let wsurl = "";
|
|
if(!localStorage.host){
|
|
wsurl = "wss://api.pianoverse.me";
|
|
} else if(localStorage.host == "mainline") {
|
|
wsurl = "wss://pianoverse.net"
|
|
} else if(localStorage.host == "dev") {
|
|
wsurl = "ws://127.0.0.1:8081"
|
|
};
|
|
|
|
this._ws=new WebSocket(wsurl,"pianoverse")
|
|
```
|
|
|
|
To reverse these modifications, run `localStorage.host = "mainline"`. You can also make it point towards 127.0.0.1:8081 with `localStorage.host = "dev"`
|
|
|
|
Nushell script for downloading all sounds:
|
|
```nu
|
|
for $x in 21..108 {wget $"https://pianoverse.net/sounds/salamander/($x).mp3"}
|
|
```
|