-
Notifications
You must be signed in to change notification settings - Fork 1
Installation
Before you install the soundtrack player, please make sure you have the following already set on your computer, VM, space classroom, manor, etc.
- A copy of DDLC (New Blank Copy from DDLC.moe
- The ZIP file of the soundtrack player.
- (Optional) Custom Music in a folder called
track
in thegame
folder- You can change this folder name or path to something else if you like. If you plan to do so, look at lines
336
,353
,384
,407
,408
,417
, and418
and change their respective paths to your new location.
- You can change this folder name or path to something else if you like. If you plan to do so, look at lines
-
Extract the
DDLC-1.1.1-pc
fromddlc-win.zip
to somewhere on your PC.- For MacOS, move the
ddlc-mac
folder inDownloads
to somewhere on your Mac. If you have justddlc-mac.zip
, double-click it and then move theddlc-mac
folder that was extracted inDownloads
to somewhere on your Mac.
- For MacOS, move the
-
Drop everything in the ZIP you downloaded from here to the
game
folder in yourDDLC-1.1.1-pc
folder.- For MacOS, right-click
DDLC
and selectShow Package Contents
. Double-click onContents
thenResources
thenautorun
and drop the contents of the ZIP you downloaded from here to thegame
folder.
- For MacOS, right-click
-
Copy this line to screens.rpy under lines
443-478
and start DDLC.if main_menu: textbutton _("Soundtrack player") action [Show("music_player"), SetMute("music", True), SetMute("music_player_mixer", False), SetVariable("current_soundtrack", False), If(renpy.game.preferences.mute.get("music", False), true=SetVariable("music_was_muted_before_soundtrack_player_opened", True), false=SetVariable("music_was_muted_before_soundtrack_player_opened", False))]
-
Drop everything in the ZIP you downloaded from here to the
game
folder in your mod's folder.- For MacOS, right-click
DDLC
and selectShow Package Contents
. Double-click onContents
thenResources
thenautorun
and drop the contents of the ZIP you downloaded from here to thegame
folder.
- For MacOS, right-click
-
Copy this line to screens.rpy under lines
443-478
and start your mod.if main_menu: textbutton _("Soundtrack player") action [Show("music_player"), SetMute("music", True), SetMute("music_player_mixer", False), SetVariable("current_soundtrack", False), If(renpy.game.preferences.mute.get("music", False), true=SetVariable("music_was_muted_before_soundtrack_player_opened", True), false=SetVariable("music_was_muted_before_soundtrack_player_opened", False))]
-
Drop everything in the ZIP you downloaded from here to the
game
folder in your mod's folder.- For MacOS, right-click
DDLC
and selectShow Package Contents
. Double-click onContents
thenResources
thenautorun
and drop the contents of the ZIP you downloaded from here to thegame
folder.
- For MacOS, right-click
-
Delete
audio_player.rpy
inmod_assets
or moveaudio_player.rpy
from thegame
folder tomod_assets
. If it asks you if you want to replace, clickReplace
. -
If you have not added a button to access the soundtrack player, copy this line to screens.rpy under lines
443-478
and start your mod.if main_menu: textbutton _("Soundtrack player") action [Show("music_player"), SetMute("music", True), SetMute("music_player_mixer", False), SetVariable("current_soundtrack", False), If(renpy.game.preferences.mute.get("music", False), true=SetVariable("music_was_muted_before_soundtrack_player_opened", True), false=SetVariable("music_was_muted_before_soundtrack_player_opened", False))]