Jul 17, 2020
498
370
How did you do that? Please share.
search every .rpy for "play music" without the quotes

if filename seems like it is a sound effect change it to "play sound"

if the sound effect doesn't have "loop" at the end add it so it looks similar to "play sound "xxxxx.ogg" loop"

then search the next few lines for "stop music" and change it to "stop sound" be sure to catch all of them inside
  1. "menu:"
  2. "if"
  3. "elif"
  4. "else"
blocks

edit
and careful not to add "loop" to doorbell sounds, just noticed if you followed my instructions to the letter you be stuck with constant doorbell sounds till the next "stop sound" is called lol

and lines with " noloop" you can just get rid of " noloop" i believe "play sound" assumes noloop by default but "play music" assumes loop by default
 
Last edited:

5mithers

Member
Aug 3, 2019
292
318
Just finished replaying through from the beginning. I don't think I caught the crossover with My Employee's Family the first time I played through the game. Considering both of these games have very similar vibes, I'm honestly not surprised. At first I thought they were by the same dev.

Gotta say after fully replaying it, I still really enjoy the story line and look forward to more.
 

Kaos_Theory

Member
Apr 18, 2019
370
607
How did you do that? Please share.
I created a music folder in the game directory, placed the 2 audio files that were music into it and left all other sound effects in the main sound folder, then I went through every rpy file and edited any line that read
Code:
play music "sounds/filename.mp3"
to say
Code:
play music "music/filename.mp3"
for music files and
Code:
play sound "sounds/filename.mp3"
for sounds, pay attention as not all sound files will be mp3 a lot of them will be .ogg or .mp4

The only 2 files that need to be in music are SexMusicatParty.mp3 and ChildhoodbyScottBuckleyNostalgicPianoMusic.mp3 everything else stays in the original sounds folder

Here are examples of how I've done my code work for each

Music play music "music/SexMusicatparty.mp3" loop
Sounds play sound "sounds/for_now_hav2do.ogg"

All sounds that have or need to be looped will be done in the original .rpy files, but one exception to this rule is shower.ogg, when you change this to 'play sound' instead of 'play music' it will still carry the loop tag over and this makes it play the sound constantly until another sound comes through the sound channel so you have to set it to 'noloop'

Also take note of CurtimusPrime92's answer as that information is very relevant.
 

DIRTY FILTHY Animal

Devoted Member
Jun 11, 2020
9,645
33,355
Not sure what happened but last time I played this game I was able to have sex scenes with madison at the house after the movie night but this time after starting all over again the scene in the bathroom with her is greyed out to have fun with her.
So what changed or do I have to be on a different path with her daughters?
 
3.40 star(s) 39 Votes