-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
e70b5b0
commit 863ea8d
Showing
1 changed file
with
49 additions
and
2 deletions.
There are no files selected for viewing
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,49 @@ | ||
# Audica CustomDifficultNames | ||
A mod that allows map makers to choose the names of the map difficulties | ||
# Audica Custom Difficulty Names | ||
A mod that allows map makers to override the names of the map difficulties | ||
|
||
## Installation | ||
* Download MelonLoader from [here](https://github.com/HerpDerpinstine/MelonLoader/releases/latest) | ||
* Download CustomDifficultyNames from [here](https://github.com/octoberU/SongBrowser/releases/latest) | ||
* Put the **CustomDifficultyNames.dll** into Audica/Mods | ||
|
||
## Changing difficulty names in your map | ||
* Open the **song.desc** file in a text/code editor | ||
* Add entries to the file for each custom name as follows | ||
<pre><code>"customExpert" : "YOUR NAME HERE", | ||
"customAdvanced" : "YOUR NAME HERE", | ||
"customModerate" : "YOUR NAME HERE", | ||
"customBeginner" : "YOUR NAME HERE" | ||
</code></pre> | ||
|
||
### Example of full song.desc | ||
<pre><code>{ | ||
"songID": "Mirror-MeepsKitten", | ||
"moggSong": "song.moggsong", | ||
"moggMainSong": "song.mogg", | ||
"title": "Mirror", | ||
"artist": "Porter Robinson", | ||
"midiFile": "song.mid", | ||
"fusionSpatialized": "fusion/guns/default/drums_default_spatial.fusion", | ||
"fusionUnspatialized": "fusion/guns/default/drums_default_sub.fusion", | ||
"targetDrums": "", | ||
"sustainSongRight": "", | ||
"moggSustainSongRight": "", | ||
"sustainSongLeft": "", | ||
"moggSustainSongLeft": "", | ||
"fxSong": "song_extras.moggsong", | ||
"moggFxSong": "song_extras.mogg", | ||
"tempo": 150.0, | ||
"songEndEvent": "event:/song_end/song_end_C#", | ||
"prerollSeconds": 0.5, | ||
"useMidiForCues": false, | ||
"hidden": false, | ||
"author": "MeepsKitten", | ||
"offset": 0, | ||
"previewStartSeconds": 27, | ||
"bookmarks": [], | ||
"customExpert" : "YOUR NAME HERE", | ||
"customAdvanced" : "YOUR NAME HERE", | ||
"customModerate" : "YOUR NAME HERE", | ||
"customBeginner" : "YOUR NAME HERE" | ||
} | ||
</code></pre> |