garza

New Member
Jun 19, 2025
2
1
Hi, I started again from chapter 1, can't get Panty Lust trait for the Light tasks. I don't know if there is something left to do, I believe I clicked most of the options available for the light path dozens of times.
 

NoBigFeat

Newbie
Game Developer
May 18, 2022
60
242
Lesbian avoidable?
Yes, all lesbian content avoidable

Hi, I started again from chapter 1, can't get Panty Lust trait for the Light tasks. I don't know if there is something left to do, I believe I clicked most of the options available for the light path dozens of times.
Code:
if not trait_trust_pussy and not trait_raped and not trait_molested and not temp_panty_thing and times_touched_pussy == 0 and not trait_exposed_pussy:
    if lust >= 222 or love >= 222:
      $ temp_panty_thing = True

Here is the code, you must have higher than 222 love OR lust, either is fine. You also can't have touched her. If you meet those conditions, you will get a variable called temp_panty_thing. With that, you can do the panty rub action with a special scene and then it will unlock the Panty Lust trait
 
  • Like
Reactions: Ass~God and garza

garza

New Member
Jun 19, 2025
2
1
Yes, all lesbian content avoidable



Code:
if not trait_trust_pussy and not trait_raped and not trait_molested and not temp_panty_thing and times_touched_pussy == 0 and not trait_exposed_pussy:
    if lust >= 222 or love >= 222:
      $ temp_panty_thing = True

Here is the code, you must have higher than 222 love OR lust, either is fine. You also can't have touched her. If you meet those conditions, you will get a variable called temp_panty_thing. With that, you can do the panty rub action with a special scene and then it will unlock the Panty Lust trait
Tyvm, I'll explain what happened just in case. By reading the code, it seems that you cannot get it if you get the "Trust Pussy Trait" but that trait is in the "Light Tasks" category. If you get that trait before getting the other one you basically get locked for that "light path".
 
Last edited:
  • Like
Reactions: NoBigFeat

NoBigFeat

Newbie
Game Developer
May 18, 2022
60
242
Tyvm, I'll explain what happened just in case. By reading the code, it seems that you cannot get it if you get the "Trust Pussy Trait" but that trait is in the "Light Tasks" category. If you get that trait before getting the other one you basically get locked for that "light path".
Hmmm, after reviewing the code, I think I see where the issue is. So, right after the bit where it sets the temp_panty thing is the checks for setting the trust pussy trait. So, no matter what, temp panty thing will always be set first.

However, what I overlooked was when the panty lust trait is actually set- in the panty rub action, which checks if not trait trust pussy. So, if you manage to get from 222 Lust to 250 Lust before you do a panty rub, that would soft lock you.

A temporary fix would be to open up console on the actions page and type:
$ trait_trust_pussy = False
Then, in theory, it should run the special event for panty lust once you click the panty rub button. It should send you through the trust pussy scene too after it, if not you can cheat that back to true.

Thank you, I've seen a couple reports of this, rare, but I had assumed someone just touched her or something because nobody replied back when I asked about it.

I'll redo that bit of code to automatically run the panty rub scene instead of requiring you to go to it and click it manually, that way it shouldn't bug out
 
  • Like
Reactions: garza

bip77

Member
Apr 21, 2020
131
190
I noticed a cosmetic bug: It seems to me, that nested square bracket variables are being used, which doesn't work. The texts are defined as "Hello [Master]!" for example and printed like that but I guess [Master] should be replaced by the defined variable?
The nested variable should be defined as "Hello [[Master]!" instead, meaning the first opening square bracket should be doubled.
According to:
 
  • Like
Reactions: NoBigFeat

NoBigFeat

Newbie
Game Developer
May 18, 2022
60
242
I noticed a cosmetic bug: It seems to me, that nested square bracket variables are being used, which doesn't work. The texts are defined as "Hello [Master]!" for example and printed like that but I guess [Master] should be replaced by the defined variable?
The nested variable should be defined as "Hello [[Master]!" instead, meaning the first opening square bracket should be doubled.
According to:
Hmm, I have a default variable set for al the various master's I use


default master = "Master"
default M = "Master"
default Master = "Master"
default MASTER = "MASTER"
default my = "master"
default mouthful = "masfer"
default Mouthful = "Masfer"

Which is changed based on the selection screen for what you want to be called in Chapter 6 such as this:

$ m = "love"
$ M = "Love"
$ Master = "Love"
$ master = "love"
$ MASTER = "LOVE"
$ my = "lover"
$ mouthful = "wove"
$ Mouthful = "Wove"

I've yet to see this issue reported nor have I seen it myself, so I think I may have just made a typo somewhere? Maybe I accidentally type [[master] instead of [master] somewhere for example, so the opposite problem?

Can you share where you saw it happen or any info like what action it was or something?


EDIT: Found the issue. It happens on Touch Feet, Lick Feet, Touch Armpits, Touch Pussy, and Lick pussy actions in Ch6. I forgot to adjust those since they're random dialogues in python instead of renpy
 
  • Like
Reactions: bip77

bip77

Member
Apr 21, 2020
131
190
Can you share where you saw it happen or any info like what action it was or something?


EDIT: Found the issue. It happens on Touch Feet, Lick Feet, Touch Armpits, Touch Pussy, and Lick pussy actions in Ch6. I forgot to adjust those since they're random dialogues in python instead of renpy
Yes, exactly. Those actions in chapter 6.
 

dareamedone

New Member
Jun 27, 2021
6
8
This game is awesome, thanks, dear dev.I wonder if in your plans something like adding more culture (oral foot stuff to other girls)?
And another question:a game crushes in 6 chapter when I`m trying to interact with Fae after opening allvariants with her beside complements, is it known bug? How can I fix it? Last version, I`ve tried reset clothes option.
Thank you for this game again.
 

NoBigFeat

Newbie
Game Developer
May 18, 2022
60
242
how does the pregnancy work exactly? can you get it with the love path?
Currently as of 0.6.3, only Allie is able to get "truely" pregnant. However that happened a month ago in-game time, so she's not going to be "visibly" pregnant just yet, but soon as time advances.
Other girls are planned to be allowed to be impregnated, I'm working on one for Chapter 7 as I type this.
I think I might sneak something in for one of Lena's Egg Laying sessions to have an expanded belly soon since that's been suggested a lot. Likely a Chapter 8 thing though, I've already made her egg laying scene for Chapter 7


This game is awesome, thanks, dear dev.I wonder if in your plans something like adding more culture (oral foot stuff to other girls)?
And another question:a game crushes in 6 chapter when I`m trying to interact with Fae after opening allvariants with her beside complements, is it known bug? How can I fix it? Last version, I`ve tried reset clothes option.
Thank you for this game again.
Update to 0.6.3, I fixed the crashes with fae's compliments in that version
I'll get more feet stuff for everyone :) Will be tackling some new actions next week I think, but currently thinking on what to do about Lena's actions (I think most need a rework, at least with dialogues and some emotion changes) due to various progressions over the last couple chapters
 
4.10 star(s) 13 Votes