• To improve security, we will soon start forcing password resets for any account that uses a weak password on the next login. If you have a weak password or a defunct email, please update it now to prevent future disruption.

Brady2626

Engaged Member
Mar 2, 2018
2,065
1,509
Don't expect to be able to load previous loads in this game. As we'll be adding new files, it's not possible.
I'll make a button "jump to the newest update" on the next releease tho.
thats annoying as fuck why are you not able to do it but the vast majority of other devs can keep saves up with no issues guess i wont be playing for a while maybe until done
 

xXxTRIBUTExXx

Newbie
Sep 11, 2017
69
131
Not only can you not use old saves but the phone camera picture taking part is broke. The camera wont take a picture and returns to the start position every time you release it.
 

Whiteleaf Studio

Member
Game Developer
Oct 20, 2019
489
1,614
Not only can you not use old saves but the phone camera picture taking part is broke. The camera wont take a picture and returns to the start position every time you release it.
It's not broke I just tested it.
It's a problem on your installation. You probably should delete your old saves and things like that.

Or you can do this:


Here's a quick edit of the script file to disable the camera minigame anyways, in case anyone is having trouble with that.
Just unzip and copy/paste to your "game" folder.
 

Mikomiko98

New Member
May 31, 2018
9
8
Whiteleaf Studio Just keep building the game. I'm glad to see incest and pregnancy back on the menu. I'll replay as many scenes as necessary.

But actually trying to be helpful here... For save compatability to work you cant edit previous code. so if your not done with certain old scenes forget about it. And maybe this documentation can give you some insight to what needs to be done to please the peons.
 

Whiteleaf Studio

Member
Game Developer
Oct 20, 2019
489
1,614
Whiteleaf Studio Just keep building the game. I'm glad to see incest and pregnancy back on the menu. I'll replay as many scenes as necessary.

But actually trying to be helpful here... For save compatability to work you cant edit previous code. so if your not done with certain old scenes forget about it. And maybe this documentation can give you some insight to what needs to be done to please the peons.
Thanks, I'll look into it.
 

Johntheloner

Newbie
Jun 14, 2017
79
272
Whiteleaf Studio Just keep building the game. I'm glad to see incest and pregnancy back on the menu. I'll replay as many scenes as necessary.

But actually trying to be helpful here... For save compatability to work you cant edit previous code. so if your not done with certain old scenes forget about it. And maybe this documentation can give you some insight to what needs to be done to please the peons.
It's not about 'not editing previous code', it has more to do with not changing variables that were previously used, or if you do, coding in conversion of old variables (or their values) to new ones at start of new updates.
This is why a fair number of games in Renpy and even in some other engines, that are in development will have a 'save here' screen near the end of an update. SPECIFICALLY so that the next scene, the first one added in the next update, can do what it needs to in order to convert the values in the save and keep it viable.

Going back and adding or changing things about prior scenes should only break saves if you are actively modifying code around variables. Changing text or other aspects wouldn't do anything, and adding new options or even removing existing ones shouldn't do anything on it's own to the save.
 

Whiteleaf Studio

Member
Game Developer
Oct 20, 2019
489
1,614
New links:

0.03b

PC:
MAC:

I added an option to skip the minigames and also added a "jump to the lastest release" option.

Can you guys check to see if the bugs are fixed?
 

Family Fun

Member
Nov 9, 2020
360
791
This is a very exciting plot and I think y'all need to calm down with the complaints.

I'm self taught on Ren Py and very much still learning, so pinch of salt here. Thinking of solutions to jump to new content what about putting in a menu choice at the start? I begin after entering character names.
Screenshot 2024-04-10 141457.png

This gets the characters the correct name and skips ahead.

I tested this script on my PC and it works. I only have the one computer so I wasn't able to do a mass beta testing.

the forum removes the spacing so replace (tab) with the Tab key.

"To my right is my sister, her name is..."
$ sisname = renpy.input("What is my Sister's name?{p}(Penelope by Default.)")
$ sisname = sisname.strip()
if sisname == "":
(tab)$ sisname="Penelope"

menu choiceX:
(tab)"Go to the kitchen."
(tab)(tab)pass

(tab)"Go to new content":
(tab)(tab)jump continue_script_7
 
  • Like
Reactions: Mikomiko98

Whiteleaf Studio

Member
Game Developer
Oct 20, 2019
489
1,614
This is a very exciting plot and I think y'all need to calm down with the complaints.

I'm self taught on Ren Py and very much still learning, so pinch of salt here. Thinking of solutions to jump to new content what about putting in a menu choice at the start? I begin after entering character names.
View attachment 3528142

This gets the characters the correct name and skips ahead.

I tested this script on my PC and it works. I only have the one computer so I wasn't able to do a mass beta testing.

the forum removes the spacing so replace (tab) with the Tab key.

"To my right is my sister, her name is..."
$ sisname = renpy.input("What is my Sister's name?{p}(Penelope by Default.)")
$ sisname = sisname.strip()
if sisname == "":
(tab)$ sisname="Penelope"

menu choiceX:
(tab)"Go to the kitchen."
(tab)(tab)pass

(tab)"Go to new content":
(tab)(tab)jump continue_script_7
I just updated the game with the bugfixing and options like this.
But thanks for the hard work!
 
  • Like
Reactions: Family Fun
3.80 star(s) 13 Votes