TrinCks

New Member
Mar 3, 2025
1
0
20
Hey, can anyone tell me? I think I've reached the ending at this point. After the shower scene where the main character and his wife are caught by her husband, the game tells me to sleep, but nothing happens. I assume that's the end of the current update. Can anyone tell me how I can unlock the scenes with the sisters? They're in the gallery, but they're not active, and I don't think I've seen anything.
 

lobotomist

Well-Known Member
Sep 4, 2017
1,129
1,232
369
Hey, can anyone tell me? I think I've reached the ending at this point. After the shower scene where the main character and his wife are caught by her husband, the game tells me to sleep, but nothing happens. I assume that's the end of the current update. Can anyone tell me how I can unlock the scenes with the sisters? They're in the gallery, but they're not active, and I don't think I've seen anything.
This game is kinda buggy, and requires you to do scenes in a certain order. If nothing is showing in you quest list, you might have to start over. I myself asked before for the order in this thread, you could look it up in the thread. But most likely you have to restart.
 
  • Sad
Reactions: TrinCks

Psyduck_OwO

New Member
May 30, 2025
2
0
1
Can someone help me with this loop? Ive done all tasks still Olya's photoshoot session with her friend and after that no task showing at all. tried sleeping through multiple days and restarting the game and stuff but no luck. and yes ive the mods installed which were in the thread. Would appreciate it a lot if someone helps me out or give the save file after the photoshoot session. 1760327120324.png
 

DarkholsS

Member
Aug 9, 2020
115
132
149
Great. Either it's ready by the end of the month, or it will be ready at the beginning of November. I knew the ending would be like Girl House.







Great. Either it's ready by the end of the month, or it will be ready at the beginning of November. I knew the ending would be like Girl House.
Maybe even earlier
 
Feb 1, 2018
27
25
45
How I can get data from Ivan´s laptop?
Same here. After visiting his office building, Ivan said he will pass back the memory card and took it from MC. After that I am stuck with one last task which is to get data from Ivan's laptop. MC got caught with his wife and his wife need help from MC to take video proof for divorce money. I do not see any task relating appearing now yet.
 

Juan1201110

New Member
Apr 18, 2024
1
0
20
Can someone help me with this loop? Ive done all tasks still Olya's photoshoot session with her friend and after that no task showing at all. tried sleeping through multiple days and restarting the game and stuff but no luck. and yes ive the mods installed which were in the thread. Would appreciate it a lot if someone helps me out or give the save file after the photoshoot session. View attachment 5337699
Did you find a solution? I'm stuck in that part too
 

Psyduck_OwO

New Member
May 30, 2025
2
0
1
Did you find a solution? I'm stuck in that part too
Nope, spent hefty amount of time and all i got to figure out that, after that olya photoshoot task the main in game file is not there. but not any exact solution maybe trying different version would've worked out but i was too tired to figure anything out
:"<
 
Oct 2, 2025
1
1
3
If the ending will be the same as girl house
Then keep it
I want the ending like my cute roommate 1
Where after you finish story you can keep playing and repeat sex scenes whenever you want and wherever you want
 
  • Like
Reactions: chris1

Apollodore

Member
Nov 15, 2024
228
1,214
221
Can someone please help me?
When I ask at the Photo Shop Girl the SD Reader the game crash.
This is the error:

While loading <renpy.display.im.Image object (u'images/mainmenu/mainmenu_bg_day.png') at 0x00000000066d9e90>:
File "game/_content/city2/photo_store/lia_talk.rpy", line 140, in <module>
NameError: name 'menu_lia_cr' is not defined
i get the same was just coming to post this , havent seen any other errors , just everytime i do this it crashes and no option to skip etc.
Can someone please help me?
When I ask at the Photo Shop Girl the SD Reader the game crash.
This is the error:

While loading <renpy.display.im.Image object (u'images/mainmenu/mainmenu_bg_day.png') at 0x00000000066d9e90>:
File "game/_content/city2/photo_store/lia_talk.rpy", line 140, in <module>
NameError: name 'menu_lia_cr' is not defined
the problem is here :
1760909412380.png

create a file name lia_talk.rpy with the line "set menu lia cr" deleted :

