shundi82

Member
Sep 7, 2022
179
261
I've just started playing and already found some bugs:

1. The kitchen's description is missing the $father.name and $mother.name (instead it's just using $father and $mother).

2. And in the shower trying to do something with your mother, again:
"Your $mother isn't corrupted enough for that." should have $mother.name.

3. "You're in one of your $brother's favorite shops." should have $brother.name.

4. When trying to play pool with less than $20, the game tells you: " You're too tired to bet."

5. Also: Working a shift at the bar should probably not always jump forward to night time, right?

6. There's an infinite money + energy glitch.
Wait until late night, relax on the bench in the park for a few times, do some photoshoots, back to the bench ad infinitum. :p

7. Seems there are a few "ig" in the text lines.
I don't think anyone thinks or talks like in chat messages, so those should all read "I guess" (or whatever they mean in the context).
 
Last edited:
  • Like
Reactions: Violet Rose Games

bluerubber

Well-Known Member
Apr 29, 2019
1,154
1,913
Thank you for the feedback! There's going to be more random interactions as the game progresses. Currently, the next public update adds a few in the house. The update I'm currently working on (not the next public) is focusing mainly on pregnancy, but if I have time, I'll add a few more random interactions. The groping in the bed thing I'm a little warry about. I actually removed the rape tag.
The text with the groping scenes changing can be something I'll look into.
I can add the dirty hobo living in the big park to a list and I'll add it if it seems to fit in the game.
I'm excited about what you are working on!
 
  • Like
Reactions: Violet Rose Games

Violet Rose Games

Newbie
Game Developer
Jan 27, 2025
59
101
I've just started playing and already found some bugs:

1. The kitchen's description is missing the $father.name and $mother.name (instead it's just using $father and $mother).

2. And in the shower trying to do something with your mother, again:
"Your $mother isn't corrupted enough for that." should have $mother.name.

3. "You're in one of your $brother's favorite shops." should have $brother.name.

4. When trying to play pool with less than $20, the game tells you: " You're too tired to bet."

5. Also: Working a shift at the bar should probably not always jump forward to night time, right?

6. There's an infinite money + energy glitch.
Wait until late night, relax on the bench in the park for a few times, do some photoshoots, back to the bench ad infinitum. :p

7. Seems there are a few "ig" in the text lines.
I don't think anyone thinks or talks like in chat messages, so those should all read "I guess" (or whatever they mean in the context).
Thank you for sending bugs! A lot of these are because I completely changed the code for the stat system and I missed some of the old code. I'll look into the jobs and make sure that time passed makes more sense. I didn't know about that glitch haha, I'll look into it. The "ig" are "i guess" yeah. I'll replace text chat with actual chat in future versions, thank you for the feedback!
 
Last edited:
  • Like
Reactions: shundi82

Violet Rose Games

Newbie
Game Developer
Jan 27, 2025
59
101
how do you get Corruption up it stays at 0 no matter what i do
If it's an old save then you'll have to make a new one. The update changed most of all the stat variables. If it's a new save, it might not be going up because you have to start the corruption quest.
 

kansasdude

Well-Known Member
Sep 13, 2017
1,489
1,164
could you add a wardrobe to the MC's room with get naked a choice...if the MC is not corrupt enough to walk around home naked during the day, she could at night after everyone is asleep
 
  • Like
Reactions: Violet Rose Games

Violet Rose Games

Newbie
Game Developer
Jan 27, 2025
59
101
could you add a wardrobe to the MC's room with get naked a choice...if the MC is not corrupt enough to walk around home naked during the day, she could at night after everyone is asleep
New clothing options and a wardrobe is on my list of things to do. I'll make sure to add the option to wear nothing when I implement a wardrobe. I like the idea of adding an option to walk around naked at night when the MC isn't corrupted enough. I'll add that to the list.
 
Mar 18, 2019
199
438
Version 0.1.3 has been publicly released!
Hi mate! I think I found a small bug that might be around your code, generally speaking:

Code:
&lt;&lt;set $time to $time+.25&gt;&gt;</tw-passagedata><tw-passagedata pid="85" name="Relax Small Bench" tags="" position="1725,300" size="100,100">&lt;img src=&quot;media/images/Outside/Park/parkbench.jpeg&quot; width=&quot;263px&quot; height=&quot;375px&quot;&gt;
You&#39;re resting on the park bench and gained some energy.
&lt;&lt;set $time to $time+1&gt;&gt;
//&lt;&lt;set $parksleep to random(4)&gt;&gt;
//&lt;&lt;if $parksleep is 4 and $gun lt 1 and $pepperspray lt 1&gt;&gt;
//    &lt;&lt;goto &quot;Park Sleep&quot;&gt;&gt;
//&lt;&lt;elseif $pepperspay gte 1&gt;&gt;
//    &lt;&lt;set $pepperspray to $pepperspray - 1&gt;&gt;
//&lt;&lt;/if&gt;&gt;
This condition can never return true if $gun and/or $pepperspray are never assigned a value. Null means "absence of value", and thus is not "lesser" than 1.

