Skip to main content

Indie game storeFree gamesFun gamesHorror games
Game developmentAssetsComics
SalesBundles
Jobs
TagsGame Engines
(1 edit)

And if your character ever gets pregnant, the character does get pregnant but nothing ever happens as a result. That's because the condition to advance the pregnancy time checks if $player.pregnant == true, when $player.pregnant is actually set to "yes"

so this:

<<if $player.pregnant == true>>
    <<set $player.pregtime ++>>
    <<set $player.pregtime ++>>
<</if>>

should be:

<<if $player.pregnant == "yes">>
    <<set $player.pregtime ++>>
    <<set $player.pregtime ++>>
<</if>>

Thank you for all this. Sincerely.

(1 edit)

More bugs:

There seems to be a whole mechanic in the bathroom about being able to take a shower, and to possibly catch your roommate/sibling in the bathroom. The logic for this is messed up because all of the "set $showeroccupied" calls are using "==" instead of "=", preventing you from even taking a shower in the first place.

Lines like these:

set $showeroccupied == false
set $showeroccupied == true

Should be:

set $showeroccupied = false
set $showeroccupied = true

Worked like a charm when I find-replaced all instances of "set $showeroccupied == " with "set $showeroccupied = "