FoxyTails

Member
Feb 9, 2020
206
385
I can say that code wise, 'buying girl scout cookies' and giving Cream a special hug 15 times will definitely stop the music forcing a reload if you want to have music (as they start playing porn groove music), and I think that's it, but I can't guarantee it.
Thanks - I KNEW there was porn music play, but couldnt remember what caused it .
Anyway, I've 'updated' my zip file to include 2 extra rpy scripts (overworld and vanilla).

In Vanilla I've change the script to restart main_theme after the Cream hugs (line 152) and Scout cookies (line 697) - basically the porn music plays as normal but after the event then music starts playing from the start

In Overworld, I noticed once you slept you can't hear the sunrise sound over the music so I added a 'stop music' (line247) and a restart (Line 257) so that you can

Once again, backup your original RPY files & unzip/replace with the new ones.

DISCLAIMER: I know NOTHING about Renpy, I just know how to edit Text files ;).
I have no plans to compete with current developers, just like experimenting & offer what little help I can to get this game finished


MrFluffums: FYI, there are places you can search for 'royalty free music' - such as - as long as the music has a 'creative commons' licence you can usually use it quite freely with the only condition that I know of is that you MUST credit the owner somehow.
In the case of the website I spoke of, when you download you get a popup with what needs to be included in the credits - a simple cut/paste then adding it to an 'About' or 'Credits' option on your games main screen I guess would suffice
 
Last edited:

Pleevy

Newbie
Nov 23, 2024
29
91
I can say that code wise, 'buying girl scout cookies' and giving Cream a special hug 15 times will definitely stop the music forcing a reload if you want to have music (as they start playing porn groove music), and I think that's it, but I can't guarantee it.

If you want to be really fancy, you can do:
Code:
$ length_of_music_in_seconds=240 # the length of your custom audio track in seconds
$ starttime = renpy.random.randint(0, length_of_music_in_seconds) # this'll choose a random starting point
play music f"<from {starttime}>audio/music/main_theme.mp3" loop # this starts the music from that point
in vars.rpy to get a different starting point of the music any time you save / load the game (loading the same save should always give the same starting point though, if the document on renpy.random is correct)

Ending the day doesn't restart the music btw, the new day sound is just a sound effect not music, so it doesn't stop the main music.
If it is only those 2-3 things that actually interrupt it, then what I mean to do works perfectly. No need to get fancy and mess with code that does not need to be messed with, just grab a couple songs, mege them and recplace the MP# that the code already uses.

I actually never even knew about the girl scout event until coming across these threads...now we must have
You don't have permission to view the spoiler content. Log in or register now.

Thanks - I KNEW there was porn music play, but couldnt remember what caused it .
Anyway, I've 'updated' my zip file to include 2 extra rpy scripts (overworld and vanilla).

In Vanilla I've change the script to restart main_theme after the Cream hugs (line 152) and Scout cookies (line 697) - basically the porn music plays as normal but after the event then music starts playing from the start

In Overworld, I noticed once you slept you can't hear the sunrise sound over the music so I added a 'stop music' (line247) and a restart (Line 257) so that you can

Once again, backup your original RPY files & unzip/replace with the new ones.
Already used your files to make the code changes instead of risking messing anything up. Sankyuu very much.
Creamorangedress1.jpeg
 
  • Like
Reactions: Novaca and Stevemic
4.50 star(s) 4 Votes