Python:
label lia_talk:

    $ gui_off()

    if npc['lia'].active('lia1'):
        jump lia1

    scene photo_store3 with D1

    lia "Hello, how can I help you?"
    $ webcam_cost = item_cost('webcam')
    menu lia_talk._menu:

        "Change the background" if npc['lia'].active('lia6'):
            hero "I want to change the background at the photo studio."
            lia "Yes, of course, that will be 20$."
            if credits >= 20:
                menu:
                    "Pay 20$":
                        $ money(-1*20)
                        $ f.set('photo_background_black')
                        $ npc['lia'].complete('lia6')
                        $ npc['olya'].activate('olya11')
                    "Refuse":

                        hero "I changed my mind."
            else:
                hero "I don't have that much money now."

                lia "I think you've already learned how to make money. $20 isn't much."


                nav goto photostore hall

        "Rent a photo studio" if npc['lia'].task_completed('lia2'):
            hero "I would like to rent a photo studio."
            if f.has('arenda_payd'):
                lia "You already paid for one."
                jump lia_talk.end

            lia "Yes, of course, that will be 40$."



            if credits >= 40:
                menu:
                    "Pay 40$":
                        $ money(-1*40)
                        $ f.set('arenda_payd')
                        $ npc['lia'].task_complete('lia3')
                        $ npc['olya'].task_activate('olya3')
                    "Refuse":

                        hero "I changed my mind."
            else:
                jump lia_talk.webcam_chanel

        "I need a webcam" if npc['lia'].task_active('lia4'):

            hero "I need a webcam."
            if f.has('get_webcam_false'):
                lia "Lucky for you, I still have one. Do you want to pay for it or earn it by solving a riddle?"
                menu:
                    "Pay"('b') if credits >= webcam_cost:
                        $ money(-1*webcam_cost)
                        call lia_talk.getting_webcam from _call_lia_talk_getting_webcam
                    "Solve a riddle"('b'):
                        hero "Okay, I will try to solve your riddle."
                        lia "Let me remind you about the conditions, if you guess correctly, you get the webcam for free. If you don't guess correctly, you pay 400$ for it. You can get me the money later. Do you agree?"
                        jump lia_talk.get_webcam1
                    "Take in installments"('b'):

                        hero "Let's avoid this nonsense. Just give me the webcam and I will pay you back the money."
                        lia "As you wish. Now you owe me 400$, agreed?"



                        menu:
                            lia "As you wish. Now you owe me 400$, agreed?{fast}"
                            "Yes":
                                hero "Yes."
                                label lia_talk.take_webcam:
                                call lia_talk.getting_webcam from _call_lia_talk_getting_webcam_1
                                lia "Then it's settled, you owe me 400$."
                                $ f.add('lia_debt',400)
                            "No":
                                hero "No."
                                lia "You need to decide what you want."
                jump lia_talk.end

            lia "I do have one. It's not new though, but I can sell it to you for [webcam_cost]$."

            if credits >= webcam_cost:
                menu:
                    "Pay [webcam_cost]$":
                        $ money(-1*webcam_cost)
                        call lia_talk.getting_webcam from _call_lia_talk_getting_webcam_2
                    "Refuse":

                        hero "I changed my mind."
            else:
                $ menu_pos(.5,.99,.5)
                menu:
                    "I have no money":
                        pass
                jump lia_talk.get_webcam

            jump lia_talk.end

        "Do you have a photo studio?" if npc['lia'].task_active('lia2'):
            hero "Do you have a photo studio?"
            lia "Yes, we have a great photo studio and fee is not high at all - only $100 per session."
            lia "We provide all the lighting equipment, but you must bring your own camera."
            $ npc['lia'].task_complete('lia2')
            $ npc['lia'].activate('lia3')

        "I need a camera" if npc['hero'].task_active('gadget_store2'):
            hero "I need a camera."
            if f.not_set('lia_menu_1'):
                scene photo_store3 hand with D1
                lia "All merchandise is presented in the store, you can choose what you like."
                jump lia_talk.end

            if f.not_set('lia_menu_2'):
                scene photo_store3 hand with D1
                lia "I repeat for those who are especially gifted that all products are displayed in the room. Go and choose!"
                jump lia_talk.end

            lia "Yeah, I get it, you just like hearing the same things over and over again."

        "Do you sell card readers?"('say') if npc['lia'].active('lia7'):
            if f.not_set('lia_menu_first'):
                $ menu_lia_cr = set()

            if f.not_set('lia_cr1'):
                lia "No, no one's been using them for a long time. Why do you need one?"

            elif f.not_set('lia_cr2'):
                lia "I already told you that we don't sell them here. Maybe I can help you if you tell me what you need a card reader for?"
            else:

                lia "God, you're annoying! We don't sell card readers here! Tell me, why does a jerk like you need a card reader?"

            menu:
                "To shove it up your ass!":
                    $ rel('lia')
                    lia "Actually, I don't mind anal sex. But I prefer a more rounded object for it."
                "To read a memory card":

                    jump lia_talk.cardreader
                "None of your business"('say'):

                    $ rel('lia',-1)
                    lia "Hmm, okay."

        "Buy a cable"('b') if npc['lia'].active('lia8'):
            hero "I need a cable to connect my camera to a computer."
            if not have('camera*'):
                lia "First, you need to buy a camera. Where are you going to put the cable?"
                jump lia_talk.end
            lia "Sure, that'll be $10."

            if credits >= 10:
                menu:
                    "Pay 10$":
                        $ money(-1*10)
                        $ get_item('cable')
                        $ npc['lia'].complete('lia8')
                    "Refuse":
                        hero "I changed my mind."
            else:


                jump lia_talk.webcam_chanel
        "Look at the woman"('b'):


            $ video('photo_store5_anim_')
            ""
            scene photo_store3 with D1
            jump lia_talk._menu
        "Nothing":

            hero "Nothing."
            nav goto photostore hall

    label lia_talk.end:
    scene photo_store3 with D1
    lia "Would you like anything else?"
    jump lia_talk._menu



