qwertyu12359

Jack-o-nine-tails
Game Developer
Aug 1, 2017
1,570
1,699
I equip stuff before battles and the only way it works for me is switching weapon in combat mode... but idk...
Equipping the weapon at home won't automatically make it available in combat. The pre-fight system isn't a briefing; you actually have to click on "Flamberge" (or other weapons) rather than "start fight".

And yes, it's not intuitive, that's just the system we inherited. We're planning to change the fight system for versions after the upcoming one :)
 

Asia Argento

The Golden Dragon Princess
Donor
Apr 14, 2020
1,822
4,044
Equipping the weapon at home won't automatically make it available in combat. The pre-fight system isn't a briefing; you actually have to click on "Flamberge" (or other weapons) rather than "start fight".

And yes, it's not intuitive, that's just the system we inherited. We're planning to change the fight system for versions after the upcoming one :)
i tried that and low and behold. Strike another L for team derp. Oof.

Sounds good. Also a stamina-free mode would be nice. (Unless this is me being a moron again and I missed where you can turn that off somehow.)
 

qwertyu12359

Jack-o-nine-tails
Game Developer
Aug 1, 2017
1,570
1,699
So random thought I had, why not include a feature for the killing of the slave to be petrification, turning them into a statue, as a way to improve the obedience of other slaves. As in you turn them into statures to ensure they understand the threat of crossing you. Give a limit to how often this can be done obviously, and maybe make it expensive. Optimally make it more intensive than button click, like the more destroyed the person is the more effective statue it has. Maybe also the overall value before the process will also have an impact, like an S ranked girl in everything would have maximum status. Maybe one statue made from every execution technique or something.
That's a good idea to replace the trophy menu but I'm afraid the execution of it can only be lackluster. It'd be better if we could change the facial expression of each 600 girls and make a "petrified statue" photoshop of them all ^^ If we could do that, or convey it convincingly in another way, it'd absolutely be something to consider.
 

Bahamuht

New Member
Aug 2, 2020
7
3
Downloading the base 2.1v right now, just to make sure is there anything else I need to download to get the most out of the game?
 

Lokplart

- I can code, I guess :D
Game Developer
Jul 28, 2018
566
494
Downloading the base 2.1v right now, just to make sure is there anything else I need to download to get the most out of the game?
If you want to stick to the stable 2.1 version of the game, you could also download the patch for l content.
You could also try the WIP 2.2 version here. It has the latest bug fixes and features. If you do, you don't need the 2.1v files. Just click the link and follow the instructions on that thread
 
  • Like
Reactions: Bahamuht

Lokplart

