Crisius

Newbie
May 25, 2017
19
16
155
In all honesty, I downloaded this on a whim and forgot I had it. Found it again and it's done in 2 sittings. The story is actually good. The graphics and sex scenes are handled very well. No asset clipping. I want more. I see it's on steam, and while I keep most of my "adult" games off there, I will be purchasing this one. It's worth supporting in such a fashion.
 

anon9gg

Newbie
Feb 2, 2025
23
37
13
some more bugs

day 10 hive mission 2 (d10a) - you have 3 different endings and the script ATTEMPTS to update the objective (day10.rpy l:1538; 1586; 1612) at the end:
Python:
    $ renpy.notify(_('Quest "Extension of politics" updated.'))
    $ du = "Pepper summed it up well. <...>"
    if du not in mq_m_2o1.description:
        $ mq_m_2o1.description.pop()
        $ mq_m_2o1.description.append(du)
no clue why this objective's description is sets as a stupid list but anyway, this only updates the base defined objective and not the actual running one (what the quest log reads) ERGO the quest log won't updates the objective accordingly
you need to add this afterward to hard reset the related objectives with the newly defined ones:
Python:
        $ mq_m_2o1.refresh_objectives()
and there is going to be a future issue with a specific ending if you continue the quest line at a later point:
in the case you are allied but avoid having sex with the queen, you have no way to tell if you've actually agreed or disagreed on the deal -> no var is sets and none can be used to deduct that outcome



day 16 zahra date (d16c) - the first part with the servants (day16.rpy l:5045) is badly scripted:
Python:
    elif introduction_fairy == True and introduction_emilia == False:
        scene d16c-14
        with fade
        F "{i}*suck*{/i}"
you can see fairy + emilia on this render -> this should've been d16c-13x for fairy only here

so, this scene has different renders depending if you've introduced emilia and/or fairy to the household
now look at the blatant copy/pasta of the exact same condition everywhere from line 5060:
Python:
    if introduction_fairy == True and introduction_emilia == True:
        scene d16c-15
        with fade
    elif introduction_fairy == True and introduction_emilia == True:
        scene d16c-15x
        with fade
    elif introduction_fairy == True and introduction_emilia == True:
        scene d16c-15x-2
        with fade
    Z "That's good; you look pretty..."
    W "See? I told you it would make the wait easier."
    if introduction_fairy == True and introduction_emilia == True:
        scene d16c-14
        with fade
    elif introduction_fairy == True and introduction_emilia == True:
        scene d16c-14x
        with fade
    elif introduction_fairy == True and introduction_emilia == True:
        scene d16c-14x-2
        with fade
    W "Anyways... I think I'm done. Do you want to see?"
    if introduction_fairy == True and introduction_emilia == True:
        Z "Great. You heard her, girls."
        scene d16c-16
        with dissolve
        E "Mh..."
        scene black pic
        with fade
        "Obediently, they raise and leave you alone, as you walk over to [W]..."
        jump d16c17
    else:
        Z "Great. You heard her, girl."
    if introduction_fairy == True and introduction_emilia == True:
        F "Mhm..."
    if introduction_fairy == True and introduction_emilia == True:
        E "Mh..."
for reference: x variant is fairy only and x-2 variant is emilia only (base = both)
these conditions should've looked like this:
Python:
    if introduction_fairy and introduction_emilia:
        scene d16c-15 with fade
    elif introduction_fairy:
        scene d16c-15x with fade
    elif introduction_emilia:
        scene d16c-15x-2 with fade
    ...
the indentation and conditions are both wrong at the end:
Python:
    else: # <- not with both girls
        Z "Great. You heard her, girl."
        if introduction_fairy:
            F "Mhm..."
        else:
            E "Mh..."
long story short: beside the first render for solo emilia (script not quoted here), the only variant working as intended is emilia + fairy while renders exist for both separately



a typo in day 17a at line 3314 that begins by this:
"Ivy considers <I> considers" in the context it should be "<I> considers" because no one else around
(i cant use brackets [] for the char ref: the forum is parsing an italic tag)

also during that mission, there are 8 unused renders for extending/alternating a scene with krait gropping her victim before licking her neck
(i cant post a preview the forum doesnt accept the compressed render as an valid image)
 

Leinad_Sevla

Well-Known Member
Jun 30, 2023
1,574
1,979
296
Goth Kitty (May25/Stalkers+)



"Man, what the hell did you do to her? She used to be the cute one in class!"
"I don't know, feels like I can do whatever I want with her. I don’t even know if she cares."

___________
Poor Kitty got all corrupted. But the real fun starts with the images in the attached file!