label lia_talk.webcam_chanel:
    hero "I don't have that much money now."
    if npc['hero'].started('hero1'):
        lia "No money, no honey."
        jump lia_talk.end
    lia "Strange, with a talent like yours, you could make a lot of money."
    $ menu_pos(.5,.99,.5)
    menu:
        "What do you mean?":
            pass

    lia "Well, you have such a great thing in your pants that you could obviously make money on the internet."



    lia "So why haven't you created your own webcam channel yet?"

    menu:
        "I'm not a girl":
            hero "I'm not a girl."
            lia "Well, it's not only for girls, guys only earn money there."
        "I'm not gay":

            hero "I'm not gay"
            lia "And what makes you think that there are only gays? It's full of heterosexual people as well. Girls also like to look at guys, especially when they have something to show."
        "Can we make money together?":

            hero "Can we make money together?"
            $ rel('lia')
            lia "Not a bad idea, but as you can see, I already have a job."

    lia "In general, if you need money, you can try your luck there."



    $ npc['hero'].task_activate('hero1')

    jump lia_talk.end

label lia_talk.get_webcam:

    lia "Hmm, okay. We can play a game. You have to solve 5 riddles. If you can, I'll give you the webcam."
    lia "But if you don't guess correctly, then you will give me 400$ for it later. Do you agree?"



    menu lia_talk.get_webcam1:
        lia "But if you don't guess correctly, you will give me 400$ for it later. Do you agree?{fast}"
        "Yes":
            hero "Yes."
            pass
        "No":
            hero "No."
            lia "Okay, then find the money for it."
            $ f.set('get_webcam_false')
            jump lia_talk.end

    lia "Good."

label lia_talk.question1:
    lia "First riddle:"
    lia "When I go in, I can cause some pain. I'll fill your holes when you ask me to. I also ask that you spit and not swallow. What am I?"


    $ menu_pos(y=.5)
    menu:
        "Penis":


            hero "You are a penis."
        "Vibrator":

            hero "You are a vibrator."
        "Dildo":

            hero "You are a dildo."
        "Dentist":

            hero "You are a dentist."
            lia "That's right! You're smart."
            jump lia_talk.question2
        "Glove":

            hero "You are a glove."
            lia "Why would I be a glove?"
            jump lia_talk.q1

    lia "Ugh, how vulgar you are!"
    label lia_talk.q1:
    lia "You guessed it wrong. I'm a dentist."
    jump lia_talk.take_webcam