- I can code, I guess :D
Game Developer
Jul 28, 2018
566
494
Where are the Secretary and Escort skills? I can't seem to find them :(
Click on the slave portrait. Look in the list at the top right. Secretary is 4th, Escort is 7th.
If you're trying to find them through the "slave activity -> conduct a lesson" menu path they're called "Clerical Work" and "Etiquette and Rhetoric" (For some reason... :D I'm just gonna change this real quick and unify the names.)
 

Caradolaser

New Member
Feb 8, 2020
6
3
How do you finish the pope quest?

I have a perfect slave

Nature: S+
Beauty: S+
Devotion: 5

But he won't accept her.
'' - I will not bless this woman. She does not have that inner fire that nourishes faith and devotion Adepta Sororitas. And never will be. ''
 

qwertyu12359

Jack-o-nine-tails
Game Developer
Aug 1, 2017
1,570
1,699
How do you finish the pope quest?

I have a perfect slave

Nature: S+
Beauty: S+
Devotion: 5

But he won't accept her.
'' - I will not bless this woman. She does not have that inner fire that nourishes faith and devotion Adepta Sororitas. And never will be. ''
What about her charm level?
 

Lokplart

- I can code, I guess :D
Game Developer
Jul 28, 2018
566
494
How do you finish the pope quest?

I have a perfect slave

Nature: S+
Beauty: S+
Devotion: 5

But he won't accept her.
'' - I will not bless this woman. She does not have that inner fire that nourishes faith and devotion Adepta Sororitas. And never will be. ''
That is the "Not enough charm" response of Pope Ioann I.
Make sure to look at the formulas in the anatomy screen and click on charm for an explanation of what it is.

Also, you getting this response means that he will never accept that girl again, so you'll have to train a new one.
 

Lokplart

- I can code, I guess :D
Game Developer
Jul 28, 2018
566
494
Guys how do I train myself?
If you have F- in a skill you'll need to wear the correct outfit to boost that skill and train the girl until you level up and don't need it anymore.
Check the for what skills each outfit gives in the "Men's clothing" section
 
  • Like
Reactions: Axato

Lokplart

- I can code, I guess :D
Game Developer
Jul 28, 2018
566
494
Hey, can anyone tell me what clothess/ accesoires are required for felicity in 2.1? Got everything else done but not the outfit
I think you just need to have something in all slots.

If you can understand a bit of code, here's the whole condition for the quest:
Code:
        IF slave_type = 2572 and rating = 10 and slave_state = CONST_INT['slave_exist'] and sex_sum = 35 and slave["pride"] = 0 and slave["spoil"] = 0 and slave["moral"] = 5 and slave['has_ride_win'] > 6:
            IF v_balls_rule = 1 and slave_eats_remains = 0 and slave_food_type = 2 and blowjob_rule = 1 and slave_washes_rule = 1 and slave_tentacle_rule = 1 and pet_tentacle > 0:
                IF slave["fiend_tattoo"] = 1 and slave["tatoo"] >= 5 and slave["piercings"] >= 9 and slave["piercing_count"] >= 5 and slave['pregnant'] > 0 and slave["arousal"] = 5:
                    IF $slave["earrings"] ! '' and $slave["collar"] ! '' and $slave["headband"] ! '' and $slave["gloves"] ! '' and $slave["nipplerings"] ! '' and $slave["clitring"] ! '' and $slave["boots"] ! '' and $slave["ring_left"] ! '' and $slave["ring_right"] ! '' and $slave["naval"] ! '' and $slave["tongue"] ! '':
                        IF slave["exhibitionism"] > 1 and slave["nymphomania"] > 0 and slave["perversion"] > 0 and slave["homosexualism"] > 0:
                            interaction_city = 15353
                        END
                    END
                END
            END
        END
 
Aug 5, 2020
8
2
I think you just need to have something in all slots.

If you can understand a bit of code, here's the whole condition for the quest:
Code:
        IF slave_type = 2572 and rating = 10 and slave_state = CONST_INT['slave_exist'] and sex_sum = 35 and slave["pride"] = 0 and slave["spoil"] = 0 and slave["moral"] = 5 and slave['has_ride_win'] > 6:
            IF v_balls_rule = 1 and slave_eats_remains = 0 and slave_food_type = 2 and blowjob_rule = 1 and slave_washes_rule = 1 and slave_tentacle_rule = 1 and pet_tentacle > 0:
                IF slave["fiend_tattoo"] = 1 and slave["tatoo"] >= 5 and slave["piercings"] >= 9 and slave["piercing_count"] >= 5 and slave['pregnant'] > 0 and slave["arousal"] = 5:
                    IF $slave["earrings"] ! '' and $slave["collar"] ! '' and $slave["headband"] ! '' and $slave["gloves"] ! '' and $slave["nipplerings"] ! '' and $slave["clitring"] ! '' and $slave["boots"] ! '' and $slave["ring_left"] ! '' and $slave["ring_right"] ! '' and $slave["naval"] ! '' and $slave["tongue"] ! '':
                        IF slave["exhibitionism"] > 1 and slave["nymphomania"] > 0 and slave["perversion"] > 0 and slave["homosexualism"] > 0:
                            interaction_city = 15353
                        END
                    END
                END
            END
        END

Wait. Is sex sum the amount of sexual interactions (rape relaxed etc) or the amount of orgasms?
 

Lokplart

- I can code, I guess :D
Game Developer
Jul 28, 2018
566
494
JamesMortimerBrother
sex_sum is the sum of points you have on all major sexual skills (Petting, Oral, Penetration, etc).
  • F -> 0 points
  • D -> 1 point
  • ...
  • S -> 5 points
There are 7 major sex skills so that means you have to have S+ in all of them
 
Last edited:
4.00 star(s) 59 Votes