Jump to content

Sexual Harassment: Unofficial KFT patch


Recommended Posts

Posted
1 hour ago, xspertone said:

 

An oddity occurred during a Violate followed immediately by an SH molest.  The character ended up having both handcuffs and a collar.  However, I was able to simply take them off with none of the normal RH dialogue.  I have not since been able to reproduce though.

 

Thank you for letting me know. In that case handcuffs and collar were put by violate i presume?

Posted (edited)

Hey, if I go through an attack (the animation of being hugged from behind, well, I created them) and the resistance fails, the harasser will always configure the DD plug for me, right?
I don't see it in any options in SH option like "Use DD plug" and I set the number of pieces for the device to a maximum of 2.
Well, I've actually been off this mod since I gave twistedtrebla the animation until your patch came out.
What exactly happened to SH in these 1+ years, maybe this is what SH did for the newly added Molest attacks module Hard coding?
I ask because my DD was stuck on 2.0 several years ago and turned off its options on all mods that contacted it.
2.0 will cause me to freeze when saving the game.
I don't think I will use RC8 or 9 now either.
Therefore, when the DD plug was put on my character for no reason, my first choice was to load the previous save.
If twistedtrebla comes back, I will talk to him about how to better contact KFT.
Just like the most obvious, Molest attacks animation, it is necessary to make branched versions of KFT's different MT animation devices.

Edited by kziitd
Posted
10 minutes ago, kziitd said:

Hey, if I go through an attack (the animation of being hugged from behind, well, I created them) and the resistance fails, the harasser will always configure the DD plug for me, right?
I don't see it in any options in SH option like "Use DD plug" and I set the number of pieces for the device to a maximum of 2.
Well, I've actually been off this mod since I gave twistedtrebla the animation until your patch came out.
What exactly happened to SH in these 1+ years, maybe this is what SH did for the newly added Molest attacks module Hard coding?

 

You right, i had to do some stop-gap since with this patch SH does not use DD it means we will be missing piercing and plugs. So for plugs i did the code below.

It means you have ~50% probability for 2 plugs if harasser adds any KFT devices on you, and ~35% one plug only and ~15% no plug. BUT if you are wearing chastity it will be safe, unless the belt will not be removed by harasser. This all could be changed to some other way but everyone prefers something else :) As you see it will never will use piercing in this implementation. BTW this may be fair cause KFT devices are easier to remove than DDs, so at-least you will end up with plugs

 

    if preferKFT
        KFT_Equip(mode,max)
        if !isPlayerWearingChastityBelt()
            if (DD_kw_ItemType_PlugVaginal != none) && (!PlayerREF.WornHasKeyword(DD_kw_ItemType_PlugVaginal)) && (Utility.RandomInt() <= 70)
                EquipRandomVaginaPlug()
            endif
            if (DD_kw_ItemType_PlugAnal != none) && (!PlayerREF.WornHasKeyword(DD_kw_ItemType_PlugAnal)) && (Utility.RandomInt() <= 70)
                EquipRandomAnalPlug()
            endif            
        endif
    else

 

 

 

 

Posted (edited)
20 minutes ago, awesomeSPAS said:

 

You right, i had to do some stop-gap since with this patch SH does not use DD it means we will be missing piercing and plugs. So for plugs i did the code below.

It means you have ~50% probability for 2 plugs if harasser adds any KFT devices on you, and ~35% one plug only and ~15% no plug. BUT if you are wearing chastity it will be safe, unless the belt will not be removed by harasser. This all could be changed to some other way but everyone prefers something else :) As you see it will never will use piercing in this implementation. BTW this may be fair cause KFT devices are easier to remove than DDs, so at-least you will end up with plugs

 

    if preferKFT
        KFT_Equip(mode,max)
        if !isPlayerWearingChastityBelt()
            if (DD_kw_ItemType_PlugVaginal != none) && (!PlayerREF.WornHasKeyword(DD_kw_ItemType_PlugVaginal)) && (Utility.RandomInt() <= 70)
                EquipRandomVaginaPlug()
            endif
            if (DD_kw_ItemType_PlugAnal != none) && (!PlayerREF.WornHasKeyword(DD_kw_ItemType_PlugAnal)) && (Utility.RandomInt() <= 70)
                EquipRandomAnalPlug()
            endif            
        endif
    else

 

 

 

 

IoI.
All right.
All I can say is that I will try my best to successfully resist Molest attacks!

Edited by kziitd
Posted
On 5/13/2024 at 3:14 PM, awesomeSPAS said:

Thank you for letting me know. In that case handcuffs and collar were put by violate i presume?

That's correct. Violate did this.

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...