Evangelion-01

Devoted Member
Apr 12, 2018
10,313
6,914
What's the highest Obedience stat a slave can have (for the Debug screen when wearing Raven Crown), and does Felicity need to be that in order for the quest to succeed? Currently I have her on 27, she's not pregnant (she was last year but had to abort in fear of her getting snatched) and only Famous instead of Legendary (fixing that this week) but all other of the quest requirements are met including Racing Grand Champion.
If I remember correctly the hardest part was giving her sexual traits (exhibitionist, Nympho and Masochist... wasn't it?) and all Tatoos and piercings possible.
Also Devotion tends to be the far more important stat, ignoring the debug menu you should take the girls Aura as indicator
 

Zurrlock

Member
May 13, 2018
335
222
If I remember correctly the hardest part was giving her sexual traits (exhibitionist, Nympho and Masochist... wasn't it?) and all Tatoos and piercings possible.
Also Devotion tends to be the far more important stat, ignoring the debug menu you should take the girls Aura as indicator
Nymphomaniac, Bi-Sexual, Pervert and Exhibitionist are the traits she needs, she's also Brony and Painter at Heart by now, and maybe more (the list falls off once you get that many traits, Isabella is the same and gets that very easy since she starts off with a ton of innate traits, that box needs to be made bigger or able to be scrolled in). She's currently pregnant, all of the modifications (everything's grayed out at both Bo and Steel Heart), 4 or 5 arousal all the time (she needs 5+preg when she's turned in), and Racing Grand Champion, going to try to run either another race or another arena win to see if I can make her Legendary as well then see if he'll take her.
 

mats.backmanm

Newbie
May 4, 2018
41
21
Is there any good noob friendly guide for new players out there? That would help me get a good idea of how to start progressing in the game?
 

i107760

Sistersitting / Housesitting Developer
Modder
Game Developer
Nov 1, 2016
849
1,474
Witch Doctor broken? I can't get it at all with doctor and enchanter??
Cannot reproduce. Getting a little tired of these bug reports about things I have not changed at all, and that work on clean installation for myself... Load save, hand in contract, and see that witch doctor contract works. (cus that's what I assume you meant)

On the github, you can see every change I made to every file. I did not touch contracts, or the auction system, at all. I tried to be as detailed as possible in my commit naming, and the details show what exactly changed for every commit.

Zurrlock I've fixed the small 'slave edit' button not woring, thanks for that report.
 
Last edited:
  • Like
Reactions: Zurrlock

i107760

Sistersitting / Housesitting Developer
Modder
Game Developer
Nov 1, 2016
849
1,474
qwertyu12359 I'm not sure if it's gonna be smart to change the cheat editor for the master screen, master stats are calculated using x_rate, hence the cheat menu requiring multiple clicks. The only way to do it would be with 6 conditionals (elseifs, or switch if qsp has it).

Take libido for example:
Code:
!Calculate all of master stats based on rate - crushboss
master_libido = 0
if master_libido_rate >= 15: master_libido = 1
if master_libido_rate >= 30: master_libido = 2
if master_libido_rate >= 60: master_libido = 3
if master_libido_rate >= 100: master_libido = 4
if master_libido_rate >= 180: master_libido = 5
Cheat menu:
Code:
$setting_display += {<div id="under_gray"><a href ='EXEC: master_libido_rate -= 15 & gt "menu_form"'><img src="content/pic/buttons/Minus.png"></a>}
$setting_display += $master_libido[master_libido]
$setting_display += {<a href ='EXEC: master_libido_rate += 15 & gt "menu_form"'><img src="content/pic/buttons/Plus.png"></a><a href ='EXEC: master_libido_rate = 300 & gt "menu_form"'><img src="content/pic/buttons/teach_s.png"></a></div>}
What it would need to be changed to:
Code:
    IF master_libido = 0:
    $setting_display += {<div id="under_gray"><a href ='EXEC: master_libido_rate = 0 & gt "menu_form"'><img src="content/pic/buttons/Minus.png"></a>}
    $setting_display += $master_libido[master_libido]
    $setting_display += {<a href ='EXEC: master_libido_rate = 15 & gt "menu_form"'><img src="content/pic/buttons/Plus.png"></a><a href ='EXEC: master_libido_rate = 300 & gt "menu_form"'><img src="content/pic/buttons/teach_s.png"></a></div>}
    ELSEIF master_libido = 1:
    $setting_display += {<div id="under_gray"><a href ='EXEC: master_libido_rate = 0 & gt "menu_form"'><img src="content/pic/buttons/Minus.png"></a>}
    $setting_display += $master_libido[master_libido]
    $setting_display += {<a href ='EXEC: master_libido_rate = 30 & gt "menu_form"'><img src="content/pic/buttons/Plus.png"></a><a href ='EXEC: master_libido_rate = 300 & gt "menu_form"'><img src="content/pic/buttons/teach_s.png"></a></div>}
    ELSEIF master_libido = 2:
    $setting_display += {<div id="under_gray"><a href ='EXEC: master_libido_rate = 15 & gt "menu_form"'><img src="content/pic/buttons/Minus.png"></a>}
    $setting_display += $master_libido[master_libido]
    $setting_display += {<a href ='EXEC: master_libido_rate = 60 & gt "menu_form"'><img src="content/pic/buttons/Plus.png"></a><a href ='EXEC: master_libido_rate = 300 & gt "menu_form"'><img src="content/pic/buttons/teach_s.png"></a></div>}
    ELSEIF master_libido = 3:
    $setting_display += {<div id="under_gray"><a href ='EXEC: master_libido_rate = 30 & gt "menu_form"'><img src="content/pic/buttons/Minus.png"></a>}
    $setting_display += $master_libido[master_libido]
    $setting_display += {<a href ='EXEC: master_libido_rate = 100 & gt "menu_form"'><img src="content/pic/buttons/Plus.png"></a><a href ='EXEC: master_libido_rate = 300 & gt "menu_form"'><img src="content/pic/buttons/teach_s.png"></a></div>}
    ELSEIF master_libido = 4:
    $setting_display += {<div id="under_gray"><a href ='EXEC: master_libido_rate = 60 & gt "menu_form"'><img src="content/pic/buttons/Minus.png"></a>}
    $setting_display += $master_libido[master_libido]
    $setting_display += {<a href ='EXEC: master_libido_rate = 180 & gt "menu_form"'><img src="content/pic/buttons/Plus.png"></a><a href ='EXEC: master_libido_rate = 300 & gt "menu_form"'><img src="content/pic/buttons/teach_s.png"></a></div>}
    ELSE
    $setting_display += {<div id="under_gray"><a href ='EXEC: master_libido_rate = 100 & gt "menu_form"'><img src="content/pic/buttons/Minus.png"></a>}
    $setting_display += $master_libido[master_libido]
    $setting_display += {<a href ='EXEC: master_libido_rate = 180  & gt "menu_form"'><img src="content/pic/buttons/Plus.png"></a><a href ='EXEC: master_libido_rate = 300 & gt "menu_form"'><img src="content/pic/buttons/teach_s.png"></a></div>}
    END
I might be able to shorten it a little by reworking the div to 'duplicate' less things in each conditional, but let me know what you want, this actually does work the way you want it to.
 
  • Thinking Face
Reactions: qwertyu12359

i107760

Sistersitting / Housesitting Developer
Modder
Game Developer
Nov 1, 2016
849
1,474
any1 know how to get your slave to model weight have a tough time
Put on nutritionist diet and it will take care of it automatically. If you want to do it yourself, if too fat, underfeed her, and do physical activities. If too thin, overfeed, and don't do physical activities.
 
Last edited:

Zurrlock

Member
May 13, 2018
335
222
Okay, I'm done with this game. It was fun, but it's too much grind, and then I run into stuff like this. I'm linking a Felicity day 120 save, she's grand champion, has all of the modifications, she's fully trained, I've done EVERYTHING that the quest tells me to, so unless that's written wrong, that quest is broken, and so is my save now, which means unless someone tells me how to fix that save beyond "start a new game" I'm done with this, because no matter what I do that fucking Spectre fucker won't take her. I tried cheat editing her and setting everything to max, including grand champion wins to 50 (note, I got them fair and square in the save, other than the money cheat I didn't even use training speed on her until I'd gotten all the skills the quest says you should have, then set training to 100 to see if there was something I was missing), or even activating every single fetish incase there's something not noted, nothing works.

Also incidentally, if you don't implement an option to capture and "train" Lord Spectre for this fuckery, I'm likewise probably done with this game. That guy needs to be sodomized to death as he's watching me dine on his roasted testicles.



Save is with 2.1 + Loli + Patrician mod, new save started with 2.1.
 
Last edited:

qwertyu12359

Jack-o-nine-tails
Game Developer
Aug 1, 2017
1,552
1,681
Okay, I'm done with this game. It was fun, but it's too much grind, and then I run into stuff like this. I'm linking a Felicity day 120 save, she's grand champion, has all of the modifications, she's fully trained, I've done EVERYTHING that the quest tells me to, so unless that's written wrong, that quest is broken, and so is my save now, which means unless someone tells me how to fix that save beyond "start a new game" I'm done with this, because no matter what I do that fucking Spectre fucker won't take her. I tried cheat editing her and setting everything to max, including grand champion wins to 50 (note, I got them fair and square in the save, other than the money cheat I didn't even use training speed on her until I'd gotten all the skills the quest says you should have, then set training to 100 to see if there was something I was missing), or even activating every single fetish incase there's something not noted, nothing works.

Also incidentally, if you don't implement an option to capture and "train" Lord Spectre for this fuckery, I'm likewise probably done with this game. That guy needs to be sodomized to death as he's watching me dine on his roasted testicles.



Save is with 2.1 + Loli + Patrician mod, new save started with 2.1.
Felicity isn't broken, in theory, because some players have reached Patrician. It's just that this quest is really unforgiving, it seems.

There was a guide somewhere, let me fetch it for you: https://f95zone.to/threads/jack-o-n...tsman-community-developpment.390/post-2271924
 
  • Like
Reactions: Zurrlock

i107760

Sistersitting / Housesitting Developer
Modder
Game Developer
Nov 1, 2016
849
1,474
Okay, I'm done with this game. It was fun, but it's too much grind, and then I run into stuff like this. I'm linking a Felicity day 120 save, she's grand champion, has all of the modifications, she's fully trained, I've done EVERYTHING that the quest tells me to, so unless that's written wrong, that quest is broken, and so is my save now, which means unless someone tells me how to fix that save beyond "start a new game" I'm done with this, because no matter what I do that fucking Spectre fucker won't take her. I tried cheat editing her and setting everything to max, including grand champion wins to 50 (note, I got them fair and square in the save, other than the money cheat I didn't even use training speed on her until I'd gotten all the skills the quest says you should have, then set training to 100 to see if there was something I was missing), or even activating every single fetish incase there's something not noted, nothing works.

Also incidentally, if you don't implement an option to capture and "train" Lord Spectre for this fuckery, I'm likewise probably done with this game. That guy needs to be sodomized to death as he's watching me dine on his roasted testicles.



Save is with 2.1 + Loli + Patrician mod, new save started with 2.1.
I did some testing, you are failing the quest on this part, you meet the other conditions. IF $slave["earrings"] ! '' and $slave["collar"] ! '' and $slave["headband"] ! '' and $slave["gloves"] ! '' and $slave["nipplerings"] = 'nipple_chain' and $slave["clitring"] ! '' and $slave["boots"] ! '' and $slave["ring_left"] ! '' and $slave["ring_right"] ! '' and $slave["naval"] = 'heavy_gauge_rings' and $slave["tongue"] = 'barbells':

If you want to be able to hand her in, change "Navel" piercing to Heavy Gauge Ring, and it will work. Nothing broken about the quest.

EDIT: Well, did not see the guide qwertyu12359 linked, kind of wasted 2+ hours of my time now. Quest works fine, it's not bugged, and it's not something that happened in 2.1 or something that I did/changed.
 
Last edited:

Sonsuka

Member
Aug 29, 2017
181
64
Probably should rephrase then. I'm pretty confused on getting the witchdoctor profession. I understand you need to have both Enchanter and Nurse. So lets say I want a D+ rank Witchdoctor wont I need to get the slave to D+ and then Enchanter and Nurse higher or equal to D+?
 

Zurrlock

Member
May 13, 2018
335
222
I did some testing, you are failing the quest on this part, you meet the other conditions. IF $slave["earrings"] ! '' and $slave["collar"] ! '' and $slave["headband"] ! '' and $slave["gloves"] ! '' and $slave["nipplerings"] = 'nipple_chain' and $slave["clitring"] ! '' and $slave["boots"] ! '' and $slave["ring_left"] ! '' and $slave["ring_right"] ! '' and $slave["naval"] = 'heavy_gauge_rings' and $slave["tongue"] = 'barbells':

If you want to be able to hand her in, change "Navel" piercing to Heavy Gauge Ring, and it will work. Nothing broken about the quest.

EDIT: Well, did not see the guide qwertyu12359 linked, kind of wasted 2+ hours of my time now. Quest works fine, it's not bugged, and it's not something that happened in 2.1 or something that I did/changed.
Gah, thank god. I thought the nipple chain + having the piercings themselves was the only thing that was missing. You just made my day (well night, really), thanks.

For the record, I still want to murder Lord Spectre in at least 8 different each more gruesome ways that I can think of.

Also incidentally, when I ran into my issues with the quest, I kinda took out my frustrations on the only available target... and found out that while the assassins come for you if you have her killed at home via "get rid of her" option, if you instead have the butcher do it and make her into dinner (Gastronomicon at least, possibly also if you have a Farm at home) they never realize it.
 
  • Like
Reactions: i107760

Zurrlock

Member
May 13, 2018
335
222
Also I'm not sure but I think there may be a bug with the Adverto Servili spell; I bought a new slave after finally handing in Felicity, a Beautiful + Intelligent loli who started out with B+ Sport & Fitness, I took her to remove scars, uncle bo and elven salon, went home and cast the spell (all of this in this order, didn't add rules or explain position or anything else), immediately her arousal increased from 0 to 5 and her energy recovered (I've seen this before and assumed it was supposed to happen) but her energy was now 5 instead of the 3 I was expecting, and she was suddenly S+ in Sport and Fitness instead of B+. There may be an issue in there that can under circumstances jack up Endurance to max as part of that max arousal + energy result.

Oh, and the presumably supposed to be very rare magical accident where she goes sexmad on you seem to happen a lot. That was actually how Felicity lost her virginity, and before her it had happened at least twice, but the weirdest was actually the day after I'd cast on the girl that maxed out above, or rather it didn't happen with her, it happened the day after to another slave entirely! I had another girl in cryo that I only bring out for gladiator matches (the white haired one in slot 2 in my save above in fact), when I bought her out without casting any spells on her or doing anything but removing her from the home cryo spell she started the sequence right away. Not sure if that and the instant S+ endurance could be linked... soul mates maybe, lol? Both slaves are white haired, one is just Mature and the other Loli... I haven't by any chance found a mother and daughter pair?
 

Zurrlock

Member
May 13, 2018
335
222
did you figure it out? i don't understand, she's obedient, mastered pet and horse, model physique, enduring, stylish and yet the dumb fucking cow at the public farm tells me she's "not as healthy as she should be". what the fuck. there's a hidden requirement or something that i can't see
Just guessing here, but does she lactate? I figure that may be important there. And beyond that, she may need to lactate until she becomes "dairy cow" level lactation.
 
  • Like
Reactions: anon89

i107760

Sistersitting / Housesitting Developer
Modder
Game Developer
Nov 1, 2016
849
1,474
qwertyu12359 I've found a solution for the cheat 'problem', rewriting a lot of stuff to do it now. Basically I'm going from:
Code:
master_fetish = 0
IF master_fetish_rate >= 10: master_fetish = 1
IF master_fetish_rate >= 20: master_fetish = 2
IF master_fetish_rate >= 40: master_fetish = 3
IF master_fetish_rate >= 80: master_fetish = 4
IF master_fetish_rate >= 120: master_fetish = 5
into:
Code:
master_fetish = 0
IF master_fetish_rate >= $master_fetish_rate_cap[0]: master_fetish = 1
IF master_fetish_rate >= $master_fetish_rate_cap[1]: master_fetish = 2
IF master_fetish_rate >= $master_fetish_rate_cap[2]: master_fetish = 3
IF master_fetish_rate >= $master_fetish_rate_cap[3]: master_fetish = 4
IF master_fetish_rate >= $master_fetish_rate_cap[4]: master_fetish = 5
where I define the caps in #var_base. I can then, for the cheat menu, make this all depend on said variables too, so we get for the cheat menu:
Code:
$setting_display_r += {<div id="under_gray"><a href ='EXEC: master_fetish_rate = $master_fetish_rate_cap[master_fetish - 2] & gt "menu_form"'><img src="content/pic/buttons/Minus.png"></a>}
$setting_display_r += $master_fetish[master_fetish]
$setting_display_r += {<a href ='EXEC: master_fetish_rate = $master_fetish_rate_cap[master_fetish] & gt "menu_form"'><img src="content/pic/buttons/Plus.png"></a><a href ='EXEC: master_fetish_rate = 180 & gt "menu_form"'><img src="content/pic/buttons/teach_s.png"></a></div>}
I'm almost done changing this all... So many lines of code to rewrite, but it works. And this is why things like those numbers should be variables, and not hardcoded.

EDIT: Starting on rewriting the cheat mod to this system now. I had to edit A LOT of lines, some in several places to get this to work. But at least it works, and now I can move on to getting the cheat mode to work this way. Going to take a while, and gonna take a break first.
 
Last edited:
  • Love
Reactions: qwertyu12359

overstrom

New Member
Jan 15, 2019
12
25
All slaves avatars are gone despite the game knows they are there but I just can't interactive the stats screen of slaves without their avatars,the only exception is Lizzy. It happens after the game loaded a 2.0 beta 2 save instead of 2.1 save.
 

chopeks

Newbie
Jul 24, 2018
21
34
All slaves avatars are gone despite the game knows they are there but I just can't interactive the stats screen of slaves without their avatars,the only exception is Lizzy. It happens after the game loaded a 2.0 beta 2 save instead of 2.1 save.
That's because 2.1 has lot less slaves, I believe old saves won't work
 
  • Like
Reactions: qwertyu12359

qwertyu12359

Jack-o-nine-tails
Game Developer
Aug 1, 2017
1,552
1,681
All slaves avatars are gone despite the game knows they are there but I just can't interactive the stats screen of slaves without their avatars,the only exception is Lizzy. It happens after the game loaded a 2.0 beta 2 save instead of 2.1 save.
As written in the wiki:

"Saves may not be compatible with different versions. You may try loading an old save by (ticking "ignore version check when loading" in the window, and) [hitting] "refresh database" in-game." (top right of the screen near the options).

However, that may not work, and you may encounter bugs. That's due to engine limitations, as crushboss argued a few years ago.
 
4.00 star(s) 58 Votes