PerfectAddiction

New Member
Apr 16, 2023
14
37
The gameplay is very long is there any way to simulate or change rate of commings days. Like 7 days is 1 month or smth like that? After a month or two in the game date, im doing fast forward to next day to get next month, its realy bad.
 
  • Like
Reactions: Spicyporkcutlet

Kevin Smarts

Well-Known Member
Respected User
Game Developer
Jul 21, 2017
1,853
2,397
Girl Life Bug Report

#1
hookup_morning - starting with line 845 - change the function to this (otherwise, if you can't explore the apartment, you are left with no options to leave):
Code:
if $ARGS[0] = 'late_wakeup':
    act'Continue':
        cla & *clr
        $npc_apt_bedroom[$boy]
        '<<$npc_firstname[$boy]>> doesn''t stir in the slightest as you arise.'
        if npc_apt_type[$boy] >= 3:
            act'Explore his apartment':gt'hookup_morning','explore'
        else
            gt'hookup_morning','late_sneakout'
        end
    end
end
#2
gschool_events - line 1041 - change "whle" to "while"

#3
vasily_home_sex - line 1022 - 'view_pornotv_vasya' - nothing calls this event - change to 'view_pornotv_vasily'

#4
vasily_home_sex - line 958 - act 'Yummy': gt 'vasily_home_sex','start' - There is no 'start' function in this section. Not sure what you're trying to do here. Ends with a blank screen.

#5
Recommendation for developers when using the RAND function:

0 will always be the most common random number rolled followed by 1. If you really want your number to be random you shouldn't start with 0 or 1.

For example, with the card game at Vasily's home, the player almost always wins because of this. I changed it to the following which made who wins more random.

cardgame_durak

Line 195:
if RAND(1,100) <= 60:
Change to:
if RAND(10,100) < 60:

Line 213:
elseif RAND(1,40) < 35:
Change to:
elseif RAND(15,40) < 35:

Draws rarely occur when the code is set to:
elseif RAND(1,40) < 35:
Posted the fixes, except slight change on last one.
The card game odds favoured Sveta, what you've done is shorten those odds so it favours the boys. I've compromised and made the first one 50/50 and increased draw chance by 5pts. This should now favour the boys but to a lesser degree than your changes.

Thank you for posting these bug fixes!
 

Kevin Smarts

Well-Known Member
Respected User
Game Developer
Jul 21, 2017
1,853
2,397
"Start a new tapestry" at the city residential house (at least) still gives a blank screen.
For reasons unknown it was set to use the $curloc variable which is not good or correct. I've hardcoded the correct locations for this in the homes where it was using $curloc so it will work with the repo version now.

Thanks for the report!
 
  • Like
Reactions: Genjurooo

Nutluck

Engaged Member
Game Developer
Nov 2, 2017
3,567
2,232
The gameplay is very long is there any way to simulate or change rate of commings days. Like 7 days is 1 month or smth like that? After a month or two in the game date, im doing fast forward to next day to get next month, its realy bad.
This might not be the game for you then, if you are just wanting to skip ahead. This is a sandbox life sim, living the daily life of a girl living in Russia with some porn logic is kinda the point of the game. I say this not to be mean, but to point out the game is designed this way on purpose, so if you are not having fun and just trying to skip stuff constantly, it isn't going to get "better" but just be more of the same.

The idea is you live your life how you want and interact with the npc's and do their story arcs.
 

Kevin Smarts

Well-Known Member
Respected User
Game Developer
Jul 21, 2017
1,853
2,397
The boyfriends are becoming girlfriends.
It a known issue with the random lovers. Development on them is essentially on hold while the new hookups and fuckbuddies system is being worked on as that framework will replace the random lovers base framework making all three cross compatible.
 
  • Like
Reactions: sparrow_rose

Nutluck

Engaged Member
Game Developer
Nov 2, 2017
3,567
2,232
I really like the path the therapist content is going. It will be nice to have a non-generic marriage candidate.
Long term the plan is for some of the NPC's will have that as a option but we are talking really long term here. The game is designed to go for 8 years and we are talking marriage with established NPC's will likely be something towards year 5 or 6 of the game.
 

Insomnimaniac Games

Degenerate Handholder
Game Developer
May 25, 2017
2,985
5,302
Long term the plan is for some of the NPC's will have that as a option but we are talking really long term here. The game is designed to go for 8 years and we are talking marriage with established NPC's will likely be something towards year 5 or 6 of the game.
I assume that doesn't apply to all npcs? Because with people like Fedor you can already talk about marriage, and having kids.
 

Nutluck

Engaged Member
Game Developer
Nov 2, 2017
3,567
2,232
I assume that doesn't apply to all npcs? Because with people like Fedor you can already talk about marriage, and having kids.
Talk about marriage and getting married, getting your own place is not the same thing. How soon will depend on who writes the story, but most of it will be focused after the Uni years.
 
  • Like
Reactions: ustar

Tropic1

Newbie
Dec 3, 2018
42
24
Where am I supposed to deliver the thumb drive? The dialog said I was supposed to deliver to the sauna located near my home. I live in Pavlovsk and the only place matching that description is the sauna near the lake, but there was nobody there.

Update: I was able to find the correct sauna in the St. Petersburg residential area. This is quite a long distance from where the game said it was located. I'm sharing this to hopefully help others who may get stuck here too.
 
Last edited:
  • Like
Reactions: ustar
4.30 star(s) 80 Votes