There's a bug in version 0.9.6. In Archive 096.rpa, file "ReneePart1.rpy", lines 16-20. The definition of the audio files is missing the directory prefix and the game errors out with:
Code:
I'm sorry, but an uncaught exception occurred.
While running game code:
OSError: Couldn't find file 'MOKKA-Synthetic Pleasures.mp3'.
-- Full Traceback ------------------------------------------------------------
Adding the prefix to the definition fixes it.
Lines 10-20 of v096.rpa/ReneePart1.rpy before:
Python:
define ReneeContentPath = 'v096/Renee/'
#-----------------------------------------------------------------------#
# Music
#-----------------------------------------------------------------------#
define audio.MelodysTheme = 'MOKKA-Synthetic Pleasures.mp3'
define audio.MelodyDoesntPlay = 'Aim to Head - Mustard.mp3'
define audio.TroubleAtTheMill = 'White Bat - Rise of the Machines.mp3'
define audio.TheBossIsAngry = 'White Bat Audio - Vengeance.mp3'
define audio.Heavenly = 'Eveline - Fantasy Background Harp Music'
Lines 10-20 of v096.rpa/ReneePart1.rpy after:
Python:
define ReneeContentPath = 'v096/Renee/'
#-----------------------------------------------------------------------#
# Music
#-----------------------------------------------------------------------#
define audio.MelodysTheme = ReneeContentPath + 'MOKKA-Synthetic Pleasures.mp3'
define audio.MelodyDoesntPlay = ReneeContentPath + 'Aim to Head - Mustard.mp3'
define audio.TroubleAtTheMill = ReneeContentPath + 'White Bat - Rise of the Machines.mp3'
define audio.TheBossIsAngry = ReneeContentPath + 'White Bat Audio - Vengeance.mp3'
define audio.Heavenly = ReneeContentPath + 'Eveline - Fantasy Background Harp Music'
I attached the patched file to this post. To make it work one has to go to the "game" subdirectory and create a new subdirectory called "v096". Then copy the attached file into the newly created directoy ("game/v096/").