A good way to avoid this is to just initialize all variables when starting a run to 0 or ''.

Keep up the good work mate!
 

Violet Rose Games

Newbie
Game Developer
Jan 27, 2025
59
101
Hi mate! I think I found a small bug that might be around your code, generally speaking:

Code:
&lt;&lt;set $time to $time+.25&gt;&gt;</tw-passagedata><tw-passagedata pid="85" name="Relax Small Bench" tags="" position="1725,300" size="100,100">&lt;img src=&quot;media/images/Outside/Park/parkbench.jpeg&quot; width=&quot;263px&quot; height=&quot;375px&quot;&gt;
You&#39;re resting on the park bench and gained some energy.
&lt;&lt;set $time to $time+1&gt;&gt;
//&lt;&lt;set $parksleep to random(4)&gt;&gt;
//&lt;&lt;if $parksleep is 4 and $gun lt 1 and $pepperspray lt 1&gt;&gt;
//    &lt;&lt;goto &quot;Park Sleep&quot;&gt;&gt;
//&lt;&lt;elseif $pepperspay gte 1&gt;&gt;
//    &lt;&lt;set $pepperspray to $pepperspray - 1&gt;&gt;
//&lt;&lt;/if&gt;&gt;
This condition can never return true if $gun and/or $pepperspray are never assigned a value. Null means "absence of value", and thus is not "lesser" than 1.

A good way to avoid this is to just initialize all variables when starting a run to 0 or ''.

Keep up the good work mate!
Thank you for helping me with my code! That's actually code that hasn't been updated on purpose. It's for a scene that I decided to leave out of the game. I forgot to delete it when releasing this version, I'll make sure it's deleted by next version.
 
  • Like
Reactions: haveiseenyoubefore

TheOnlyKong

New Member
Mar 18, 2019
13
167
1740732332653.png
Lots of this [object Object] popping up all over the place. I fixed these errors by correcting the call, IE $father.name instead of just $father

Also, I'd like to let the dev know that it's spelled tenant, and tenants pay a landlord or landlady to live on/in a property. So if MC is calling these characters tenants, then she's the landlady and they're paying her to live there.
 
Last edited:
  • Like
Reactions: Violet Rose Games

Violet Rose Games

Newbie
Game Developer
Jan 27, 2025
59
101
View attachment 4595830
Lots of this [object Object] popping up all over the place.

Also, I'd like to let the dev know that it's spelled tenant, and tenants pay a landlord or landlady to live on/in a property. So if MC is calling these characters tenants, then she's the landlady and they're paying her to live there.
If you're using an existing save you should probably restart, most of the code was rewritten so those will be everywhere. If it's a clean save could you point out which scene so it's easier for me to find.
Tenant, noted. Also, thank you for bringing that to my attention, I didn't realize it should be landlady/landlord, I'll look into changing that in the next few updates.
 

TheOnlyKong

New Member
Mar 18, 2019
13
167
If you're using an existing save you should probably restart, most of the code was rewritten so those will be everywhere. If it's a clean save could you point out which scene so it's easier for me to find.
Tenant, noted. Also, thank you for bringing that to my attention, I didn't realize it should be landlady/landlord, I'll look into changing that in the next few updates.
I've never played this game before, it's a clean save. In the first few minutes I've run into half a dozen [object Object] calls. It's just an incomplete object call. the search function (ctrl + f) will serve you well, just comb through each $father $mother $brother $sister like I did and make sure they are complete. While I ran into a lot of them at the start of the game, when I went to fix them, there didn't seem to be that many to fix. As I play I'll keep an eye out for more.

So far off the top of my head, there's two in the kitchen, one in the downstairs bedroom, and basement bathroom. I probably fixed some that were elsewhere before I saw them.
 
  • Like
Reactions: Violet Rose Games

Violet Rose Games

Newbie
Game Developer
Jan 27, 2025
59
101
Thank you for the advice. I'll search for more using ctrl f. Thank you for pointing those out, I fixed them and it will be out within the next update.
 
  • Heart
Reactions: TheOnlyKong

TheOnlyKong

New Member
Mar 18, 2019
13
167
Thank you for the advice. I'll search for more using ctrl f. Thank you for pointing those out, I fixed them and it will be out within the next update.
Ehh, less advice, more just what my dumbass did to fix them. Idk if there's a better way lol. Anyway, there's like 7500 lines of code and I found minor errors in like 6-8 of them, I'd say that's a pretty good job lol.

Also, idk what editor you use, but I use Vim and ctrl+h (replace) is also pretty awesome.
 
  • Like
Reactions: Violet Rose Games
3.80 star(s) 5 Votes