Kuviragames

Lovephobia is NOT funny. Do NOT laugh.
Donor
Game Developer
Oct 9, 2024
745
3,249
I'm confused as to why MC has the avamad exchange on the path where he's been totally committed to her, this seems backwards.

Is it all supposed to be a dream sequence? It doesn't make sense, out of the blue she's angry (i mean I guess there's him changing her background to a dick but thats mild) - and taunting him about hooking up with simon. Not that I'd mind that in a different context evidenced by my sharing sig :LOL: but that just felt really out of the blue and random.
I honestly had to check it myself because I am so confused with all the comments I got since the last release.
If you are on Zoe's path something completely different happens. What happens in that scene is "MC snoop around her
phone -> MC gets a bit jealous -> MC eats her out -> MC wakes up in the night but Ava is gone. -> MC gets home and thinks about Simon and gets jealous again -> MC does something stupid -> Ava gets mad. -> Next day one more cute scene.
That shows that even in a relationship you do stupid things or just between best friends. At first that all should be optional but I had to go so many different paths that I reduced it to how it is now.
 
  • Like
Reactions: Pr0GamerJohnny

Kuviragames

Lovephobia is NOT funny. Do NOT laugh.
Donor
Game Developer
Oct 9, 2024
745
3,249
Shouldn't the Zuni choice below depend on the gohomeearly variable? Otherwise choosing it at this scene does not make sense. It seems the logic of this whole texting scene needs to be reworked. Probably don't need a choice menu but route according to variables.

Code:
    menu day4wheretogo:
       
        "Read Ava Message" if meetava1 == True:
            jump day4_2_avamessage #block of code to run
        "Read Zuni Message":
            jump day4_2_zunimessage #block of code to run
You are totally right. I changed it to:


label day4_2_1:
if meetava1 == True:
jump day4_2_avamessage #block of code to run

else:
jump day4_2_zunimessage #block of code to run

Test went well. Thank you.
 

Kuviragames

Lovephobia is NOT funny. Do NOT laugh.
Donor
Game Developer
Oct 9, 2024
745
3,249
As far as I can tell zunigame no longer exists so the 3rd choice below will never occur.
Code:
menu day5girlsphone1:
       
        set day5girlsphone

        "Text Zoe" if interestzoe == True:
            jump textzoeday5 #block of code to run
        "Text Ava":
            jump textavaday5 #block of code to run
        "Read Zuni" if zunigame == True:
            jump readzuniday5 #block of code to run
Thank you again. The variable still exist but it never gets "True" so you are right it never occurs. I changed it to:

menu day5girlsphone1:

set day5girlsphone
"Text Zoe" if interestzoe == True:
jump textzoeday5 #block of code to run
"Text Ava":
jump textavaday5 #block of code to run
"Read Zuni" if interestzuni == True:
jump readzuniday5 #block of code to run
 

Kuviragames

Lovephobia is NOT funny. Do NOT laugh.
Donor
Game Developer
Oct 9, 2024
745
3,249
Some additional bugs.

keyword scene is duplicated.
Code:
mc "But I still think she should know."
    scene scene 7_1_5zoesecret
    mc "Listen Zoe.. My mom specializes in trauma therapy.
interestlinda variable does not exist and is never set.
Code:
    mc "Cheeeeeeeese."
    if interestlinda ==  True:
        ln "We look so good together."
keyword scene is duplicated.
Code:
    jm "DIVE BOMB!"
    scene scene 8_2_3 with dissolve
    mc "Wait, what?"

The haha is too long for the phone screen.
Code:
mc_nvl "First! Hahahahahahahahaha! I totally forgot."

Wrong sayer. Should be mc.
Code:
    an "Not at all. I totally support your way of driving."
Not such scene image.
Code:
label day7_1:
    scene 7_1_1

There are some other typo type errors but the above are the majority of the gameplay ones.
Fixed all. Can I give you a medal or something? Thank you very much.
 
  • Like
Reactions: asahibito

Pr0GamerJohnny

Devoted Member
Sep 7, 2022
8,681
13,620
I honestly had to check it myself because I am so confused with all the comments I got since the last release.
If you are on Zoe's path something completely different happens. What happens in that scene is "MC snoop around her
phone -> MC gets a bit jealous -> MC eats her out -> MC wakes up in the night but Ava is gone. -> MC gets home and thinks about Simon and gets jealous again -> MC does something stupid -> Ava gets mad. -> Next day one more cute scene.
That shows that even in a relationship you do stupid things or just between best friends. At first that all should be optional but I had to go so many different paths that I reduced it to how it is now.
I guess that makes sense, it just seemed weird that out of all the combinations and variables, the one where you ignore all the other girls and focus on Ava gets that scene, and the ones where you IGNORE Ava and focus on others you DONT get that scene. I hope my words make sense.
 
  • Heart
Reactions: Kuviragames

Kuviragames

Lovephobia is NOT funny. Do NOT laugh.
Donor
Game Developer
Oct 9, 2024
745
3,249
I guess that makes sense, it just seemed weird that out of all the combinations and variables, the one where you ignore all the other girls and focus on Ava gets that scene, and the ones where you IGNORE Ava and focus on others you DONT get that scene. I hope my words make sense.
Maybe my mind is just broken. It only depends if you are on the Zoe path. She is the only variable here because of her MC does not fall asleep.
 

Kuviragames

Lovephobia is NOT funny. Do NOT laugh.
Donor
Game Developer
Oct 9, 2024
745
3,249
This was very enjoyable! The girls look great, very natural realistic look. The romance is portrayed well and the temptation of other love interest is always fun to play with. I think your writing is good. Eagerly waiting for the next update. (y)
Thank you very much. I am really happy to hear that. :giggle:
 

asahibito

Well-Known Member
Modder
Jan 17, 2021
1,243
5,022
Walkthrough mod updated for v0.36fix.

Walkthrough needed a rework due to the large scale revision to the game mechanics.
As there are some gameplay logic errors in 0.36fix, this walkthrough update is considered temporary.

I do not like popup savename dialog box added in v0.35 so the mod the disables that feature and retained the save name method the mod already had.

Download:
F95zone -
 
  • Heart
Reactions: Kuviragames

asahibito

Well-Known Member
Modder
Jan 17, 2021
1,243
5,022
Fixed all. Can I give you a medal or something? Thank you very much.
You're welcome. No medal needed, I see it as the least I could do for being able to play the game here and make the walkthrough mod for it. Though, I would welcome the opportunity to beta test any release and get a head start on updating the mod... ;) :LOL:
 
  • Heart
Reactions: Kuviragames

Kuviragames

Lovephobia is NOT funny. Do NOT laugh.
Donor
Game Developer
Oct 9, 2024
745
3,249
You're welcome. No medal needed, I see it as the least I could do for being able to play the game here and make the walkthrough mod for it. Though, I would welcome the opportunity to beta test any release and get a head start on updating the mod... ;) :LOL:
That should be no problem. :D
 
  • Heart
Reactions: asahibito

Tadpol

Member
Mar 22, 2021
427
622
You are right. In the car with Lisa is a good idea. OOOOOOOOOOHHHHHH MAAAAAAAAN!! That's not just a good place it is a perfect place. Except that people who are using save files not gonna see it. :LOL:
Anyways you Sir are a hero and that is exactly where I gonna put that. Thank you.
Nice start.

Eventually you realize that things have already happened between the MC and Ava, but it comes a bit late, and indeed the lack of context creates moments where you wonder what's going on, for example the scene where she's playing with his cock in the morning, before they're “officially” together.

So yes, it's a good idea to put a little explanation of the MC/Ava relationship at the start of the game.
 
  • Like
Reactions: Kuviragames

Twelvemonkey

Well-Known Member
Oct 12, 2018
1,017
1,277
Code:
I'm sorry, but errors were detected in your script. Please correct the
errors listed below, and try again.
File "game/story/day7.rpy", line 116: expected 'image_name_component' not found.
    scene scene 7_1_5zoesecret
          ^
File "game/story/day8.rpy", line 351: expected 'image_name_component' not found.
    scene scene 8_2_3 with dissolve
          ^
Ren'Py Version: Ren'Py 8.2.3.24061702
Mon Jan 13 14:49:01 2025
How do i solve this?
 

Kuviragames

Lovephobia is NOT funny. Do NOT laugh.
Donor
Game Developer
Oct 9, 2024
745
3,249
It's my first time trying your game and I'm a little confused, why is it tagged as NTR when the MC finds his Mom with Matt in the kitchen and is asked if he believes it? How can it be NTR if she is not a love interest?
Hey, hope you like it at least a bit.
In my opinion it still counts as NTR if family members are cheating. The general tag is for the other LIs and in my code there shouldn't be any NTR tags anymore. So I am not sure which NTR tag you are talking about. :D
 

iainmore

Well-Known Member
Jun 12, 2017
1,324
1,479
Hey, hope you like it at least a bit.
In my opinion it still counts as NTR if family members are cheating. The general tag is for the other LIs and in my code there shouldn't be any NTR tags anymore. So I am not sure which NTR tag you are talking about. :D
You clearly dont understand what NTR/Netorare is man?????? Oh and you have tagged this Netorare - see top of page man.


What does Netorare NTR mean?

Netorare, also known as NTR, is a subgenre of anime, manga, and other media that focuses on the theme of betrayal in romantic relationships. This genre explores infidelity between couples, whether they are boyfriends, spouses, or any type of bond that involves a minimum of commitment and loyalty.
 
Last edited:
  • Like
Reactions: voltron123

Kuviragames

Lovephobia is NOT funny. Do NOT laugh.
Donor
Game Developer
Oct 9, 2024
745
3,249
You clearly dont understand what NTR/Netorare is man?????? Oh and you have tagged this Netorare - see top of page man.


What does Netorare NTR mean?

Netorare, also known as NTR, is a subgenre of anime, manga, and other media that focuses on the theme of betrayal in romantic relationships. This genre explores infidelity between couples, whether they are boyfriends, spouses, or any type of bond that involves a minimum of commitment and loyalty.
:rolleyes:

I probably don't know what NTR means to 100%. Just from a few definitions here or searching on google. And "FOR ME" it does count if your mother is cheating on your father. But that doesn't matter at all. I did not tag the game NTR because of MCs Mom or his sister(because there is no incest). Currently because of Lisa and Linda. And of course the other NTR moments in the future.

And like you quoted from my previous comment "The general tag is for the other LIs".

Oh and you have tagged this Netorare - see top of page man.
So this part of your comment doesn't make sense at all.
 

Boehser Onkel

Forum Fanatic
Modder
Feb 20, 2021
4,878
8,711
:rolleyes:

I probably don't know what NTR means to 100%. Just from a few definitions here or searching on google. And "FOR ME" it does count if your mother is cheating on your father. But that doesn't matter at all. I did not tag the game NTR because of MCs Mom or his sister(because there is no incest). Currently because of Lisa and Linda. And of course the other NTR moments in the future.

And like you quoted from my previous comment "The general tag is for the other LIs".



So this part of your comment doesn't make sense at all.
piece of advise :
dont argue with the ntr lovers
this leads to pages of spam and insults
just ignore/avoid it
believe me - i was there and it was ugly :ROFLMAO:
 
4.30 star(s) 38 Votes