You don't have permission to view the spoiler content. Log in or register now.
When I saw the title, I was expecting her to have dark hair. Somehow she reminds me of Sabrina Carpenter when she had dark hair.
Is it "wrong" that I prefer her looks here than in the game? Everytime this dev makes a Goth render it´s always so hot that I wish he could make more goth girls in game.


any update yet?
Yeah, we´re already at 18 updates by now lol.

No, not yet, come back in August, probably.
 

The Senior Perv

Well-Known Member
May 4, 2022
1,787
17,184
637
Dev log 0106.png Dev log 0106-1.png
Dev log 01.06.25

Time to hear the Queen out on her findings! But wait... what about that crossbow Shani found? She never got to ask Mandisa about it, Shani's long-time teacher, and mistress of her own household... a very strict and commanding mistress, to add. And one who developed refined tastes in choosing the most alluring, rugged, and well-built of slaves — the wealthy blademaster of Zeta has her needs and demands. As she is the heir of a quite wealthy man herself... would Shani ever be interested in these privileges?

Render progress:
- MC & Queen short visit: 100%
- Shani visits Mandisa: 100%
- Shani & MC on a mission: 0%
- Shani enters the bath: 75%
- Harem scenes:
- Kateryna solo: 75%
- Fairy solo: 30%
(I separated the mission preparations from the main mission progression.)

Other:
- Household overview variations: 0%
- Room visit variations: 0%
- Various polishing: 50%

Script writing: 0%
Animations: 0%
 

Stan5851

Forum Fanatic
Oct 18, 2019
4,654
9,684
658
some more bugs

day 10 hive mission 2 (d10a) - you have 3 different endings and the script ATTEMPTS to update the objective (day10.rpy l:1538; 1586; 1612) at the end:
Python:
    $ renpy.notify(_('Quest "Extension of politics" updated.'))
    $ du = "Pepper summed it up well. <...>"
    if du not in mq_m_2o1.description:
        $ mq_m_2o1.description.pop()
        $ mq_m_2o1.description.append(du)
no clue why this objective's description is sets as a stupid list but anyway, this only updates the base defined objective and not the actual running one (what the quest log reads) ERGO the quest log won't updates the objective accordingly
you need to add this afterward to hard reset the related objectives with the newly defined ones:
Python:
        $ mq_m_2o1.refresh_objectives()
and there is going to be a future issue with a specific ending if you continue the quest line at a later point:
in the case you are allied but avoid having sex with the queen, you have no way to tell if you've actually agreed or disagreed on the deal -> no var is sets and none can be used to deduct that outcome



day 16 zahra date (d16c) - the first part with the servants (day16.rpy l:5045) is badly scripted:
Python:
    elif introduction_fairy == True and introduction_emilia == False:
        scene d16c-14
        with fade
        F "{i}*suck*{/i}"
you can see fairy + emilia on this render -> this should've been d16c-13x for fairy only here

so, this scene has different renders depending if you've introduced emilia and/or fairy to the household
now look at the blatant copy/pasta of the exact same condition everywhere from line 5060:
Python:
    if introduction_fairy == True and introduction_emilia == True:
        scene d16c-15
        with fade
    elif introduction_fairy == True and introduction_emilia == True:
        scene d16c-15x
        with fade
    elif introduction_fairy == True and introduction_emilia == True:
        scene d16c-15x-2
        with fade
    Z "That's good; you look pretty..."
    W "See? I told you it would make the wait easier."
    if introduction_fairy == True and introduction_emilia == True:
        scene d16c-14
        with fade
    elif introduction_fairy == True and introduction_emilia == True:
        scene d16c-14x
        with fade
    elif introduction_fairy == True and introduction_emilia == True:
        scene d16c-14x-2
        with fade
    W "Anyways... I think I'm done. Do you want to see?"
    if introduction_fairy == True and introduction_emilia == True:
        Z "Great. You heard her, girls."
        scene d16c-16
        with dissolve
        E "Mh..."
        scene black pic
        with fade
        "Obediently, they raise and leave you alone, as you walk over to [W]..."
        jump d16c17
    else:
        Z "Great. You heard her, girl."
    if introduction_fairy == True and introduction_emilia == True:
        F "Mhm..."
    if introduction_fairy == True and introduction_emilia == True:
        E "Mh..."
for reference: x variant is fairy only and x-2 variant is emilia only (base = both)
these conditions should've looked like this:
Python:
    if introduction_fairy and introduction_emilia:
        scene d16c-15 with fade
    elif introduction_fairy:
        scene d16c-15x with fade
    elif introduction_emilia:
        scene d16c-15x-2 with fade
    ...
