https://github.com/mdmods/playlists
A mod for Muse Dash that allows making custom playlists.
https://github.com/mdmods/playlists
mdmc muse-dash
Last synced: 3 months ago
JSON representation
A mod for Muse Dash that allows making custom playlists.
- Host: GitHub
- URL: https://github.com/mdmods/playlists
- Owner: MDMods
- Created: 2024-09-06T06:23:49.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2025-03-29T15:30:18.000Z (about 1 year ago)
- Last Synced: 2025-05-12T23:43:44.033Z (about 1 year ago)
- Topics: mdmc, muse-dash
- Language: C#
- Homepage:
- Size: 10.7 KB
- Stars: 2
- Watchers: 0
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Playlists
A mod for Muse Dash that allows making custom playlists.
## Installation
- Download and install MelonLoader v0.6.1 (**any other version will NOT work!**)
- Download the [latest release](https://github.com/MDMods/Playlists/releases) and place it in your `Mods` folder.
## Usage
- Playlists are located at `Muse Dash/UserData/Playlists`.
- Use any text editor to edit the files.
- To create a new playlist, simply create a new file.
### Shortcuts
You can use the entire number row to quickly add songs to a playlist.
The key is based on the position of the playlist you want to add to.
So if you have a list of [a playlist], [other playlist] and [random playlist], 1 would go to [a playlist], 2 to [other playlist] and so on...
**Note that this still requires a game restart to properly show up in the menu.**
### File Format
| Field | Description |
|----------|------------------------------------------------------------|
| name | The displayed name of the playlist. |
| icon | The icon of the playlist. Can be a local file path or URL. |
| position | The position this playlist appears at. |
| albums | The Albums/Songs in this playlist. Uses the game's UIDs. |
> If you want to find a UID you can use https://musedash.moe. The UID will be in the URL. (https://musedash.moe/music/)
> Custom Albums are prefixed with `album_` and then their filename without the .mdm extension.
>
> For example, `Sweet_Berry_Love.mdm` is defined as `album_Sweet_Berry_Love`.
>
> If the chart is in a folder, add `_folder` afterward.
**Note that the playlists will only update once you restart the game.**
### Template File
```json
{
"name": "Playlist Name",
"icon": "https://mdmc.moe/cdn/melon.png",
"position": 1,
"albums": [
"27-1",
"27-0",
"0-47"
]
}
```