Skip to content

Installation

Hanaka edited this page Oct 4, 2020 · 1 revision

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 the game 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, and 418 and change their respective paths to your new location.

Installation

Fresh Install

  1. Extract the DDLC-1.1.1-pc from ddlc-win.zip to somewhere on your PC.

    • For MacOS, move the ddlc-mac folder in Downloads to somewhere on your Mac. If you have just ddlc-mac.zip, double-click it and then move the ddlc-mac folder that was extracted in Downloads to somewhere on your Mac.
  2. Drop everything in the ZIP you downloaded from here to the game folder in your DDLC-1.1.1-pc folder.

    • For MacOS, right-click DDLC and select Show Package Contents. Double-click on Contents then Resources then autorun and drop the contents of the ZIP you downloaded from here to the game folder.
  3. 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))]

Modded (without Nikso's Soundtrack Player)

  1. Drop everything in the ZIP you downloaded from here to the game folder in your mod's folder.

    • For MacOS, right-click DDLC and select Show Package Contents. Double-click on Contents then Resources then autorun and drop the contents of the ZIP you downloaded from here to the game folder.
  2. 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))]

Modded (with Nikso's Soundtrack Player)

  1. Drop everything in the ZIP you downloaded from here to the game folder in your mod's folder.

    • For MacOS, right-click DDLC and select Show Package Contents. Double-click on Contents then Resources then autorun and drop the contents of the ZIP you downloaded from here to the game folder.
  2. Delete audio_player.rpy in mod_assets or move audio_player.rpy from the game folder to mod_assets. If it asks you if you want to replace, click Replace.

  3. 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))]