the indentation and conditions are both wrong at the end:
Python:
    else: # <- not with both girls
        Z "Great. You heard her, girl."
        if introduction_fairy:
            F "Mhm..."
        else:
            E "Mh..."
long story short: beside the first render for solo emilia (script not quoted here), the only variant working as intended is emilia + fairy while renders exist for both separately



a typo in day 17a at line 3314 that begins by this:
"Ivy considers <I> considers" in the context it should be "<I> considers" because no one else around
(i cant use brackets [] for the char ref: the forum is parsing an italic tag)

also during that mission, there are 8 unused renders for extending/alternating a scene with krait gropping her victim before licking her neck
(i cant post a preview the forum doesnt accept the compressed render as an valid image)
I think it's better to post this in the dev's Discord, because he doesn't communicate in this thread.
would Shani ever be interested in these privileges?
My Shani will definitely not take advantage of these "privileges".:whistle::coffee:
 
Last edited:

NightShadeX

Active Member
May 11, 2017
723
626
274
for the Hive quest, is there anyway to become the master of the hive and its inhabitant? Stalker becomes the ruler of the raider settlement. Am I missing something in the hive quest?
 

Yender/30@1

Newbie
Jul 31, 2024
22
45
91
View attachment 4898287 View attachment 4898288
Dev log 01.06.25

Time to hear the Queen out on her findings! But wait... what about that crossbow Shani found? She never got to ask Mandisa about it, Shani's long-time teacher, and mistress of her own household... a very strict and commanding mistress, to add. And one who developed refined tastes in choosing the most alluring, rugged, and well-built of slaves — the wealthy blademaster of Zeta has her needs and demands. As she is the heir of a quite wealthy man herself... would Shani ever be interested in these privileges?

Render progress:
- MC & Queen short visit: 100%
- Shani visits Mandisa: 100%
- Shani & MC on a mission: 0%
- Shani enters the bath: 75%
- Harem scenes:
- Kateryna solo: 75%
- Fairy solo: 30%
(I separated the mission preparations from the main mission progression.)

Other:
- Household overview variations: 0%
- Room visit variations: 0%
- Various polishing: 50%

Script writing: 0%
Animations: 0%
My Shani will definitely take advantage of these privileges.
 

Leinad_Sevla

Well-Known Member
Jun 30, 2023
1,574
1,979
296
Time to hear the Queen out on her findings! But wait... what about that crossbow Shani found? She never got to ask Mandisa about it, Shani's long-time teacher, and mistress of her own household... a very strict and commanding mistress, to add. And one who developed refined tastes in choosing the most alluring, rugged, and well-built of slaves — the wealthy blademaster of Zeta has her needs and demands. As she is the heir of a quite wealthy man herself... would Shani ever be interested in these privileges?
Don´t tease me with a good time

I wonder what those privileges might mean. Is it Shani being like Mandisa, having her own house and personal male slaves, taking care of her "needs"?
Are we about to have a scene with Mandisa? I know that during the Zahra date she didn´t seem that interested in switching partners, maybe she´s changed her mind?
 

MrTrue

Active Member
Dec 2, 2021
923
2,278
367
Don´t tease me with a good time

I wonder what those privileges might mean. Is it Shani being like Mandisa, having her own house and personal male slaves, taking care of her "needs"?
Are we about to have a scene with Mandisa? I know that during the Zahra date she didn´t seem that interested in switching partners, maybe she´s changed her mind?
Knowing how ambiguous Zetan can be with wording, it will probably just be Shani having the option to watch Mandisa having fun, but I get the feeling she will not be able to join.
But the idea will probably be brought home with Shani and later discussed with Zaton to set up future scenes, unless the trigger is during her trial when you can tell her to "do whatever it takes" to survive. :unsure:
 
Oct 9, 2022
48
91
142
Don´t tease me with a good time

I wonder what those privileges might mean. Is it Shani being like Mandisa, having her own house and personal male slaves, taking care of her "needs"?
Are we about to have a scene with Mandisa? I know that during the Zahra date she didn´t seem that interested in switching partners, maybe she´s changed her mind?
I remember in the game, Zetan told Kat that Zahra was not interested in other men, but was very willing to play with Igor.
 

xapican

Message Maven
May 11, 2020
12,748
20,490
998
Knowing how ambiguous Zetan can be with wording, it will probably just be Shani having the option to watch Mandisa having fun, but I get the feeling she will not be able to join.
But the idea will probably be brought home with Shani and later discussed with Zaton to set up future scenes, unless the trigger is during her trial when you can tell her to "do whatever it takes" to survive. :unsure:
Guess that depends if Shani is on the Lesbian path, or not.
 
4.80 star(s) 760 Votes