This physically changes the persistent data and is considered bad form. Creating isolated galleries is much more proper and allows the player to continue with achievements. The above method is simply lazy imho, just like others that edit the gallery files directly and mark each as True. I'm just pointing it out as many folks don't like their persistent files tampered with, but to each their own. I've always gone out of my way to insure the player can revert back if they decide to remove/uninstall a mod.I found a way to edit brandy's mod so it works with any version, regardless how many galleries, extra's there are. Before each gallery was enabled separately, but with this change we set them all to true:
Python:def brandy_unlock_memories(): gallery = {k: True for (k,v) in persistent.items() if 'gallery_' in k} persistent = persistent | gallery def brandy_unlock_extra(): extra = {k: True for (k,v) in persistent.items() if 'extra_' in k} persistent = persistent | extra def brandy_unlock_lewd(): lewd = {k: True for (k,v) in persistent.items() if 'lewd_' in k} persistent = persistent | lewd def brandy_unlock_phone_bg(): bg = {k: True for (k,v) in persistent.items() if 'bg_' in k} persistent = persistent | bg
You haven’t played many games on here thenOne of the MOST BORING games I have played on this website.
You haven’t played many games on here then
can't wait to actully use your mod to play this game. i believe it will make it easier (meaning enjoyable) like a lotAnother mini-update of sorts:
Currently coding in a phone task system similar to my recently released LeapOfFaith mod which dynamically updates the MiniStat page 1 que according to comments/messages/pics that the player may not be aware require attention. Below is an example of it in action:
Here the player has never checked the PVU pics section of the phone up to this point (no likes or comments on them). Notice the PhoneTasks in the MiniStat screen:
View attachment 1589017
Now let's randomly choose a pic in the phone to comment from out of those three, let's choose Roxy in this example. Notice how the ChoiceGuide functions in the phone app as well as a side note. Speaking of that side note, the second pic below shows the same exact screen but the player has toggled off the ChoiceGuide to show you that even the phone app changes in realtime:
View attachment 1589018 View attachment 1589026
There's only one comment choice to make so let's choose it and notice the MiniStat screen instantly afterwards:
View attachment 1589019
Here the phone is exited to get a better view of the above:
View attachment 1589021
Don't worry about the "Chat Messages" being empty in the MiniStat in those above pics, I'll populate that after a while once I sort the coding out to be more efficient. Regards.
dev still working on it. Not implemented yetwhere are those mods? I can only see tons of text
will this mod be seperate files or overwriting the originals?Another mini-update of sorts:
Currently coding in a phone task system similar to my recently released LeapOfFaith mod which dynamically updates the MiniStat page 1 que according to comments/messages/pics that the player may not be aware require attention. Below is an example of it in action:
Here the player has never checked the PVU pics section of the phone up to this point (no likes or comments on them). Notice the PhoneTasks in the MiniStat screen:
View attachment 1589017
Now let's randomly choose a pic in the phone to comment from out of those three, let's choose Roxy in this example. Notice how the ChoiceGuide functions in the phone app as well as a side note. Speaking of that side note, the second pic below shows the same exact screen but the player has toggled off the ChoiceGuide to show you that even the phone app changes in realtime:
View attachment 1589018 View attachment 1589026
There's only one comment choice to make so let's choose it and notice the MiniStat screen instantly afterwards:
View attachment 1589019
Here the phone is exited to get a better view of the above:
View attachment 1589021
Don't worry about the "Chat Messages" being empty in the MiniStat in those above pics, I'll populate that after a while once I sort the coding out to be more efficient. Regards.
more options there i guessI'm curious to know what exactly we've seen in this update to assume there would be some threesome stuff?
If it's Yuki-the MC-Carol-some then I wouldn't even expect it since the MC's just using this info to take advantage of it for finding a closer approach to Yuki. Besides, something tells me Carol wouldn't go for it. Moreover, it's not yet known how Yuki would react to the fact Carol and the MC are a loving couple since from almost the beginning of the whole story. But again, it's only my purely personal opinion regarding all the details provided in the story. There's always a chance
And if it's Roxy-the MC-Nikki-some then it would be quite possible though. Too many hints
Since I package my mods archived, both. It doesn't matter since the mod will be uninstallable so I'm not understanding the relevant basis of the question. I don't hack-up original scripts as many others do if that's the question, the average SanchoMod is well over 5k lines of custom isolated code but I'll be damned if I'm going to completely rewrite dialogue scripts so there's that.will this mod be seperate files or overwriting the originals?
solvedSince I package my mods archived, both. It doesn't matter since the mod will be uninstallable so I'm not understanding the relevant basis of the question. I don't hack-up original scripts as many others do if that's the question, the average SanchoMod is well over 5k lines of custom isolated code but I'll be damned if I'm going to completely rewrite dialogue scripts so there's that.
Another audio file fubar that throws an exception during Cheerleader Peak scene. The actual audio file in an ogg, not a wav (similar issue of the one above). It's amazing that the first and original episode is still riddled with bugs.The following is incorrect and will throw an error in "Extras" / "Carol". The audio file is an mp3, not an ogg.
Python:label carol_date_2_extra: if persistent.name == None: $ name = "MC" elif True: $ name = persistent.name play music "audio/carol_help.ogg" fadein 3
menu:
"Turn off the sound" if True:
stop music fadeout 3
scene 294a with dissolve
mct "Come on! Come here you little asshole!"
scene 294b
c "Ashley, wait. He's probably already there..."
scene 294c
play sound "audio/phone_fall.wav"
Well bud, please be patient then as this is a cumbersome project and the scripting is quite frustrating to work with considering the abundance of unorthodox practices of the dev. I've also work obligations that must be met soon too (have to close out end of year accounting), so this project won't get 100% attention. I'll do my best as always though barring any unknown issues. Regards.Great work Sancho1969 . The screenshots seems to be amazing. Waiting impatiently for the updated mod
How do you switch page??Loop up 4 once and get your eye candy:
View attachment 1588234
View attachment 1588236
Did you see them all?
Thanks for sharing this. However I get an error when I try to use these functions in-game.I found a way to edit brandy's mod so it works with any version, regardless how many galleries, extra's there are. Before each gallery was enabled separately, but with this change we set them all to true:
Python:def brandy_unlock_memories(): gallery = {k: True for (k,v) in persistent.items() if 'gallery_' in k} persistent = persistent | gallery def brandy_unlock_extra(): extra = {k: True for (k,v) in persistent.items() if 'extra_' in k} persistent = persistent | extra def brandy_unlock_lewd(): lewd = {k: True for (k,v) in persistent.items() if 'lewd_' in k} persistent = persistent | lewd def brandy_unlock_phone_bg(): bg = {k: True for (k,v) in persistent.items() if 'bg_' in k} persistent = persistent | bg