Skip to main content

Indie game storeFree gamesFun gamesHorror games
Game developmentAssetsComics
SalesBundles
Jobs
TagsGame Engines

Another bug report from reading the html code.

You have some mixed usages of "penispills" and "penispill", which ends up making the penispill worthless.

For assignment, for dosing Todd, it is "penispills"

set $dosetype = "penispills"

For dosing everyone else, including the player, it is "penispill"

set $dosetype = "penispill"
set $player.currentdrug1 = "penispill"
set $annie.currentdrug1 = "penispill"
set $kathy.currentdrug1 = "penispill"
set $cindy.currentdrug1 = "penispill"
set $mina.currentdrug1 = "penispill"
set $travis.currentdrug1 = "penispill"
set $todd.currentdrug1 = "penispill"


But conditional checks are all over the place.

All of the dosing sections are about "penispill"

But all of the conditions for testing and displaying the effects are "penispills". Including the widget the displays what drugs are currently affecting the player, which only checks for "penispills" while the actual state is assigned as "penispill"

When on a date with your sibling at the club, if your status is less than 25, and if the sibling is female, you get a dead end as there is no button to navigate on.

But for the other options, you still get a dead end because the button's destination is the passage "Dance Club Inside Date", but the actual passage's name is "Dance Club Date Inside"

(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 = "