czertik

Active Member
Apr 25, 2018
822
261
Oh no... Another game with fantastic art i'll get hooked at but with long periods between updates because its handrawn
well, there are other options, that dev will use ai do draw art for him. sometimes ai pics are fantastic.
 

MaraTDuoDev

Well-Known Member
Game Developer
Dec 4, 2016
1,569
2,492
So, uh... The "support us on Patreon" button stays on screen when you're loading your saves, and gets in the way of the files.

Edit: And it seems it's still not possible to upgrade Aldit's status to Sex Friend, at least when using a file from a previous version. Same with Laia, who doesn't even have a star indicating what my current status is with her. (The star also disappears from Aldit's screen if I go on a date with her.) And the quest marker at home still isn't doing anything, either. So pretty much all the bugs reported in the last version are still there.
The date turns her into a sex friend. There Is no scene to do it with mind control but the relationship tier is the same
 

MaraTDuoDev

Well-Known Member
Game Developer
Dec 4, 2016
1,569
2,492
Hey. Is there a reason why the roommate/brother's relationship level automatically dips back to 25 each time I try to raise it to 50?

I've attempted countless times to +5 relationship with the roommate/brother at 45 relationship only for it to instantly drop back to 25.

What am I missing?

I read some comments earlier. Is this the dev's way of locking away "sex friend" status? Or am I missing something in regards to a dinner?

Also, I am also sharing the same Aldit issue. I just assumed it was not implemented yet.
That must be a bug, the relationship change, I will look into it
Aldit doesn't has a mc scene to change relationship, but you can use the date
 

MaraTDuoDev

Well-Known Member
Game Developer
Dec 4, 2016
1,569
2,492
So, uh... The "support us on Patreon" button stays on screen when you're loading your saves, and gets in the way of the files.

Edit: And it seems it's still not possible to upgrade Aldit's status to Sex Friend, at least when using a file from a previous version. Same with Laia, who doesn't even have a star indicating what my current status is with her. (The star also disappears from Aldit's screen if I go on a date with her.) And the quest marker at home still isn't doing anything, either. So pretty much all the bugs reported in the last version are still there.
Also yes, sadly there was so much work we didn't fixed much bugs this time around. We'll fix them next time around. I don't see to have the problem you have with the patreon button, I can't reproduce it, can you share a screenshot?
 

Rosen King

Engaged Member
May 29, 2019
2,123
1,600
Also yes, sadly there was so much work we didn't fixed much bugs this time around. We'll fix them next time around. I don't see to have the problem you have with the patreon button, I can't reproduce it, can you share a screenshot?

You don't have permission to view the spoiler content. Log in or register now.

It stays in the same spot it was on the title screen, and partially blocks one of the save slots. (In particular, it makes it impossible to check what the date/time of the save was.)
 

MaraTDuoDev

Well-Known Member
Game Developer
Dec 4, 2016
1,569
2,492
You don't have permission to view the spoiler content. Log in or register now.

It stays in the same spot it was on the title screen, and partially blocks one of the save slots. (In particular, it makes it impossible to check what the date/time of the save was.)
mmh, somehow I never had this problem, idk why.
I'll look it up and fix it ASAP, although at least is not as game breaking as i thought at first
 

cooperdk

Engaged Member
Jul 23, 2017
3,377
4,927
Gameil
I think you need to be VERY, VERY clear about whether or not the gay stuff is avoidable.

MOST of us do not want to play gay games because we are not gays (no disrespect, but non-gauy don't normally play gay games).
Meaning you will lose a LOT of gamers cause they'll just move on when they even see the tag.
 

LadyR

Newbie
Dec 20, 2018
17
34
Gameil
I think you need to be VERY, VERY clear about whether or not the gay stuff is avoidable.

MOST of us do not want to play gay games because we are not gays (no disrespect, but non-gauy don't normally play gay games).
Meaning you will lose a LOT of gamers cause they'll just move on when they even see the tag.
I actually think we need a proper "gay" tag. There are many games tagged with "gay" where there's only one m/m scene or even some games where said scenes are with futa characters, then for people who want to play gay games it's always hard to tell if the content is really m/m or mostly straight with a few gay scenes, and for people who want to play straight games it's hard to tell if the gay content is avoidable or not.
 

Rosen King

Engaged Member
May 29, 2019
2,123
1,600
so u can stay on the straight side?
Mostly, yes. Having sex with your male brother/"roommate" is entirely optional, and while there is a nonbinary slime-person who I think has at least one unavoidable scene, you can at least choose for them to stay in female form.

I actually think we need a proper "gay" tag. There are many games tagged with "gay" where there's only one m/m scene or even some games where said scenes are with futa characters, then for people who want to play gay games it's always hard to tell if the content is really m/m or mostly straight with a few gay scenes, and for people who want to play straight games it's hard to tell if the gay content is avoidable or not.
I don't think I've ever seen a fully gay game that didn't make it abundantly clear that it was fully gay. There are a lot of tags on this site that are incredibly unclear and often hard to tell from the descriptions of the game, but like... If a game is nothing but guy on guy sex, you're gonna know from the OP and the preview images. And the furries, because apparently all gay games are furry games.
 

Umgah

Member
Sep 26, 2016
135
88
Gameil MaraTDuoDev

Your approach for save game update logic is very inefficient: it works only in certain places and generally expects that the game was saved in a "good" place like home. It's very unreliable and goes not work well in most cases.

Instead, you should use RenPy's special `after_load` label:

Example:
Python:
label after_load:
    # Notice that the order of versions is opposite to what you have in `update_game`
    # DO NOT USE ANY "JUMP" INSTRUCTIONS HERE
    if game_version == "0.1":
        # Stuff for v0.1 to v0.2 migration
        $ game_version = "0.2"
    # ...  code for all other versions   
    if game_version == "0.7":
        # Stuff for v0.7 to v0.7a migration
        $ game_version = "0.7a"
    return # This return statement is requred
Also check docs on "default" keyword:
You should use "default" keyword for all new variable that you add between versions. This way you will not need to add any "update" logic at all: variables will be initialized automatically.

PS: Ping me if you need some hints on coding.
 
Last edited:

Perveckt

Newbie
Jun 18, 2020
94
74
every up date i have gotten i've needed to restart since i always save on the town map screen. I really like this game and look forward to where it goes but i'd rather not need to restart every time a new update goes live. Is there any thing that can be done to salvage my current run? When i click on Aldit for the new content renply spits out an error.
 

Rosen King

Engaged Member
May 29, 2019
2,123
1,600
every up date i have gotten i've needed to restart since i always save on the town map screen. I really like this game and look forward to where it goes but i'd rather not need to restart every time a new update goes live. Is there any thing that can be done to salvage my current run? When i click on Aldit for the new content renply spits out an error.
You need to go back to your house and sleep. When a new day starts, the game updates to the latest version.
 
4.00 star(s) 20 Votes