label lia_talk.question2:

    lia "Second riddle:"
    lia "I'm the highlight of many dates. I'm especially responsive when you put your fingers deep inside me. What am I?"

    $ menu_pos(y=.5)
    menu:
        "Toilet":


            hero "You are a toilet."
        "Vagina":


            hero "You are a vagina."
        "Anus":

            hero "You are an anus."
        "Bowling ball":

            hero "You are a bowling ball"
            lia "That's right! You're doing pretty well."
            jump lia_talk.question3
        "Glove":

            hero "You are a glove."
            lia "Why would I be a glove?"
            jump lia_talk.q2

    lia "Well, you're vulgar!"
    label lia_talk.q2:
    lia "Wrong answer! I'm a bowling ball."
    jump lia_talk.take_webcam

label lia_talk.question3:
    lia "Third riddle:"

    lia "I assist with erections. Sometimes, giant balls hang from me. I'm known as a big swinger. What am I?"


    $ menu_pos(y=.5)
    menu:
        "Penis":


            hero "You are a penis."
        "Vibrator":

            hero "You are a vibrator."
        "Crane.":

            hero "You're a crane."
            lia "Bingo!"
            jump lia_talk.question4
        "Dildo":

            hero "You are a dildo."
        "Torch":

            hero "You are a torch."


    lia "No. I'm a crane."
    jump lia_talk.take_webcam

label lia_talk.question4:
    lia "Fourth riddle:"
    lia "You stick your poles inside me. You tie me down to get me up. I get wet before you do. What am I?"

    $ menu_pos(y=.5)
    menu:
        "Vagina":



            hero "You are a vagina."
        "Anus":

            hero "You are an anus."
        "Bowling ball":

            hero "You are a bowling ball."
        "Tent":


            hero "You are a tent."
            lia "That's right! You guessed right again!"
            jump lia_talk.question5
        "Glove":

            hero "You are a glove."
            lia "Why would I be a glove?"

    lia "Very original. The correct answer is a tent."
    jump lia_talk.take_webcam

label lia_talk.question5:
    lia "Last riddle:"
    lia "I'm long, hard, and I point up. I have to be slippery for you to go down me. You put your hands on me and then go up and down. What am I?"


    $ menu_pos(y=.5)

    menu:
        lia "I'm long, hard, and I may point up. I have to be slippery for you to go down on me. You put your hands on me and then can go up or down. What am I?{fast}"
        "Penis":

            hero "You are a penis."
        "Vibrator":

            hero "You are a vibrator."
        "Dildo":


            hero "You are a dildo."
        "Railing":

            hero "You are railing."
            lia "Bingo!"
            jump lia_talk.end_question
        "Glove":

            hero "You are a glove."
            lia "Why would I be a glove?"

    lia "Didn't guess correctly. The correct answer is railing."
    jump lia_talk.take_webcam

label lia_talk.end_question:

    lia "Congratulations, you answered all my riddles correctly."
    lia "The webcam is yours."
    call lia_talk.getting_webcam from _call_lia_talk_getting_webcam_3
    jump lia_talk.end

label lia_talk.getting_webcam:

    $ get_item('webcam')
    $ show_inv = True
    $ npc['lia'].task_complete('lia4')
    $ npc['hero'].activate('hero3')

    return

label lia_talk.cardreader:

    lia "You can use a camera for that."

    if not have('camera*'):

        lia "You can buy any camera except the cheapest."
        lia "The cheapest one comes with a built-in memory and there's no card slot."





    elif have('camera1'):

        lia "Only your camera won't work for that, it has a built-in memory and no card slot."
        lia "You'll need a more expensive model, at least an MK2."
        $ npc['hero'].activate('upgrade_camera')
    else:


        lia "Your camera is compatible with this."

    lia "You have to insert the card into the camera and connect it to the computer."
    lia "You can do it via Wi-Fi or using a special cable."
    lia "The cable can be purchased here in the store for only $10."

    $ npc['lia'].complete('lia7')
    if have('camera*'):
        $ npc['lia'].activate('lia8')
        $ npc['hero'].activate('ivan2',notify=False)



    if npc['lia'].active('lia1'):
        jump lia1_1
    jump lia_talk.end
delete game/_content/city2/photo_store/ lia_talk.rpyc and move your lia_talk.rpy to game/_content/city2/photo_store/
and voilà
1760909519335.png
 
Last edited:
  • Like
Reactions: Tomy75 and _flim_
2.70 star(s) 75 Votes