├── .gitignore ├── MelonLoader.zip ├── ModLinks.json ├── Mods ├── AccuracyDisplay.dll ├── AccuracyIndicator.dll ├── AlbumScroll.dll ├── AltTabMute.dll ├── AlwaysAprilFool.dll ├── AlwaysBadApple.dll ├── AlwaysPigeons.dll ├── BPMDisplay.dll ├── Ballcock.dll ├── BestCombinationSuggest.dll ├── BetterNativeHook.dll ├── CharacterRandomizer.dll ├── CharacterScoreboard.dll ├── ChartDeleter.dll ├── ChartReview.dll ├── ChineseMode.dll ├── Cinema.dll ├── CinemaToggler.dll ├── CurrentCombination.dll ├── CustomAlbums.dll ├── CustomAnchorSupport.dll ├── CustomBGBrightness.dll ├── CustomHitSound.dll ├── CustomLoadingScreens.dll ├── CustomResolution.dll ├── FC AP.dll ├── FadeIn.dll ├── FavGirl.dll ├── FavGirlCatFix.dll ├── FeverEffectDisable.dll ├── Headquarters.dll ├── HiddenQol.dll ├── Info+.dll ├── IntroSkip.dll ├── KeybindManager.dll ├── LeagueIsBad.dll ├── LocalizeLib.dll ├── LockCursor.dll ├── MDRPC.dll ├── ModManager.dll ├── MuseDashMirror.dll ├── MuseDashModTools.dll ├── NoAutoPause.dll ├── NoLevelUpAnimations.dll ├── PopupLib.dll ├── PreventLowAcc.dll ├── QuickRestart.dll ├── QuickSwitchCombination.dll ├── RomajiSongName.dll ├── SaveMySpace.dll ├── SceneEggs.dll ├── ScoreboardCharacters.dll ├── ScrollSpeed.dll ├── SelectiveEffects.dll ├── ShopLift.dll ├── SongDesc.dll ├── SongInfo.dll ├── StricterJudge.dll ├── TrueAbove1kRank.dll ├── UIDisable.dll ├── UITweaks.dll ├── UltraInstinctSleepwalking.dll ├── UnlockAll.dll └── VictoryScreenSwitcher.dll └── README.md /.gitignore: -------------------------------------------------------------------------------- 1 | ## Ignore Visual Studio temporary files, build results, and 2 | ## files generated by popular Visual Studio add-ons. 3 | ## 4 | ## Get latest from https://github.com/github/gitignore/blob/master/VisualStudio.gitignore 5 | 6 | # Ignore the proxy and the MASM file 7 | Proxy/proxy.c 8 | Proxy/dllproxy.asm 9 | 10 | # User-specific files 11 | *.rsuser 12 | *.suo 13 | *.user 14 | *.userosscache 15 | *.sln.docstates 16 | 17 | # User-specific files (MonoDevelop/Xamarin Studio) 18 | *.userprefs 19 | 20 | # Mono auto generated files 21 | mono_crash.* 22 | 23 | # Build results 24 | [Dd]ebug/ 25 | [Dd]ebugPublic/ 26 | [Rr]elease/ 27 | [Rr]eleases/ 28 | x64/ 29 | x86/ 30 | [Aa][Rr][Mm]/ 31 | [Aa][Rr][Mm]64/ 32 | bld/ 33 | [Bb]in/ 34 | [Oo]bj/ 35 | [Ll]og/ 36 | 37 | # Visual Studio 2015/2017 cache/options directory 38 | .vs/ 39 | # Uncomment if you have tasks that create the project's static files in wwwroot 40 | #wwwroot/ 41 | 42 | # Visual Studio 2017 auto generated files 43 | Generated\ Files/ 44 | 45 | # MSTest test Results 46 | [Tt]est[Rr]esult*/ 47 | [Bb]uild[Ll]og.* 48 | 49 | # NUnit 50 | *.VisualState.xml 51 | TestResult.xml 52 | nunit-*.xml 53 | 54 | # Build Results of an ATL Project 55 | [Dd]ebugPS/ 56 | [Rr]eleasePS/ 57 | dlldata.c 58 | 59 | # Benchmark Results 60 | BenchmarkDotNet.Artifacts/ 61 | 62 | # .NET Core 63 | project.lock.json 64 | project.fragment.lock.json 65 | artifacts/ 66 | 67 | # StyleCop 68 | StyleCopReport.xml 69 | 70 | # Files built by Visual Studio 71 | *_i.c 72 | *_p.c 73 | *_h.h 74 | *.ilk 75 | *.meta 76 | *.obj 77 | *.iobj 78 | *.pch 79 | *.pdb 80 | *.ipdb 81 | *.pgc 82 | *.pgd 83 | *.rsp 84 | *.sbr 85 | *.tlb 86 | *.tli 87 | *.tlh 88 | *.tmp 89 | *.tmp_proj 90 | *_wpftmp.csproj 91 | *.log 92 | *.vspscc 93 | *.vssscc 94 | .builds 95 | *.pidb 96 | *.svclog 97 | *.scc 98 | 99 | # Chutzpah Test files 100 | _Chutzpah* 101 | 102 | # Visual C++ cache files 103 | ipch/ 104 | *.aps 105 | *.ncb 106 | *.opendb 107 | *.opensdf 108 | *.sdf 109 | *.cachefile 110 | *.VC.db 111 | *.VC.VC.opendb 112 | 113 | # Visual Studio profiler 114 | *.psess 115 | *.vsp 116 | *.vspx 117 | *.sap 118 | 119 | # Visual Studio Trace Files 120 | *.e2e 121 | 122 | # TFS 2012 Local Workspace 123 | $tf/ 124 | 125 | # Guidance Automation Toolkit 126 | *.gpState 127 | 128 | # ReSharper is a .NET coding add-in 129 | _ReSharper*/ 130 | *.[Rr]e[Ss]harper 131 | *.DotSettings.user 132 | 133 | # JustCode is a .NET coding add-in 134 | .JustCode 135 | 136 | # TeamCity is a build add-in 137 | _TeamCity* 138 | 139 | # DotCover is a Code Coverage Tool 140 | *.dotCover 141 | 142 | # AxoCover is a Code Coverage Tool 143 | .axoCover/* 144 | !.axoCover/settings.json 145 | 146 | # Visual Studio code coverage results 147 | *.coverage 148 | *.coveragexml 149 | 150 | # NCrunch 151 | _NCrunch_* 152 | .*crunch*.local.xml 153 | nCrunchTemp_* 154 | 155 | # MightyMoose 156 | *.mm.* 157 | AutoTest.Net/ 158 | 159 | # Web workbench (sass) 160 | .sass-cache/ 161 | 162 | # Installshield output folder 163 | [Ee]xpress/ 164 | 165 | # DocProject is a documentation generator add-in 166 | DocProject/buildhelp/ 167 | DocProject/Help/*.HxT 168 | DocProject/Help/*.HxC 169 | DocProject/Help/*.hhc 170 | DocProject/Help/*.hhk 171 | DocProject/Help/*.hhp 172 | DocProject/Help/Html2 173 | DocProject/Help/html 174 | 175 | # Click-Once directory 176 | publish/ 177 | 178 | # Publish Web Output 179 | *.[Pp]ublish.xml 180 | *.azurePubxml 181 | # Note: Comment the next line if you want to checkin your web deploy settings, 182 | # but database connection strings (with potential passwords) will be unencrypted 183 | *.pubxml 184 | *.publishproj 185 | 186 | # Microsoft Azure Web App publish settings. Comment the next line if you want to 187 | # checkin your Azure Web App publish settings, but sensitive information contained 188 | # in these scripts will be unencrypted 189 | PublishScripts/ 190 | 191 | # NuGet Packages 192 | *.nupkg 193 | # NuGet Symbol Packages 194 | *.snupkg 195 | # The packages folder can be ignored because of Package Restore 196 | **/[Pp]ackages/* 197 | # except build/, which is used as an MSBuild target. 198 | !**/[Pp]ackages/build/ 199 | # Uncomment if necessary however generally it will be regenerated when needed 200 | #!**/[Pp]ackages/repositories.config 201 | # NuGet v3's project.json files produces more ignorable files 202 | *.nuget.props 203 | *.nuget.targets 204 | 205 | # Microsoft Azure Build Output 206 | csx/ 207 | *.build.csdef 208 | 209 | # Microsoft Azure Emulator 210 | ecf/ 211 | rcf/ 212 | 213 | # Windows Store app package directories and files 214 | AppPackages/ 215 | BundleArtifacts/ 216 | Package.StoreAssociation.xml 217 | _pkginfo.txt 218 | *.appx 219 | *.appxbundle 220 | *.appxupload 221 | 222 | # Visual Studio cache files 223 | # files ending in .cache can be ignored 224 | *.[Cc]ache 225 | # but keep track of directories ending in .cache 226 | !?*.[Cc]ache/ 227 | 228 | # Others 229 | ClientBin/ 230 | ~$* 231 | *~ 232 | *.dbmdl 233 | *.dbproj.schemaview 234 | *.jfm 235 | *.pfx 236 | *.publishsettings 237 | orleans.codegen.cs 238 | 239 | # Including strong name files can present a security risk 240 | # (https://github.com/github/gitignore/pull/2483#issue-259490424) 241 | #*.snk 242 | 243 | # Since there are multiple workflows, uncomment next line to ignore bower_components 244 | # (https://github.com/github/gitignore/pull/1529#issuecomment-104372622) 245 | #bower_components/ 246 | 247 | # RIA/Silverlight projects 248 | Generated_Code/ 249 | 250 | # Backup & report files from converting an old project file 251 | # to a newer Visual Studio version. Backup files are not needed, 252 | # because we have git ;-) 253 | _UpgradeReport_Files/ 254 | Backup*/ 255 | UpgradeLog*.XML 256 | UpgradeLog*.htm 257 | ServiceFabricBackup/ 258 | *.rptproj.bak 259 | 260 | # SQL Server files 261 | *.mdf 262 | *.ldf 263 | *.ndf 264 | 265 | # Business Intelligence projects 266 | *.rdl.data 267 | *.bim.layout 268 | *.bim_*.settings 269 | *.rptproj.rsuser 270 | *- [Bb]ackup.rdl 271 | *- [Bb]ackup ([0-9]).rdl 272 | *- [Bb]ackup ([0-9][0-9]).rdl 273 | 274 | # Microsoft Fakes 275 | FakesAssemblies/ 276 | 277 | # GhostDoc plugin setting file 278 | *.GhostDoc.xml 279 | 280 | # Node.js Tools for Visual Studio 281 | .ntvs_analysis.dat 282 | node_modules/ 283 | 284 | # Visual Studio 6 build log 285 | *.plg 286 | 287 | # Visual Studio 6 workspace options file 288 | *.opt 289 | 290 | # Visual Studio 6 auto-generated workspace file (contains which files were open etc.) 291 | *.vbw 292 | 293 | # Visual Studio LightSwitch build output 294 | **/*.HTMLClient/GeneratedArtifacts 295 | **/*.DesktopClient/GeneratedArtifacts 296 | **/*.DesktopClient/ModelManifest.xml 297 | **/*.Server/GeneratedArtifacts 298 | **/*.Server/ModelManifest.xml 299 | _Pvt_Extensions 300 | 301 | # Paket dependency manager 302 | .paket/paket.exe 303 | paket-files/ 304 | 305 | # FAKE - F# Make 306 | .fake/ 307 | 308 | # CodeRush personal settings 309 | .cr/personal 310 | 311 | # Python Tools for Visual Studio (PTVS) 312 | __pycache__/ 313 | *.pyc 314 | 315 | # Cake - Uncomment if you are using it 316 | # tools/** 317 | # !tools/packages.config 318 | 319 | # Tabs Studio 320 | *.tss 321 | 322 | # Telerik's JustMock configuration file 323 | *.jmconfig 324 | 325 | # BizTalk build output 326 | *.btp.cs 327 | *.btm.cs 328 | *.odx.cs 329 | *.xsd.cs 330 | 331 | # OpenCover UI analysis results 332 | OpenCover/ 333 | 334 | # Azure Stream Analytics local run output 335 | ASALocalRun/ 336 | 337 | # MSBuild Binary and Structured Log 338 | *.binlog 339 | 340 | # NVidia Nsight GPU debugger configuration file 341 | *.nvuser 342 | 343 | # MFractors (Xamarin productivity tool) working folder 344 | .mfractor/ 345 | 346 | # Local History for Visual Studio 347 | .localhistory/ 348 | 349 | # BeatPulse healthcheck temp database 350 | healthchecksdb 351 | 352 | # Backup folder for Package Reference Convert tool in Visual Studio 2017 353 | MigrationBackup/ 354 | 355 | # Windows shortcuts 356 | *.lnk -------------------------------------------------------------------------------- /MelonLoader.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MDModsDev/ModLinks/4188ac67c59e06146ea8666ed1928f5e88a64b40/MelonLoader.zip -------------------------------------------------------------------------------- /ModLinks.json: -------------------------------------------------------------------------------- 1 | [ 2 | { 3 | "Name": "AccuracyDisplay", 4 | "Version": "2.0.0", 5 | "Author": "PBalint817", 6 | "DownloadLink": "Mods/AccuracyDisplay.dll", 7 | "HomePage": "", 8 | "ConfigFile": "AccuracyDisplay.cfg", 9 | "GameVersion": [ 10 | "*" 11 | ], 12 | "Description": "A live accuracy display.", 13 | "DependentMods": [], 14 | "DependentLibs": [], 15 | "IncompatibleMods": [], 16 | "SHA256": "70df3cd6fe9cc073d1221aeffad3f5bce97016044b961414a7a3bb5ab10fde68" 17 | }, 18 | { 19 | "Name": "AccuracyIndicator", 20 | "Version": "2.0.2", 21 | "Author": "Azn9 & lxy", 22 | "DownloadLink": "Mods/AccuracyIndicator.dll", 23 | "HomePage": "https://github.com/Azn9/MDAccuracyIndicatorMod", 24 | "ConfigFile": "AccuracyIndicator.cfg", 25 | "GameVersion": [ 26 | "*" 27 | ], 28 | "Description": "Adds a more exact accuracy indicator on the bottom of the screen.\nAlso displays average accuracy in milliseconds at the end of the level.", 29 | "DependentMods": [], 30 | "DependentLibs": [], 31 | "IncompatibleMods": [], 32 | "SHA256": "e47d28fe2545d80b0865b24af563ab38e043d2718023028a91de1b6e87b2e370" 33 | }, 34 | { 35 | "Name": "Album scroll", 36 | "Version": "2.0.2", 37 | "Author": "bnfour", 38 | "DownloadLink": "Mods/AlbumScroll.dll", 39 | "HomePage": "https://github.com/bnfour/md-mods", 40 | "ConfigFile": "", 41 | "GameVersion": [ 42 | "*" 43 | ], 44 | "Description": "While holding shift, use the arrow keys to switch song categories in song selection", 45 | "DependentMods": [], 46 | "DependentLibs": [], 47 | "IncompatibleMods": [], 48 | "SHA256": "077be6d63434249aab7638b0dd90b131f8c5f41aba1c4e24780f02cb3f992a38" 49 | }, 50 | { 51 | "Name": "AltTabMute", 52 | "Version": "3.0.0", 53 | "Author": "Dom Gintoki", 54 | "DownloadLink": "Mods/AltTabMute.dll", 55 | "HomePage": "", 56 | "ConfigFile": "", 57 | "GameVersion": [ 58 | "*" 59 | ], 60 | "Description": "Mutes the game when it's not focused.", 61 | "DependentMods": [], 62 | "DependentLibs": [], 63 | "IncompatibleMods": [], 64 | "SHA256": "70e29d0dbfbc6712c3f13420527268878f8aa394c0cacae8a0410599b3159de3" 65 | }, 66 | { 67 | "Name": "AlwaysAprilFool", 68 | "Version": "2.0.0", 69 | "Author": "lxy", 70 | "DownloadLink": "Mods/AlwaysAprilFool.dll", 71 | "HomePage": "", 72 | "ConfigFile": "", 73 | "GameVersion": [ 74 | "*" 75 | ], 76 | "Description": "Boss always shoot pigeon and tutorial is always april fool's, activate good tek hidden", 77 | "DependentMods": [], 78 | "DependentLibs": [], 79 | "IncompatibleMods": [], 80 | "SHA256": "9b0f7127da444038116bf7041f68636d169522850640dd1720785dc3c7f2edf2" 81 | }, 82 | { 83 | "Name": "AlwaysBadApple", 84 | "Version": "2.0.0", 85 | "Author": "lxy", 86 | "DownloadLink": "Mods/AlwaysBadApple.dll", 87 | "HomePage": "", 88 | "ConfigFile": "", 89 | "GameVersion": [ 90 | "*" 91 | ], 92 | "Description": "A mod which changes the background and character etc into black and white in tohou scene", 93 | "DependentMods": [], 94 | "DependentLibs": [], 95 | "IncompatibleMods": [], 96 | "SHA256": "c6413ba03722babb05b50636a2cb6de1a08e2909736b947a7193ffbbb3167523" 97 | }, 98 | { 99 | "Name": "AlwaysPigeons", 100 | "Version": "1.0.1", 101 | "Author": "lxy", 102 | "DownloadLink": "Mods/AlwaysPigeons.dll", 103 | "HomePage": "", 104 | "ConfigFile": "", 105 | "GameVersion": [ 106 | "*" 107 | ], 108 | "Description": "Boss always shoots pigeon, do not use AlwaysAprilFool at the same time", 109 | "DependentMods": [], 110 | "DependentLibs": [], 111 | "IncompatibleMods": [], 112 | "SHA256": "0c304a3ef08dfa5a48077eaf98a3073f954147756e64e745230c442bb8faafaa" 113 | }, 114 | { 115 | "Name": "BALLCOCK", 116 | "Version": "1.0.0", 117 | "Author": "AshtonMemer", 118 | "DownloadLink": "Mods/Ballcock.dll", 119 | "HomePage": "", 120 | "ConfigFile": "", 121 | "GameVersion": [ 122 | "*" 123 | ], 124 | "Description": "Implements a simplified, less eye-straining and distracting fever effect.\nAlso includes a distasteful console message.", 125 | "DependentMods": [], 126 | "DependentLibs": [], 127 | "IncompatibleMods": [], 128 | "SHA256": "9217c2b58ce5a863c1ab4ab347345a20953db3a35b9d774d3f4784eb9669b1fe" 129 | }, 130 | { 131 | "Name": "BestCombinationSuggest", 132 | "Version": "1.0.0", 133 | "Author": "brooke_zb", 134 | "DownloadLink": "Mods/BestCombinationSuggest.dll", 135 | "HomePage": "https://github.com/brooke-zb/MuseDashBestCombinationSuggest", 136 | "ConfigFile": "", 137 | "GameVersion": [ 138 | "*" 139 | ], 140 | "Description": "Displays the best character combination for a level in the pause screen.\nThe character combo displayed is usually correct, but don't put your blind faith in it.\nWhen in doubt, refer to CharacterScoreboard.", 141 | "DependentMods": [], 142 | "DependentLibs": [], 143 | "IncompatibleMods": [], 144 | "SHA256": "3acd91e466ccbed2585ee262c2e63e6c2430cb29dd7d9410ae83bdae06a35915" 145 | }, 146 | { 147 | "Name": "BetterNativeHook", 148 | "Version": "1.0.0", 149 | "Author": "PBalint817", 150 | "DownloadLink": "Mods/BetterNativeHook.dll", 151 | "HomePage": "https://github.com/Balint817/BetterNativeHook", 152 | "ConfigFile": "", 153 | "GameVersion": [ 154 | "*" 155 | ], 156 | "Description": "A library mod to do what NativeHook was never for...\nand another hint as to what's coming next.", 157 | "DependentMods": [], 158 | "DependentLibs": [], 159 | "IncompatibleMods": [], 160 | "SHA256": "6a8e949c75f73071a165e4a26ca3ddb4dd0c5a4c99feab027379b735947ab53b" 161 | }, 162 | { 163 | "Name": "BPMDisplay", 164 | "Version": "2.0.0", 165 | "Author": "lxy", 166 | "DownloadLink": "Mods/BPMDisplay.dll", 167 | "HomePage": "", 168 | "ConfigFile": "", 169 | "GameVersion": [ 170 | "*" 171 | ], 172 | "Description": "A mod which displays the BPM info above level designer on preparation screen", 173 | "DependentMods": [], 174 | "DependentLibs": [], 175 | "IncompatibleMods": [], 176 | "SHA256": "3bb437766d6ed5c329c6efe5b703aeab86361b31b7bb843a59ab3149dac961f7" 177 | }, 178 | { 179 | "Name": "CharacterRandomizer", 180 | "Version": "1.1.4", 181 | "Author": "lxy", 182 | "DownloadLink": "Mods/CharacterRandomizer.dll", 183 | "HomePage": "", 184 | "ConfigFile": "", 185 | "GameVersion": [ 186 | "*" 187 | ], 188 | "Description": "Everytime you play a chart, a random character combination will be selected.", 189 | "DependentMods": [], 190 | "DependentLibs": [], 191 | "IncompatibleMods": [], 192 | "SHA256": "8a6ff6b3edee3acec78769b4faf649219064159511d9c909116d3bdd12369940" 193 | }, 194 | { 195 | "Name": "CharacterScoreboard", 196 | "Version": "2.0.1", 197 | "Author": "Creepler13 & lxy", 198 | "DownloadLink": "Mods/CharacterScoreboard.dll", 199 | "HomePage": "https://github.com/Creepler13/CharacterScoreboard", 200 | "ConfigFile": "CharacterScoreboard.cfg", 201 | "GameVersion": [ 202 | "*" 203 | ], 204 | "Description": "Displays which character a specific score was achieved with on the leaderboard", 205 | "DependentMods": [], 206 | "DependentLibs": [], 207 | "IncompatibleMods": [], 208 | "SHA256": "3030dc1781812c502706cb4dacfa35c7bcc7fc4e1e9df5041cd92e50a6f9223f" 209 | }, 210 | { 211 | "Name": "ChartDeleter", 212 | "Version": "2.0.0", 213 | "Author": "PBalint817", 214 | "DownloadLink": "Mods/ChartDeleter.dll", 215 | "HomePage": "", 216 | "ConfigFile": "ChartDeleter.cfg", 217 | "GameVersion": [ 218 | "*" 219 | ], 220 | "Description": "Allows you to queue charts to be deleted when you exit the game using a configurable keybind.", 221 | "DependentMods": [ 222 | "KeybindManager", 223 | "LocalizeLib", 224 | "PopupLib", 225 | "CustomAlbums" 226 | ], 227 | "DependentLibs": [], 228 | "IncompatibleMods": [], 229 | "SHA256": "4e9e91b59e4997b71c824b02e71c2fb67c92a3c6dadb2ce1c341c2388833658a" 230 | }, 231 | { 232 | "Name": "ChartReview", 233 | "Version": "2.0.0", 234 | "Author": "lxy", 235 | "DownloadLink": "Mods/ChartReview.dll", 236 | "HomePage": "https://github.com/MDMods/ChartReview", 237 | "ConfigFile": "ChartReview.cfg", 238 | "GameVersion": [ 239 | "*" 240 | ], 241 | "Description": "Automatically selects sleepwalker, sets offset to 0, sets fever to manual, disables certain UI elements.\nCan be toggled on/off while in-game.", 242 | "DependentMods": [ 243 | "MuseDashMirror" 244 | ], 245 | "DependentLibs": [], 246 | "IncompatibleMods": [], 247 | "SHA256": "6a43dd0edcdf6b557d56eabd977ec8cb3dd802bb2ad2d39b4bab01bbacd14d76" 248 | }, 249 | { 250 | "Name": "ChineseMode", 251 | "Version": "2.0.0", 252 | "Author": "RobotLucca", 253 | "DownloadLink": "Mods/ChineseMode.dll", 254 | "HomePage": "", 255 | "ConfigFile": "", 256 | "GameVersion": [ 257 | "*" 258 | ], 259 | "Description": "Censores certain aspects of the game. (Characters, illustrations, etc)", 260 | "DependentMods": [], 261 | "DependentLibs": [], 262 | "IncompatibleMods": [], 263 | "SHA256": "bdb9e51281f53e55d3189f98abf1220ba72962b27ccd87699fc8f136f78f6181" 264 | }, 265 | { 266 | "Name": "Cinema", 267 | "Version": "1.2.1", 268 | "Author": "AshtonMemer", 269 | "DownloadLink": "Mods/Cinema.dll", 270 | "HomePage": "https://github.com/MDMods/Cinema", 271 | "ConfigFile": "", 272 | "GameVersion": [ 273 | "*" 274 | ], 275 | "Description": "The mod that allows you to see video backgrounds in custom charts.", 276 | "DependentMods": [ 277 | "CustomAlbums" 278 | ], 279 | "DependentLibs": [], 280 | "IncompatibleMods": [], 281 | "SHA256": "e9db79a2ea3a3ea0f2e06d0a976668875d3217e2b6a1efc167358fa161ab204f" 282 | }, 283 | { 284 | "Name": "CinemaToggler", 285 | "Version": "1.0.0", 286 | "Author": "PBalint817", 287 | "DownloadLink": "Mods/CinemaToggler.dll", 288 | "HomePage": "", 289 | "ConfigFile": "CinemaToggler.cfg", 290 | "GameVersion": [ 291 | "*" 292 | ], 293 | "Description": "Allows you to toggle the Cinema mod on/off in-game", 294 | "DependentMods": [ 295 | "KeybindManager" 296 | ], 297 | "DependentLibs": [], 298 | "IncompatibleMods": [], 299 | "SHA256": "39c4c56d2741a368bade65479bbbce2a91a9aba6ecf3e9a6afe84ea9f1346da4" 300 | }, 301 | { 302 | "Name": "CurrentCombination", 303 | "Version": "1.2.3", 304 | "Author": "Asgragrt", 305 | "DownloadLink": "Mods/CurrentCombination.dll", 306 | "HomePage": "https://github.com/MDMods/CurrentCombination", 307 | "ConfigFile": "MelonPreferences.cfg", 308 | "GameVersion": [ 309 | "*" 310 | ], 311 | "Description": "Shows the current selected character and elfin in the song selection menu and the song view.", 312 | "DependentMods": [], 313 | "DependentLibs": [], 314 | "IncompatibleMods": [], 315 | "SHA256": "0472b8b6834c6ba2ad0cbab1f4e2c60298bb69c03bafc8c11d7e0dfb1ec7ffef" 316 | }, 317 | { 318 | "Name": "CustomAlbums", 319 | "Version": "4.1.9", 320 | "Author": "Two Fellas", 321 | "DownloadLink": "Mods/CustomAlbums.dll", 322 | "HomePage": "https://github.com/gamrguy/CustomAlbums", 323 | "ConfigFile": "MelonPreferences.cfg", 324 | "GameVersion": [ 325 | "*" 326 | ], 327 | "Description": "The mod that allows you to load in custom charts.", 328 | "DependentMods": [], 329 | "DependentLibs": [], 330 | "IncompatibleMods": [], 331 | "SHA256": "26432f26da4f9a64ddb9d0978b4519341fdbf5554f1ea77e65ffcf9f40137d9e" 332 | }, 333 | { 334 | "Name": "CustomAnchorSupport", 335 | "Version": "2.0.0", 336 | "Author": "PBalint817", 337 | "DownloadLink": "Mods/CustomAnchorSupport.dll", 338 | "HomePage": "", 339 | "ConfigFile": "", 340 | "GameVersion": [ 341 | "*" 342 | ], 343 | "Description": "Adds streamer mode support to custom songs via the 'streamer' tag in 'info.json'.", 344 | "DependentMods": [], 345 | "DependentLibs": [], 346 | "IncompatibleMods": [], 347 | "SHA256": "4d919e950d7508b24b95629a52ab2004a43839bafbf7a2691e7d0815d3d5162f" 348 | }, 349 | { 350 | "Name": "CustomBGBrightness", 351 | "Version": "2.0.0", 352 | "Author": "lxy", 353 | "DownloadLink": "Mods/CustomBGBrightness.dll", 354 | "HomePage": "", 355 | "ConfigFile": "", 356 | "GameVersion": [ 357 | "*" 358 | ], 359 | "Description": "Allows you to adjust background brightness lower than 40%", 360 | "DependentMods": [], 361 | "DependentLibs": [], 362 | "IncompatibleMods": [], 363 | "SHA256": "798beb798de3b93c2195328d0b1db75c5ff81c0d386552aaaca1a56eb79bf0a7" 364 | }, 365 | { 366 | "Name": "CustomHitSound", 367 | "Version": "2.1.0", 368 | "Author": "lxy", 369 | "DownloadLink": "Mods/CustomHitSound.dll", 370 | "HomePage": "https://github.com/MDMods/CustomHitSound", 371 | "ConfigFile": "CustomHitSound.cfg", 372 | "GameVersion": [ 373 | "*" 374 | ], 375 | "Description": "Allows you to make custom hit sound. Detailed instructions on github readme", 376 | "DependentMods": [], 377 | "DependentLibs": [], 378 | "IncompatibleMods": [], 379 | "SHA256": "caccb49d5920fb70f820e1b374a192ab7d60124ec5de9be4842f29da87103ceb" 380 | }, 381 | { 382 | "Name": "CustomLoadingScreens", 383 | "Version": "1.1.1", 384 | "Author": "Mr. Talk", 385 | "DownloadLink": "Mods/CustomLoadingScreens.dll", 386 | "HomePage": "https://github.com/MDMods/CustomLoadingScreens", 387 | "ConfigFile": "", 388 | "GameVersion": [ 389 | "*" 390 | ], 391 | "Description": "Allows you to add custom loading screens.", 392 | "DependentMods": [], 393 | "DependentLibs": [], 394 | "IncompatibleMods": [], 395 | "SHA256": "841bcddb5453cdbbfed27e10ba4ea19113cfc2c2573e1fff870c95cdbc1ad7ac" 396 | }, 397 | { 398 | "Name": "CustomResolution", 399 | "Version": "2.1.0", 400 | "Author": "lxy & PBalint817", 401 | "DownloadLink": "Mods/CustomResolution.dll", 402 | "HomePage": "", 403 | "ConfigFile": "CustomResolution.cfg", 404 | "GameVersion": [ 405 | "*" 406 | ], 407 | "Description": "Allows you to set a custom resolution.", 408 | "DependentMods": [], 409 | "DependentLibs": [], 410 | "IncompatibleMods": [], 411 | "SHA256": "74b8b4e438e5230c143664a808d967ad71c0eb2bfb85b46a5461e434f4162aa0" 412 | }, 413 | { 414 | "Name": "FadeIn", 415 | "Version": "1.0.1", 416 | "Author": "Asgragrt", 417 | "DownloadLink": "Mods/FadeIn.dll", 418 | "HomePage": "https://github.com/MDMods/FadeIn", 419 | "ConfigFile": "MelonPreferences.cfg", 420 | "GameVersion": [ 421 | "*" 422 | ], 423 | "Description": "Allows you to make all notes fade out.", 424 | "DependentMods": [], 425 | "DependentLibs": [], 426 | "IncompatibleMods": [], 427 | "SHA256": "4d463379fe8d16e2ef5ff94c86c9446d4c4aa6d9b07b5e062b22f322ce71644b" 428 | }, 429 | { 430 | "Name": "FavGirl", 431 | "Version": "2.4.3", 432 | "Author": "RobotLucca & AshtonMemer", 433 | "DownloadLink": "Mods/FavGirl.dll", 434 | "HomePage": "https://github.com/AshtonMemer/FavGirl", 435 | "ConfigFile": "FavGirl.cfg", 436 | "GameVersion": [ 437 | "4.1.0" 438 | ], 439 | "Description": "Allows you to favorite characters and elfins.\nThis will make you look like that character even if another character is selected.\nYou will have the abilities of the selected character & your plays will be submitted as such.", 440 | "DependentMods": [], 441 | "DependentLibs": [], 442 | "IncompatibleMods": [], 443 | "SHA256": "41d73ea28386638fbbebd96d693bd03f79607ec22f239adb11d3c4676db49bef" 444 | }, 445 | { 446 | "Name": "FavGirl Cat Fix", 447 | "Version": "2.0.0", 448 | "Author": "PBalint817", 449 | "DownloadLink": "Mods/FavGirlCatFix.dll", 450 | "HomePage": "", 451 | "ConfigFile": "", 452 | "GameVersion": [ 453 | "*" 454 | ], 455 | "Description": "Fixes a bug with favorited cat characters.", 456 | "DependentMods": [], 457 | "DependentLibs": [], 458 | "IncompatibleMods": [], 459 | "SHA256": "21d8d9861fe56762a32239c62c4f44ab6bff57c5c48cf58c9f56a079efc8b00c" 460 | }, 461 | { 462 | "Name": "FC AP indicator", 463 | "Version": "1.7.0", 464 | "Author": "lxy", 465 | "DownloadLink": "Mods/FC AP.dll", 466 | "HomePage": "https://github.com/MDMods/FC-AP-Indicator", 467 | "ConfigFile": "FC AP.cfg", 468 | "GameVersion": [ 469 | "3.12.0" 470 | ], 471 | "Description": "Tells you whether you're on All Perfect/Full Combo pace, and displays the number of misses/greats.", 472 | "DependentMods": [ 473 | "MuseDashMirror" 474 | ], 475 | "DependentLibs": [], 476 | "IncompatibleMods": [], 477 | "SHA256": "37715f594b10d853428a6bb2454b2846be6332752146d698804c5072cafa1508" 478 | }, 479 | { 480 | "Name": "FeverEffectDisable", 481 | "Version": "2.0.0", 482 | "Author": "lxy", 483 | "DownloadLink": "Mods/FeverEffectDisable.dll", 484 | "HomePage": "", 485 | "ConfigFile": "", 486 | "GameVersion": [ 487 | "*" 488 | ], 489 | "Description": "Disables the fever background effect (duh.)", 490 | "DependentMods": [], 491 | "DependentLibs": [], 492 | "IncompatibleMods": [], 493 | "SHA256": "7876096110007741491ef80dc8de7a3438fbadd8417e4b599fefeba80f97b87c" 494 | }, 495 | { 496 | "Name": "Headquarters", 497 | "Version": "3.3.4", 498 | "Author": "AshtonMemer", 499 | "DownloadLink": "Mods/Headquarters.dll", 500 | "HomePage": "", 501 | "ConfigFile": "", 502 | "GameVersion": [ 503 | "*" 504 | ], 505 | "Description": "Allows you to submit scores on custom charts obtained from the MDMC website.", 506 | "DependentMods": [ 507 | "CustomAlbums" 508 | ], 509 | "DependentLibs": [], 510 | "IncompatibleMods": [], 511 | "SHA256": "682713d1b7241c79811dba110521d7be19b0f98012f7e4dc195f748ac27972d1" 512 | }, 513 | { 514 | "Name": "HiddenQol", 515 | "Version": "2.0.3", 516 | "Author": "RobotLucca & lxy", 517 | "DownloadLink": "Mods/HiddenQol.dll", 518 | "HomePage": "", 519 | "ConfigFile": "HiddenQol.cfg", 520 | "GameVersion": [ 521 | "*" 522 | ], 523 | "Description": "Adds a button to always show hidden difficulties.\nE.g. you don't need to spam click and such to unlock them before playing", 524 | "DependentMods": [], 525 | "DependentLibs": [], 526 | "IncompatibleMods": [], 527 | "SHA256": "1362b76568485f6dbb5bd8b68ea628747ebe1fecd6b1c1c4b585b0f889342c2c" 528 | }, 529 | { 530 | "Name": "Info+", 531 | "Version": "2.3.1", 532 | "Author": "KARPED1EM", 533 | "DownloadLink": "Mods/Info+.dll", 534 | "HomePage": "https://github.com/MDMods/MuseDashInfoPlus", 535 | "ConfigFile": "Info+/MainConfigs.yml", 536 | "GameVersion": [ 537 | "*" 538 | ], 539 | "Description": "Displays additional in-game info including Chart Info, Accuracy, Miss/Great/Early/Late/Hit/Total Counts, Score/Accuracy Gap from Personal Best, Sky/Ground Speed and so on.", 540 | "DependentMods": [], 541 | "DependentLibs": [], 542 | "IncompatibleMods": [], 543 | "SHA256": "552e23e047080c47eafd69257f96ab3192a6a40847e7efceac43cabde279f5d7" 544 | }, 545 | { 546 | "Name": "IntroSkip", 547 | "Version": "4.0.0", 548 | "Author": "PBalint817", 549 | "DownloadLink": "Mods/IntroSkip.dll", 550 | "HomePage": "", 551 | "ConfigFile": "IntroSkip.cfg", 552 | "GameVersion": [ 553 | "*" 554 | ], 555 | "Description": "Skips past the intro sequence.", 556 | "DependentMods": [], 557 | "DependentLibs": [], 558 | "IncompatibleMods": [], 559 | "SHA256": "2456c6cb992bb6c1a3fa51b5b5ba33ba2ee92cc093e4f77a5139c2a6c812f2e1" 560 | }, 561 | { 562 | "Name": "KeybindManager", 563 | "Version": "3.0.0", 564 | "Author": "PBalint817", 565 | "DownloadLink": "Mods/KeybindManager.dll", 566 | "HomePage": "", 567 | "ConfigFile": "", 568 | "GameVersion": [ 569 | "*" 570 | ], 571 | "Description": "A library for other mods to implement configurable keybinds, and listen to key combinations", 572 | "DependentMods": [], 573 | "DependentLibs": [], 574 | "IncompatibleMods": [], 575 | "SHA256": "bc9c354dc8a9e3f3c268faefad36bcc96cc76a6d197d45d5840ccd7e81e2b309" 576 | }, 577 | { 578 | "Name": "LeagueIsBad", 579 | "Version": "1.0.0", 580 | "Author": "PBalint817", 581 | "DownloadLink": "Mods/LeagueIsBad.dll", 582 | "HomePage": "", 583 | "ConfigFile": "", 584 | "GameVersion": [ 585 | "*" 586 | ], 587 | "Description": "...and you should feel bad.\nCloses the game if League of Legends is found on your PC.", 588 | "DependentMods": [], 589 | "DependentLibs": [], 590 | "IncompatibleMods": [], 591 | "SHA256": "8e24ae4cc98c5da156e0bb236e1d25fd9e9498e69c24cdc0e329b99dd7843b9a" 592 | }, 593 | { 594 | "Name": "LocalizeLib", 595 | "Version": "2.0.0", 596 | "Author": "PBalint817", 597 | "DownloadLink": "Mods/LocalizeLib.dll", 598 | "HomePage": "", 599 | "ConfigFile": "", 600 | "GameVersion": [ 601 | "*" 602 | ], 603 | "Description": "Makes localizing mods for the game's language settings easier.", 604 | "DependentMods": [], 605 | "DependentLibs": [], 606 | "IncompatibleMods": [], 607 | "SHA256": "187ce4b60c076419d88010254952c6d461583519c46663f4cf5f17c404632ef0" 608 | }, 609 | { 610 | "Name": "LockCursor", 611 | "Version": "1.0.1", 612 | "Author": "Mr. Talk", 613 | "DownloadLink": "Mods/LockCursor.dll", 614 | "HomePage": "", 615 | "ConfigFile": "", 616 | "GameVersion": [ 617 | "*" 618 | ], 619 | "Description": "Locks your cursor in the middle of the screen while in-game", 620 | "DependentMods": [], 621 | "DependentLibs": [], 622 | "IncompatibleMods": [], 623 | "SHA256": "8a36df47ea2955f1d534e22b8e93becb1322ea47a3953a0404efa9b4d1021119" 624 | }, 625 | { 626 | "Name": "MDRPC", 627 | "Version": "0.1.0", 628 | "Author": "Brasileiro", 629 | "DownloadLink": "Mods/MDRPC.dll", 630 | "HomePage": "https://github.com/Braasileiro/MDRPC", 631 | "ConfigFile": "", 632 | "GameVersion": [ 633 | "*" 634 | ], 635 | "Description": "Muse Dash Rich Presence, which is exactly what it says it is.", 636 | "DependentMods": [], 637 | "DependentLibs": [], 638 | "IncompatibleMods": [], 639 | "SHA256": "f95dbca9bd659302f38619edebf2dd16ac9721a2da8e7adbbcdcb7d40f340026" 640 | }, 641 | { 642 | "Name": "ModManager", 643 | "Version": "1.0.1", 644 | "Author": "Creepler13", 645 | "DownloadLink": "Mods/ModManager.dll", 646 | "HomePage": "https://github.com/Creepler13/ModManagerMod", 647 | "ConfigFile": "", 648 | "GameVersion": [ 649 | "3.7.0" 650 | ], 651 | "Description": "Allows you to disable & delete mods while in-game.", 652 | "DependentMods": [], 653 | "DependentLibs": [], 654 | "IncompatibleMods": [], 655 | "SHA256": "c5ff14b90e0a1642ed4f9ce75518850ee816d906f6fc2ba9b5bb521efaa2bfa0" 656 | }, 657 | { 658 | "Name": "MuseDashMirror", 659 | "Version": "3.1.3", 660 | "Author": "lxy", 661 | "DownloadLink": "Mods/MuseDashMirror.dll", 662 | "HomePage": "https://github.com/MDMods/MuseDashMirror", 663 | "ConfigFile": "", 664 | "GameVersion": [ 665 | "*" 666 | ], 667 | "Description": "A library that makes it easier to access PlayerData, BattleComponents info and create UI elements.\nThis mod does nothing by itself.", 668 | "DependentMods": [], 669 | "DependentLibs": [], 670 | "IncompatibleMods": [], 671 | "SHA256": "0eb74d39986bc97920299152de4c20c54baee1205d9b0bbbef4d87bd2b1f16e1" 672 | }, 673 | { 674 | "Name": "MuseDashModTools", 675 | "Version": "1.1.6", 676 | "Author": "lxy & \"Bálint\" as balls", 677 | "DownloadLink": "Mods/MuseDashModTools.dll", 678 | "HomePage": "https://github.com/MDModsDev/MuseDashModToolsMod", 679 | "ConfigFile": "", 680 | "GameVersion": [ 681 | "*" 682 | ], 683 | "Description": "Automatically detects and logs available mod updates.", 684 | "DependentMods": [], 685 | "DependentLibs": [], 686 | "IncompatibleMods": [], 687 | "SHA256": "8806a560a112e084fe665988a4a512692f077148c9fe2ff6c1a632f0571dd632" 688 | }, 689 | { 690 | "Name": "NoAutoPause", 691 | "Version": "2.1.0", 692 | "Author": "AshtonMemer", 693 | "DownloadLink": "Mods/NoAutoPause.dll", 694 | "HomePage": "", 695 | "ConfigFile": "", 696 | "GameVersion": [ 697 | "*" 698 | ], 699 | "Description": "Prevents the game from automatically pausing when the game loses focus.", 700 | "DependentMods": [], 701 | "DependentLibs": [], 702 | "IncompatibleMods": [], 703 | "SHA256": "53e1b8ff7fc18e8adf98afa999ef53ca7293fef308692d12e67b65d914ba00eb" 704 | }, 705 | { 706 | "Name": "NoLevelUpAnimations", 707 | "Version": "2.0.0", 708 | "Author": "PBalint817", 709 | "DownloadLink": "Mods/NoLevelUpAnimations.dll", 710 | "HomePage": "", 711 | "ConfigFile": "NoLevelUp.cfg", 712 | "GameVersion": [ 713 | "*" 714 | ], 715 | "Description": "Makes leveling up a bit more bearable.", 716 | "DependentMods": [], 717 | "DependentLibs": [], 718 | "IncompatibleMods": [], 719 | "SHA256": "a1857a77c9aaca978cff67a90d93f868a0fc70a3e5064238dfb74bcbc8e0ddb9" 720 | }, 721 | { 722 | "Name": "PopupLib", 723 | "Version": "2.0.0", 724 | "Author": "PBalint817", 725 | "DownloadLink": "Mods/PopupLib.dll", 726 | "HomePage": "", 727 | "ConfigFile": "PopupLib.cfg", 728 | "GameVersion": [ 729 | "*" 730 | ], 731 | "Description": "A library for other mods to display prompts, take input, etc.,\nusing the game's built-in windows.", 732 | "DependentMods": [ 733 | "LocalizeLib" 734 | ], 735 | "DependentLibs": [], 736 | "IncompatibleMods": [], 737 | "SHA256": "2af6407f25d7b35ebf0ea9fa57df1cca1f6a9edfc84ad7d9f997ade4a5f45a45" 738 | }, 739 | { 740 | "Name": "PreventLowAcc", 741 | "Version": "2.0.0", 742 | "Author": "PBalint817", 743 | "DownloadLink": "Mods/PreventLowAcc.dll", 744 | "HomePage": "", 745 | "ConfigFile": "PreventLowAcc.cfg", 746 | "GameVersion": [ 747 | "*" 748 | ], 749 | "Description": "Lets you disable score submissions, in case you want to take a screenshot\nof a low acc high score, but not actually submit it.\nFuture uses may have something to do with challenge runs ;)", 750 | "DependentMods": [ 751 | "KeybindManager" 752 | ], 753 | "DependentLibs": [], 754 | "IncompatibleMods": [], 755 | "SHA256": "ea735cf87422c6fd2482d61e4996b8dffca0d33eb42d13483e2b49dd728b3123" 756 | }, 757 | { 758 | "Name": "QuickRestart", 759 | "Version": "2.2.0", 760 | "Author": "AshtonMemer", 761 | "DownloadLink": "Mods/QuickRestart.dll", 762 | "HomePage": "https://github.com/MDMods/QuickRestart", 763 | "ConfigFile": "MelonPreferences.cfg", 764 | "GameVersion": [ 765 | "*" 766 | ], 767 | "Description": "Allows you to use Delete to instantly leave a chart & Allows you to use Backspace to instantly restart a chart\nUpdate now allows you to set custom keybinds.", 768 | "DependentMods": [], 769 | "DependentLibs": [], 770 | "IncompatibleMods": [], 771 | "SHA256": "621fa97e5f77350bbc00e1a25308bdece521482d8658bad4f3dfc26d56f00588" 772 | }, 773 | { 774 | "Name": "QuickSwitchCombination", 775 | "Version": "3.0.1", 776 | "Author": "lxy", 777 | "DownloadLink": "Mods/QuickSwitchCombination.dll", 778 | "HomePage": "https://github.com/MDMods/QuickSwitchCombination", 779 | "ConfigFile": "QuickSwitchCombination.cfg", 780 | "GameVersion": [ 781 | "*" 782 | ], 783 | "Description": "Allows you to set keybinds to quickly change your characters.\nNow has an in-game menu to add keybinds", 784 | "DependentMods": [], 785 | "DependentLibs": [], 786 | "IncompatibleMods": [], 787 | "SHA256": "62b55642ffdcd313ed2591eab95576a5e3a631748c203a54c807a0b1bf4dc43b" 788 | }, 789 | { 790 | "Name": "RomajiSongName", 791 | "Version": "1.0.2", 792 | "Author": "Asgragrt", 793 | "DownloadLink": "Mods/RomajiSongName.dll", 794 | "HomePage": "https://github.com/Asgragrt/RomajiSongName", 795 | "ConfigFile": "RomajiSongName.cfg", 796 | "GameVersion": [ 797 | "*" 798 | ], 799 | "Description": "Romanizes song names, doesn't include song names.\nBreaks the search function in a way that you can't use spaces.", 800 | "DependentMods": [], 801 | "DependentLibs": [], 802 | "IncompatibleMods": [], 803 | "SHA256": "4224de7d73d5257e2b7ca1812a60a1a5c939218bbe0248d157b300f37166ca4f" 804 | }, 805 | { 806 | "Name": "SaveMySpace", 807 | "Version": "1.0.0", 808 | "Author": "PBalint817", 809 | "DownloadLink": "Mods/SaveMySpace.dll", 810 | "HomePage": "", 811 | "ConfigFile": "", 812 | "GameVersion": [ 813 | "*" 814 | ], 815 | "Description": "Deletes old log files and similar junk automatically.", 816 | "DependentMods": [], 817 | "DependentLibs": [], 818 | "IncompatibleMods": [], 819 | "SHA256": "65df94141f42d65363b5a04d28777fdd50cf1fe6c4eecadfa6f1b10250026866" 820 | }, 821 | { 822 | "Name": "SceneEggs", 823 | "Version": "1.1.0", 824 | "Author": "RobotLucca", 825 | "DownloadLink": "Mods/SceneEggs.dll", 826 | "HomePage": "", 827 | "ConfigFile": "", 828 | "GameVersion": [ 829 | "2.11.0" 830 | ], 831 | "Description": "Makes it possible for customs to use certain background decorations that the default charts use.", 832 | "DependentMods": [], 833 | "DependentLibs": [], 834 | "IncompatibleMods": [], 835 | "SHA256": "afe1f40fd11081ac0f36f14c7372bd31b06d6fd8b0a2dcd78f7cef43e1f79e76" 836 | }, 837 | { 838 | "Name": "Scoreboard characters and elfins", 839 | "Version": "1.5.0", 840 | "Author": "bnfour", 841 | "DownloadLink": "Mods/ScoreboardCharacters.dll", 842 | "HomePage": "https://github.com/bnfour/md-mods", 843 | "ConfigFile": "", 844 | "GameVersion": [ 845 | "3.12.0" 846 | ], 847 | "Description": "Similar to CharacterScoreboard, however, it instead adds icon clickable icon representations,\nwhich automatically switches to the character combo when clicked.", 848 | "DependentMods": [], 849 | "DependentLibs": [], 850 | "IncompatibleMods": [], 851 | "SHA256": "a726a135d9127ea7389760b0c54f040171a7aa7650ca04c8abef928c71da11f7" 852 | }, 853 | { 854 | "Name": "ScrollSpeed", 855 | "Version": "1.0.0", 856 | "Author": "RobotLucca", 857 | "DownloadLink": "Mods/ScrollSpeed.dll", 858 | "HomePage": "", 859 | "ConfigFile": "", 860 | "GameVersion": [ 861 | "2.10.0" 862 | ], 863 | "Description": "Allows charters (not players) to set custom scroll speeds.\nIt's completely up to you whether you wanna use this, most charters don't use it though.", 864 | "DependentMods": [], 865 | "DependentLibs": [], 866 | "IncompatibleMods": [], 867 | "SHA256": "62f0b60a1a9bd68fa25c7fee36db9c10e3753f0ae1e67b05c3ea18a3c299df3c" 868 | }, 869 | { 870 | "Name": "SelectiveEffects", 871 | "Version": "1.2.1", 872 | "Author": "Asgragrt", 873 | "DownloadLink": "Mods/SelectiveEffects.dll", 874 | "HomePage": "https://github.com/MDMods/SelectiveEffects", 875 | "ConfigFile": "SelectiveEffects.cfg", 876 | "GameVersion": [ 877 | "*" 878 | ], 879 | "Description": "Mod that allows disabling battle effects.", 880 | "DependentMods": [], 881 | "DependentLibs": [], 882 | "IncompatibleMods": [], 883 | "SHA256": "cd4e297b0ce4a6e95db4da82cc62d6d98a1bbc2eff932e765f89e6c7fd36b412" 884 | }, 885 | { 886 | "Name": "ShopLift", 887 | "Version": "1.0.0", 888 | "Author": "Mr. Talk", 889 | "DownloadLink": "Mods/ShopLift.dll", 890 | "HomePage": "https://github.com/MDMods/ShopLift", 891 | "ConfigFile": "", 892 | "GameVersion": [ 893 | "*" 894 | ], 895 | "Description": "Removes the store button and (attempts to) recreate the old UI", 896 | "DependentMods": [], 897 | "DependentLibs": [], 898 | "IncompatibleMods": [], 899 | "SHA256": "8f5afa98dab73774ad583124b35a0791c5772bc9a502979e30369996af9ae5c9" 900 | }, 901 | { 902 | "Name": "SongDesc", 903 | "Version": "2.0.2", 904 | "Author": "lxy", 905 | "DownloadLink": "Mods/SongDesc.dll", 906 | "HomePage": "https://github.com/MDMods/SongDesc", 907 | "ConfigFile": "", 908 | "GameVersion": [ 909 | "*" 910 | ], 911 | "Description": "Displays the title, artist, and difficulty of the song in the top-right corner during play.", 912 | "DependentMods": [], 913 | "DependentLibs": [], 914 | "IncompatibleMods": [], 915 | "SHA256": "d62c6f080df6319df44ec4c115b90ec7035e1b150bfc6bba6a98e669b4064060" 916 | }, 917 | { 918 | "Name": "Song info", 919 | "Version": "1.3.3", 920 | "Author": "bnfour", 921 | "DownloadLink": "Mods/SongInfo.dll", 922 | "HomePage": "https://github.com/bnfour/md-mods", 923 | "ConfigFile": "", 924 | "GameVersion": [ 925 | "*" 926 | ], 927 | "Description": "Displays the BPM and duration for selected song", 928 | "DependentMods": [], 929 | "DependentLibs": [], 930 | "IncompatibleMods": [], 931 | "SHA256": "df05e338abf0c7c65fa2744f7f9d449e2968c90164d2fef05200e9a5abb6817a" 932 | }, 933 | { 934 | "Name": "StricterJudge", 935 | "Version": "2.1.2", 936 | "Author": "Ixy & Asgragrt", 937 | "DownloadLink": "Mods/StricterJudge.dll", 938 | "HomePage": "", 939 | "ConfigFile": "MelonPreferences.cfg", 940 | "GameVersion": [ 941 | "*" 942 | ], 943 | "Description": "A mod which changes the judgement window and make the game harder.", 944 | "DependentMods": [], 945 | "DependentLibs": [], 946 | "IncompatibleMods": [], 947 | "SHA256": "1aa9d418e0983a08bbae2ec7c00300ce059ddd732bfc1bcca08c82e3a5467dc9" 948 | }, 949 | { 950 | "Name": "True rank for 999+", 951 | "Version": "2.0.1", 952 | "Author": "bnfour", 953 | "DownloadLink": "Mods/TrueAbove1kRank.dll", 954 | "HomePage": "https://github.com/bnfour/md-mods", 955 | "ConfigFile": "", 956 | "GameVersion": [ 957 | "*" 958 | ], 959 | "Description": "Displays actual ranking instead of \"999+\" for ranks 1000 to 2000", 960 | "DependentMods": [], 961 | "DependentLibs": [], 962 | "IncompatibleMods": [], 963 | "SHA256": "4446871a7165cc078b9a9068e375f7a79ffeab9d3389269391e733679186befc" 964 | }, 965 | { 966 | "Name": "UIDisable", 967 | "Version": "2.0.0", 968 | "Author": "lxy", 969 | "DownloadLink": "Mods/UIDisable.dll", 970 | "HomePage": "https://github.com/MDMods/UIDisable", 971 | "ConfigFile": "UI Disable.cfg", 972 | "GameVersion": [ 973 | "*" 974 | ], 975 | "Description": "Allows you to disable certain visual aspects of the game (example: hit circles)", 976 | "DependentMods": [ 977 | "MuseDashMirror" 978 | ], 979 | "DependentLibs": [], 980 | "IncompatibleMods": [], 981 | "SHA256": "29617f015907d431be99d25f74dd42004a1d2fe7c198b19112748e13089ebc8c" 982 | }, 983 | { 984 | "Name": "UI tweaks", 985 | "Version": "1.1.2", 986 | "Author": "bnfour", 987 | "DownloadLink": "Mods/UITweaks.dll", 988 | "HomePage": "https://github.com/bnfour/md-mods", 989 | "ConfigFile": "MelonPreferences.cfg", 990 | "GameVersion": [ 991 | "*" 992 | ], 993 | "Description": "Various small UI fixes", 994 | "DependentMods": [], 995 | "DependentLibs": [], 996 | "IncompatibleMods": [], 997 | "SHA256": "6dd961a8ed47a41e3bcacec1d56580f07f42e947ab4f4b6b371fa71789fcd1d3" 998 | }, 999 | { 1000 | "Name": "UltraInstinctSleepwalking", 1001 | "Version": "3.0.0", 1002 | "Author": "RobotLucca", 1003 | "DownloadLink": "Mods/UltraInstinctSleepwalking.dll", 1004 | "HomePage": "", 1005 | "ConfigFile": "", 1006 | "GameVersion": [ 1007 | "*" 1008 | ], 1009 | "Description": "Makes Sleepwalker Rin do mashers at max speed instead of the normal slow speed.", 1010 | "DependentMods": [], 1011 | "DependentLibs": [], 1012 | "IncompatibleMods": [], 1013 | "SHA256": "15401a7326577ff257e13b1c0837e3a613dfbdf437141a2949377d9062287b12" 1014 | }, 1015 | { 1016 | "Name": "UnlockAll", 1017 | "Version": "2.1.0", 1018 | "Author": "thegamemaster1234", 1019 | "DownloadLink": "Mods/UnlockAll.dll", 1020 | "HomePage": "", 1021 | "ConfigFile": "", 1022 | "GameVersion": [ 1023 | "*" 1024 | ], 1025 | "Description": "Unlocks all master difficulties for as long as the mod is installed.", 1026 | "DependentMods": [], 1027 | "DependentLibs": [], 1028 | "IncompatibleMods": [], 1029 | "SHA256": "3685edd6c143779eaea0eb93196c24a22f7d1c48bcd04c271fbb1a72737171dc" 1030 | }, 1031 | { 1032 | "Name": "VictoryScreenSwitcher", 1033 | "Version": "2.0.0", 1034 | "Author": "Ultra_Rabbit", 1035 | "DownloadLink": "Mods/VictoryScreenSwitcher.dll", 1036 | "HomePage": "https://github.com/TheBunnies/VictoryScreenSwitcher", 1037 | "ConfigFile": "VictoryScreenSwitcher.cfg", 1038 | "GameVersion": [ 1039 | "*" 1040 | ], 1041 | "Description": "Allows you to switch victory screen in the settings menu either to DjMax or Arknights. Swaps original screen with arknights/djmax and vise versa.", 1042 | "DependentMods": [ 1043 | "MuseDashMirror" 1044 | ], 1045 | "DependentLibs": [], 1046 | "IncompatibleMods": [], 1047 | "SHA256": "0f1587f605dac70caee21573c1c409934b028265f177c262a1c6dde0a9234dfc" 1048 | } 1049 | ] -------------------------------------------------------------------------------- /Mods/AccuracyDisplay.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MDModsDev/ModLinks/4188ac67c59e06146ea8666ed1928f5e88a64b40/Mods/AccuracyDisplay.dll -------------------------------------------------------------------------------- /Mods/AccuracyIndicator.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MDModsDev/ModLinks/4188ac67c59e06146ea8666ed1928f5e88a64b40/Mods/AccuracyIndicator.dll -------------------------------------------------------------------------------- /Mods/AlbumScroll.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MDModsDev/ModLinks/4188ac67c59e06146ea8666ed1928f5e88a64b40/Mods/AlbumScroll.dll -------------------------------------------------------------------------------- /Mods/AltTabMute.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MDModsDev/ModLinks/4188ac67c59e06146ea8666ed1928f5e88a64b40/Mods/AltTabMute.dll -------------------------------------------------------------------------------- /Mods/AlwaysAprilFool.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MDModsDev/ModLinks/4188ac67c59e06146ea8666ed1928f5e88a64b40/Mods/AlwaysAprilFool.dll -------------------------------------------------------------------------------- /Mods/AlwaysBadApple.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MDModsDev/ModLinks/4188ac67c59e06146ea8666ed1928f5e88a64b40/Mods/AlwaysBadApple.dll -------------------------------------------------------------------------------- /Mods/AlwaysPigeons.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MDModsDev/ModLinks/4188ac67c59e06146ea8666ed1928f5e88a64b40/Mods/AlwaysPigeons.dll -------------------------------------------------------------------------------- /Mods/BPMDisplay.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MDModsDev/ModLinks/4188ac67c59e06146ea8666ed1928f5e88a64b40/Mods/BPMDisplay.dll -------------------------------------------------------------------------------- /Mods/Ballcock.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MDModsDev/ModLinks/4188ac67c59e06146ea8666ed1928f5e88a64b40/Mods/Ballcock.dll -------------------------------------------------------------------------------- /Mods/BestCombinationSuggest.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MDModsDev/ModLinks/4188ac67c59e06146ea8666ed1928f5e88a64b40/Mods/BestCombinationSuggest.dll -------------------------------------------------------------------------------- /Mods/BetterNativeHook.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MDModsDev/ModLinks/4188ac67c59e06146ea8666ed1928f5e88a64b40/Mods/BetterNativeHook.dll -------------------------------------------------------------------------------- /Mods/CharacterRandomizer.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MDModsDev/ModLinks/4188ac67c59e06146ea8666ed1928f5e88a64b40/Mods/CharacterRandomizer.dll -------------------------------------------------------------------------------- /Mods/CharacterScoreboard.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MDModsDev/ModLinks/4188ac67c59e06146ea8666ed1928f5e88a64b40/Mods/CharacterScoreboard.dll -------------------------------------------------------------------------------- /Mods/ChartDeleter.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MDModsDev/ModLinks/4188ac67c59e06146ea8666ed1928f5e88a64b40/Mods/ChartDeleter.dll -------------------------------------------------------------------------------- /Mods/ChartReview.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MDModsDev/ModLinks/4188ac67c59e06146ea8666ed1928f5e88a64b40/Mods/ChartReview.dll -------------------------------------------------------------------------------- /Mods/ChineseMode.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MDModsDev/ModLinks/4188ac67c59e06146ea8666ed1928f5e88a64b40/Mods/ChineseMode.dll -------------------------------------------------------------------------------- /Mods/Cinema.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MDModsDev/ModLinks/4188ac67c59e06146ea8666ed1928f5e88a64b40/Mods/Cinema.dll -------------------------------------------------------------------------------- /Mods/CinemaToggler.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MDModsDev/ModLinks/4188ac67c59e06146ea8666ed1928f5e88a64b40/Mods/CinemaToggler.dll -------------------------------------------------------------------------------- /Mods/CurrentCombination.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MDModsDev/ModLinks/4188ac67c59e06146ea8666ed1928f5e88a64b40/Mods/CurrentCombination.dll -------------------------------------------------------------------------------- /Mods/CustomAlbums.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MDModsDev/ModLinks/4188ac67c59e06146ea8666ed1928f5e88a64b40/Mods/CustomAlbums.dll -------------------------------------------------------------------------------- /Mods/CustomAnchorSupport.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MDModsDev/ModLinks/4188ac67c59e06146ea8666ed1928f5e88a64b40/Mods/CustomAnchorSupport.dll -------------------------------------------------------------------------------- /Mods/CustomBGBrightness.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MDModsDev/ModLinks/4188ac67c59e06146ea8666ed1928f5e88a64b40/Mods/CustomBGBrightness.dll -------------------------------------------------------------------------------- /Mods/CustomHitSound.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MDModsDev/ModLinks/4188ac67c59e06146ea8666ed1928f5e88a64b40/Mods/CustomHitSound.dll -------------------------------------------------------------------------------- /Mods/CustomLoadingScreens.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MDModsDev/ModLinks/4188ac67c59e06146ea8666ed1928f5e88a64b40/Mods/CustomLoadingScreens.dll -------------------------------------------------------------------------------- /Mods/CustomResolution.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MDModsDev/ModLinks/4188ac67c59e06146ea8666ed1928f5e88a64b40/Mods/CustomResolution.dll -------------------------------------------------------------------------------- /Mods/FC AP.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MDModsDev/ModLinks/4188ac67c59e06146ea8666ed1928f5e88a64b40/Mods/FC AP.dll -------------------------------------------------------------------------------- /Mods/FadeIn.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MDModsDev/ModLinks/4188ac67c59e06146ea8666ed1928f5e88a64b40/Mods/FadeIn.dll -------------------------------------------------------------------------------- /Mods/FavGirl.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MDModsDev/ModLinks/4188ac67c59e06146ea8666ed1928f5e88a64b40/Mods/FavGirl.dll -------------------------------------------------------------------------------- /Mods/FavGirlCatFix.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MDModsDev/ModLinks/4188ac67c59e06146ea8666ed1928f5e88a64b40/Mods/FavGirlCatFix.dll -------------------------------------------------------------------------------- /Mods/FeverEffectDisable.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MDModsDev/ModLinks/4188ac67c59e06146ea8666ed1928f5e88a64b40/Mods/FeverEffectDisable.dll -------------------------------------------------------------------------------- /Mods/Headquarters.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MDModsDev/ModLinks/4188ac67c59e06146ea8666ed1928f5e88a64b40/Mods/Headquarters.dll -------------------------------------------------------------------------------- /Mods/HiddenQol.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MDModsDev/ModLinks/4188ac67c59e06146ea8666ed1928f5e88a64b40/Mods/HiddenQol.dll -------------------------------------------------------------------------------- /Mods/Info+.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MDModsDev/ModLinks/4188ac67c59e06146ea8666ed1928f5e88a64b40/Mods/Info+.dll -------------------------------------------------------------------------------- /Mods/IntroSkip.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MDModsDev/ModLinks/4188ac67c59e06146ea8666ed1928f5e88a64b40/Mods/IntroSkip.dll -------------------------------------------------------------------------------- /Mods/KeybindManager.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MDModsDev/ModLinks/4188ac67c59e06146ea8666ed1928f5e88a64b40/Mods/KeybindManager.dll -------------------------------------------------------------------------------- /Mods/LeagueIsBad.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MDModsDev/ModLinks/4188ac67c59e06146ea8666ed1928f5e88a64b40/Mods/LeagueIsBad.dll -------------------------------------------------------------------------------- /Mods/LocalizeLib.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MDModsDev/ModLinks/4188ac67c59e06146ea8666ed1928f5e88a64b40/Mods/LocalizeLib.dll -------------------------------------------------------------------------------- /Mods/LockCursor.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MDModsDev/ModLinks/4188ac67c59e06146ea8666ed1928f5e88a64b40/Mods/LockCursor.dll -------------------------------------------------------------------------------- /Mods/MDRPC.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MDModsDev/ModLinks/4188ac67c59e06146ea8666ed1928f5e88a64b40/Mods/MDRPC.dll -------------------------------------------------------------------------------- /Mods/ModManager.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MDModsDev/ModLinks/4188ac67c59e06146ea8666ed1928f5e88a64b40/Mods/ModManager.dll -------------------------------------------------------------------------------- /Mods/MuseDashMirror.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MDModsDev/ModLinks/4188ac67c59e06146ea8666ed1928f5e88a64b40/Mods/MuseDashMirror.dll -------------------------------------------------------------------------------- /Mods/MuseDashModTools.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MDModsDev/ModLinks/4188ac67c59e06146ea8666ed1928f5e88a64b40/Mods/MuseDashModTools.dll -------------------------------------------------------------------------------- /Mods/NoAutoPause.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MDModsDev/ModLinks/4188ac67c59e06146ea8666ed1928f5e88a64b40/Mods/NoAutoPause.dll -------------------------------------------------------------------------------- /Mods/NoLevelUpAnimations.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MDModsDev/ModLinks/4188ac67c59e06146ea8666ed1928f5e88a64b40/Mods/NoLevelUpAnimations.dll -------------------------------------------------------------------------------- /Mods/PopupLib.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MDModsDev/ModLinks/4188ac67c59e06146ea8666ed1928f5e88a64b40/Mods/PopupLib.dll -------------------------------------------------------------------------------- /Mods/PreventLowAcc.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MDModsDev/ModLinks/4188ac67c59e06146ea8666ed1928f5e88a64b40/Mods/PreventLowAcc.dll -------------------------------------------------------------------------------- /Mods/QuickRestart.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MDModsDev/ModLinks/4188ac67c59e06146ea8666ed1928f5e88a64b40/Mods/QuickRestart.dll -------------------------------------------------------------------------------- /Mods/QuickSwitchCombination.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MDModsDev/ModLinks/4188ac67c59e06146ea8666ed1928f5e88a64b40/Mods/QuickSwitchCombination.dll -------------------------------------------------------------------------------- /Mods/RomajiSongName.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MDModsDev/ModLinks/4188ac67c59e06146ea8666ed1928f5e88a64b40/Mods/RomajiSongName.dll -------------------------------------------------------------------------------- /Mods/SaveMySpace.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MDModsDev/ModLinks/4188ac67c59e06146ea8666ed1928f5e88a64b40/Mods/SaveMySpace.dll -------------------------------------------------------------------------------- /Mods/SceneEggs.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MDModsDev/ModLinks/4188ac67c59e06146ea8666ed1928f5e88a64b40/Mods/SceneEggs.dll -------------------------------------------------------------------------------- /Mods/ScoreboardCharacters.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MDModsDev/ModLinks/4188ac67c59e06146ea8666ed1928f5e88a64b40/Mods/ScoreboardCharacters.dll -------------------------------------------------------------------------------- /Mods/ScrollSpeed.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MDModsDev/ModLinks/4188ac67c59e06146ea8666ed1928f5e88a64b40/Mods/ScrollSpeed.dll -------------------------------------------------------------------------------- /Mods/SelectiveEffects.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MDModsDev/ModLinks/4188ac67c59e06146ea8666ed1928f5e88a64b40/Mods/SelectiveEffects.dll -------------------------------------------------------------------------------- /Mods/ShopLift.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MDModsDev/ModLinks/4188ac67c59e06146ea8666ed1928f5e88a64b40/Mods/ShopLift.dll -------------------------------------------------------------------------------- /Mods/SongDesc.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MDModsDev/ModLinks/4188ac67c59e06146ea8666ed1928f5e88a64b40/Mods/SongDesc.dll -------------------------------------------------------------------------------- /Mods/SongInfo.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MDModsDev/ModLinks/4188ac67c59e06146ea8666ed1928f5e88a64b40/Mods/SongInfo.dll -------------------------------------------------------------------------------- /Mods/StricterJudge.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MDModsDev/ModLinks/4188ac67c59e06146ea8666ed1928f5e88a64b40/Mods/StricterJudge.dll -------------------------------------------------------------------------------- /Mods/TrueAbove1kRank.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MDModsDev/ModLinks/4188ac67c59e06146ea8666ed1928f5e88a64b40/Mods/TrueAbove1kRank.dll -------------------------------------------------------------------------------- /Mods/UIDisable.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MDModsDev/ModLinks/4188ac67c59e06146ea8666ed1928f5e88a64b40/Mods/UIDisable.dll -------------------------------------------------------------------------------- /Mods/UITweaks.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MDModsDev/ModLinks/4188ac67c59e06146ea8666ed1928f5e88a64b40/Mods/UITweaks.dll -------------------------------------------------------------------------------- /Mods/UltraInstinctSleepwalking.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MDModsDev/ModLinks/4188ac67c59e06146ea8666ed1928f5e88a64b40/Mods/UltraInstinctSleepwalking.dll -------------------------------------------------------------------------------- /Mods/UnlockAll.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MDModsDev/ModLinks/4188ac67c59e06146ea8666ed1928f5e88a64b40/Mods/UnlockAll.dll -------------------------------------------------------------------------------- /Mods/VictoryScreenSwitcher.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MDModsDev/ModLinks/4188ac67c59e06146ea8666ed1928f5e88a64b40/Mods/VictoryScreenSwitcher.dll -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # ModLinks 2 | 3 | ## Mods 4 | 5 | | **Name** | **Author** | **Description** | **DownloadLink** | **GameVersion** | 6 | | ------------------------------------------------------------ | ------------------------------------------------------------ | ------------------------------------------------------------ | ------------------------------------------------------------ | --------------- | 7 | | **AccuracyDisplay** | [PBalint817](https://github.com/Balint817) | Adds a live accuracy display to the game. | [AccuracyDisplay.dll]() | * | 8 | | [**AccuracyIndicator**](https://github.com/Azn9/MDAccuracyIndicatorMod) | [Azn9](https://github.com/Azn9) & [lxy](https://github.com/lxymahatma) | Adds a more exact accuracy indicator on the bottom of the screen. Also displays average accuracy in milliseconds at the end of the level. | [AccuracyIndicator.dll]() | * | 9 | | [**Album scroll**](https://github.com/bnfour/md-mods) | [bnfour](https://github.com/bnfour) | While holding shift, use the arrow keys to switch song categories in song selection. | [AlbumScroll.dll]() | * | 10 | | **AltTabMute** | Dom Gintoki | Mutes the game when it's not focused. | [AltTabMute.dll]() | * | 11 | | **AlwaysAprilFool** | [lxy](https://github.com/lxymahatma) | Boss always shoot pigeon and tutorial is always april fool's, activate good tek hidden | [AlwaysAprilFool.dll]() | * | 12 | | **AlwaysBadApple** | [lxy](https://github.com/lxymahatma) | A mod which changes the background and character etc into black and white in tohou scene. | [AlwaysBadApple.dll]() | * | 13 | | **AlwaysPigeons** | [lxy](https://github.com/lxymahatma) | Boss always shoot pigeon, do not use AlwaysAprilFool at the same time. | [AlwaysPigeons.dll]() | * | 14 | | **BALLCOCK** | [Ashton Memer](https://github.com/ALLMarvelous) | Implements a simplified, less eye-straining and distracting fever effect. Also includes a distasteful console message. | [Ballcock.dll]() | * | 15 | | [**BestCombinationSuggest**](https://github.com/brooke-zb/MuseDashBestCombinationSuggest) | [brooke_zb](https://github.com/brooke-zb) | Displays the best character combination for a level in the pause screen. The character combo displayed is usually correct, but don't put your blind faith in it. When in doubt, refer to CharacterScoreboard. | [BestCombinationSuggest.dll]() | * | 16 | | **BetterNativeHook** | [PBalint817](https://github.com/Balint817) | A library mod to do what NativeHook was never for... ...and another hint as to what's coming next. | [BetterNativeHook.dll]() | * | 17 | | **BPMDisplay** | [lxy](https://github.com/lxymahatma) | A mod which displays the BPM info above level designer on preparation screen. | [BPMDisplay.dll]() | * | 18 | | **CharacterRandomizer** | [lxy](https://github.com/lxymahatma) | Everytime you play a chart, a random character combination will be selected. | [CharacterRandomizer.dll]() | * | 19 | | [**CharacterScoreboard**](https://github.com/Creepler13/CharacterScoreboard) | [Creepler13](https://github.com/Creepler13) & [lxy](https://github.com/lxymahatma) | Displays which character a specific score was achieved with on the leaderboard. | [CharacterScoreboard.dll]() | * | 20 | | [**ChartReview**](https://github.com/MDMods/ChartReview) | [lxy](https://github.com/lxymahatma) | Automatically selects sleepwalker, sets offset to 0, sets fever to manual, disables certain UI elements. Can be toggled on/off while in-game. | [ChartReview.dll]() | * | 21 | | **ChartDeleter** | [PBalint817](https://github.com/Balint817) | Allows you to queue charts to be deleted when you exit the game using a configurable keybind. | [ChartDeleter.dll]() | * | 22 | | **ChineseMode** | RobotLucca | Censores certain aspects of the game. (Characters, illustrations, etc) | [ChineseMode.dll]() | * | 23 | | [**Cinema**](https://github.com/MDMods/Cinema) | [Ashton Memer](https://github.com/ALLMarvelous) | The mod that allows you to see video backgrounds in custom charts. | [Cinema.dll]() | * | 24 | | **CinemaToggler** | [PBalint817](https://github.com/Balint817) | Allows you to toggle the Cinema mod on/off in-game. | [CinemaToggler.dll]() | * | 25 | | [**CurrentCombination**](https://github.com/MDMods/CurrentCombination) | [Asgragrt](https://github.com/Asgragrt) | Shows the current selected character and elfin in the song selection menu and the song view. | [CurrentCombination.dll]() | * | 26 | | [**CustomAlbums**](https://github.com/gamrguy/CustomAlbums) | Team Baller | The mod that allows you to load in custom charts. | [CustomAlbums.dll]() | * | 27 | | **CustomAnchorSupport** | [PBalint817](https://github.com/Balint817) | Adds streamer mode support to custom songs via the 'streamer' tag in 'info.json'. | [CustomAnchorSupport.dll]() | * | 28 | | **CustomBGBrightness** | [lxy](https://github.com/lxymahatma) | Allows you to adjust background brightness lower than 40%. | [CustomBGBrightness.dll]() | * | 29 | | [**CustomHitSound**](https://github.com/MDMods/CustomHitSound) | [lxy](https://github.com/lxymahatma) | Allows you to make custom hit sound. Detailed instructions on github readme. | [CustomHitSound.dll]() | * | 30 | | [**CustomLoadingScreens**](https://github.com/MDMods/CustomLoadingScreens) | [Mr. Talk](https://github.com/SB15-MD) | Allows you to add custom loading screens. | [CustomLoadingScreens.dll]() | * | 31 | | **CustomResolution** | [PBalint817](https://github.com/Balint817) | Allows you to set a custom resolution. | [CustomResolution.dll]() | * | 32 | | [**FadeIn**](https://github.com/MDMods/FadeIn) | [Asgragrt](https://github.com/Asgragrt) | Allows you to make all notes fade out. | [FadeIn.dll]() | * | 33 | | [**FavGirl**](https://github.com/AshtonMemer/FavGirl) | RobotLucca & [Ashton Memer](https://github.com/ALLMarvelous) | Allows you to favorite characters and elfins. This will make you look like that character even if another character is selected. You will have the abilities of the selected character & your plays will be submitted as such. | [FavGirl.dll]() | 4.1.0 | 34 | | **FavGirlCatFix** | [PBalint817](https://github.com/Balint817) | Fixes a bug with favorited cat characters. | [FavGirlCatFix.dll]() | * | 35 | | [**FC AP indicator**](https://github.com/MDMods/FC-AP-Indicator)\* | [lxy](https://github.com/lxymahatma) | Tells you whether you're on All Perfect/Full Combo pace, and displays the number of misses/greats. | [FC AP.dll]() | 3.12.0 | 36 | | **FeverEffectDisable** | [lxy](https://github.com/lxymahatma) | Disables the fever background effect (duh.) | [FeverEffectDisable.dll]() | * | 37 | | **Headquarters** | [Ashton Memer](https://github.com/ALLMarvelous) | Allows you to submit scores on custom charts obtained from the MDMC website. | [Headquarters.dll]() | * | 38 | | **HiddenQol** | RobotLucca & [lxy](https://github.com/lxymahatma) | Adds a button to always show hidden difficulties. E.g. you don't need to spam click and such to unlock them before playing. | [HiddenQol.dll]() | * | 39 | | [**Info+**](https://github.com/MDMods/MuseDashInfoPlus) | [KARPED1EM](https://github.com/KARPED1EM) | Displays additional in-game info including Chart Info, Accuracy, Miss/Great/Early/Late/Hit/Total Counts, Score/Accuracy Gap from Personal Best, Sky/Ground Speed and so on. | [Info+.dll]() | * | 40 | | **IntroSkip** | [PBalint817](https://github.com/Balint817) | Skips past the intro sequence. | [IntroSkip.dll]() | * | 41 | | **KeybindManager** | [PBalint817](https://github.com/Balint817) | A library for other mods to implement configurable keybinds, and listen to key combinations. | [KeybindManager.dll]() | * | 42 | | **LeagueIsBad...** | [PBalint817](https://github.com/Balint817) | ...and you should feel bad. Closes the game if League of Legends is found on your PC. | [LeagueIsBad.dll]() | * | 43 | | **LocalizeLib** | [PBalint817](https://github.com/Balint817) | Makes localizing mods for the game's language settings easier. | [LocalizeLib.dll]() | * | 44 | | **LockCursor** | [Mr. Talk](https://github.com/SB15-MD) | Locks your cursor in the middle of the screen while in-game. | [LockCursor.dll]() | * | 45 | | [**MDRPC**](https://github.com/Braasileiro/MDRPC) | [Brasileiro](https://github.com/Braasileiro) | Muse Dash Rich Presence, which is exactly what it says it is. | [MDRPC.dll]() | * | 46 | | [**ModManager**](https://github.com/Creepler13/ModManagerMod)\* | [Creepler13](https://github.com/Creepler13) | Allows you to disable & delete mods while in-game. | [ModManager.dll]() | 3.7.0 | 47 | | [**MuseDashMirror**](https://github.com/MDMods/MuseDashMirror) | [lxy](https://github.com/lxymahatma) | A library that makes it easier to access PlayerData, BattleComponents info and create UI elements. This mod does nothing by itself. | [MuseDashMirror.dll]() | * | 48 | | [**MuseDashModTools**](https://github.com/MDModsDev/MuseDashModToolsMod) | [lxy](https://github.com/lxymahatma) & "Bálint" as balls | Automatically detects and logs available mod updates. | [MuseDashModTools.dll]() | * | 49 | | **NoAutoPause** | [Ashton Memer](https://github.com/ALLMarvelous) | Prevents the game from automatically pausing when the game loses focus. | [NoAutoPause.dll]() | * | 50 | | **NoLevelUpAnimations** | [PBalint817](https://github.com/Balint817) | Makes leveling up a bit more bearable. | [NoLevelUpAnimations.dll]() | * | 51 | | **PopupLib** | [PBalint817](https://github.com/Balint817) | A library for other mods to display prompts, take input, etc., using the game's built-in windows. | [PopupLib.dll]() | * | 52 | | **PreventLowAcc** | [PBalint817](https://github.com/Balint817) | Lets you disable score submissions, in case you want to take a screenshot of a low acc high score, but not actually submit it. Future uses may have something to do with challenge runs, stay tuned ;) | [PreventLowAcc.dll]() | * | 53 | | [**QuickRestart**](https://github.com/MDMods/QuickRestart) | [Ashton Memer](https://github.com/ALLMarvelous) | Allows you to use Delete to instantly leave a chart & Allows you to use Backspace to instantly restart a chart Update now allows you to set custom keybinds. | [QuickRestart.dll]() | * | 54 | | [**QuickSwitchCombination**](https://github.com/MDMods/QuickSwitchCombination) | [lxy](https://github.com/lxymahatma) | Allows you to set keybinds to quickly change your characters. Now has an in-game menu to add keybinds. | [QuickSwitchCombination.dll]() | * | 55 | | **RomajiSongName** | [Asgragrt](https://github.com/Asgragrt) | Romanizes song names, doesn't include song names. Breaks the search function in a way that you can't use spaces. | [RomajiSongName.dll]() | * | 56 | | **SaveMySpace** | [PBalint817](https://github.com/Balint817) | Deletes old log files and similar junk automatically. | [SaveMySpace.dll]() | * | 57 | | **SceneEggs**\* | RobotLucca | Makes it possible for customs to use certain background decorations that the default charts use. | [SceneEggs.dll]() | 2.11.0 | 58 | | [**Scoreboard characters and elfins**](https://github.com/bnfour/md-mods)\* | [bnfour](https://github.com/bnfour) | Similar to CharacterScoreboard, however, it instead adds icon clickable icon representations, which automatically switches to the character combo when clicked. **Follow the instructions on this mod's homepage to install it on latest**. | [ScoreboardCharacters.dll]() | 3.12.0 | 59 | | **ScrollSpeed**\* | RobotLucca | Allows charters (not players) to set custom scroll speeds. It's completely up to you whether you wanna use this, most charters don't use it though. | [ScrollSpeed.dll]() | 2.10.0 | 60 | | [**SelectiveEffects**](https://github.com/MDMods/SelectiveEffects) | [Asgragrt](https://github.com/Asgragrt) | Mod that allows disabling battle effects. | [SelectiveEffects.dll]() | * | 61 | | [**ShopLift**](https://github.com/MDMods/ShopLift) | [Mr. Talk](https://github.com/SB15-MD) | Removes the store button and (attempts to) recreate the old UI. | [ShopLift.dll]() | * | 62 | | [**SongDesc**](https://github.com/MDMods/SongDesc) | [lxy](https://github.com/lxymahatma) | Displays the title, artist, and difficulty of the song in the top-right corner during play. | [SongDesc.dll]() | * | 63 | | [**Song info**](https://github.com/bnfour/md-mods) | [bnfour](https://github.com/bnfour) | Displays the BPM and duration for selected song. | [SongInfo.dll]() | * | 64 | | [**StricterJudge**](https://github.com/MDMods/StricterJudge) | [Asgragrt](https://github.com/Asgragrt) | A mod which changes the judgement window and make the game harder. | [StricterJudge.dll]() | * | 65 | | [**True rank for 999+**](https://github.com/bnfour/md-mods) | [bnfour](https://github.com/bnfour) | Displays actual ranking instead of "999+" for ranks 1000 to 2000. | [TrueAbove1kRank.dll]() | * | 66 | | [**UIDisable**](https://github.com/MDMods/UIDisable)\* | [lxy](https://github.com/lxymahatma) | Allows you to disable certain visual aspects of the game (example: hit circles). | [UIDisable.dll]() | 4.1.0 | 67 | | **UltraInstinctSleepwalking** | RobotLucca | Makes Sleepwalker Rin do mashers at max speed instead of the normal slow speed. | [UltraInstinctSleepwalking.dll]() | * | 68 | | [**UI tweaks**](https://github.com/bnfour/md-mods) | [bnfour](https://github.com/bnfour) | Various small UI fixes. | [UITweaks.dll]() | * | 69 | | **UnlockAll** | thegamemaster1234 | Unlocks all master difficulties for as long as the mod is installed. | [UnlockAll.dll]() | * | 70 | | [**VictoryScreenSwitcher**](https://github.com/TheBunnies/VictoryScreenSwitcher) | [Ultra_Rabbit](https://github.com/TheBunnies) | Allows you to switch victory screen in the settings menu either to DjMax or Arknights. Swaps original screen with arknights/djmax and vise versa. | [VictoryScreenSwitcher.dll]() | * | 71 | 72 | ## PRs Welcome 73 | --------------------------------------------------------------------------------