Dittymyman

Member
Feb 23, 2019
135
716
201
You don't have permission to view the spoiler content. Log in or register now.
click on the eyeball on the skeleton to unhide it, then select on one of the ik bones, then select the the translate button(the one that looks like a compass above laura's head in the screenshot), and maybe profit?
 
  • Thinking Face
Reactions: salscou

zeranta

Member
Apr 23, 2023
287
261
172
How do you train anal for the girls ? I get Rogue to wear S size but plug but now she can only take XS. All girls can take XS.
Sometime I get have anal sex intensity 2-1. But if I chose it again they would likely go back to intensity 1. Even after anal sex, they would still take XS only.
 

NexivSelecaf

Engaged Member
Aug 25, 2017
2,261
9,927
747
Does not work for me, just saying
Yeah, I don't know why the ASCII art isn't displaying correctly. It looks fine when I copy and paste it from Steam directly, but the kerning is all wrong when I paste it into the text save files.

Other than that, my save should be working as intended.

You don't have permission to view the spoiler content. Log in or register now.
 

ronchonbon

Member
Game Developer
Jul 18, 2019
147
1,676
206
The code has changed since I've posted that.

./base/clothing.rpy:31
Code:
define public_shame_multiplier = 4.0
define exercise_shame_multiplier = 2.5
define private_shame_multiplier = 0.4
./base/clothing.rpy:509 (one of many)
Code:
                        if flag in ["public", "date"]:
                            if approval_check(self.Owner, threshold = public_shame_multiplier*hypothetical_Outfit.shame):
                                proceed = True
                        elif flag in ["exercise", "swim"]:
                            if approval_check(self.Owner, threshold = exercise_shame_multiplier*hypothetical_Outfit.shame):
                                proceed = True
                        elif approval_check(self.Owner, threshold = private_shame_multiplier*hypothetical_Outfit.shame):
                            proceed = True
./mechanics/approval.rpy:15
Code:
    def approval_check(Character, flavor = None, threshold = None, extra_condition = None, multiplier = 1.0, not_found_value = (0, 0)):
        if not isinstance(Character, CompanionClass):
            return 0

        if flavor is None:
            value = Character.love + Character.trust
./mechanics/approval.rpy:51
Code:
        elif isinstance(threshold, float) or isinstance(threshold, int):
            if value + 0.0*abs(renpy.random.gauss(0, stat_sigma)) < multiplier*threshold:
                return False
So:
if
love + trust + (0.0 * abs(renpy.random.gauss(0, stat_sigma)))
(don't know why that last part is there. 0.0 times anything is still zero. Programming language math still follow PEMDAS. ShinyBoots1993 , might want to point that out to ronchonbon . It won't affect anything unless renpy's random number generator is costly, which sometimes is the case, but it's better to not have these calculations if possible.)

is less than

shame_type_multiplier * outfit_shame

the outfit is rejected.

If you remember your inequality math, the equation is pretty much the same.
love + trust < multiplier * outfit_shame
If you divide both sides by the multiplier, you need to change the direction of the inequality.
(love + trust) / multiplier > outfit_shame
And 1/4 (1 / public shame multiplier) = 0.25 and 1/2.5 (1 / exercise shame multiplier) is the same as 4/10 which 0.4.


This has been your reminder to thank your high school math teacher.
isn't it pretty obvious that it's a placeholder in case I ever want to implement stochastic approval checks?
 
  • Like
Reactions: ddtmm

salscou

Engaged Member
Apr 14, 2020
3,682
17,173
678
click on the eyeball on the skeleton to unhide it, then select on one of the ik bones, then select the the translate button(the one that looks like a compass above laura's head in the screenshot), and maybe profit?
Good news is i got her to do a T-pose to refelect her dominance, the rest im too tired to figure out today.
just crawled out of the test tube.png
Now i do actually feel like a creep at Weapon X.
 
4.60 star(s) 155 Votes