Create and Fuck your AI Slut -70% OFF
x

DreagenCode

Member
Jun 4, 2025
248
104
43
now it works! cheers!
That's good to hear.

If you haven't played the vanilla version of this game, then you won't know how much of the game mechanics have been affected.

But for the sake of mentioning it.

Friendly fire is on.

You will only notice it once they are tamed in your village and outposts.
 

HRF94

Member
Oct 13, 2023
144
86
103
That's good to hear.

If you haven't played the vanilla version of this game, then you won't know how much of the game mechanics have been affected.

But for the sake of mentioning it.

Friendly fire is on.

You will only notice it once they are tamed in your village and outposts.
my save has around 70h ;)
hence me wanting to mod it a bit...

not sure that one is what I'm looking for yet, was expecting options (the whole f1 thing), but I'll figure it out from here :)
 

DreagenCode

Member
Jun 4, 2025
248
104
43
my save has around 70h ;)
hence me wanting to mod it a bit...

not sure that one is what I'm looking for yet, was expecting options (the whole f1 thing), but I'll figure it out from here :)
Ah okay, well there is a mix of mods that someone posted and some of them are F1 and other are just a perm add in mod.

The mod you're trying in my experience of me trying it up to 10 hours from starting from the beginning to my current progress is... kind of has weird balance. And I'm going to test the game-breaking bit I've noticed.
 

DiamondTits

Newbie
Jan 10, 2018
35
16
193
how do i get sex animation with Kana after resurrecting Lulu. i have done BJ scene with Lulu but there seems no sex option with Kana even after raising the affection level with her. what am i missing
 

Undeadjesus

Newbie
Aug 10, 2024
18
21
62
how do i get sex animation with Kana after resurrecting Lulu. i have done BJ scene with Lulu but there seems no sex option with Kana even after raising the affection level with her. what am i missing
Probably need to complete her quest line. Look for quest markers on the map you haven't done, the first sex scene with her will be in the little house she builds. You can get to it through the mine that has gold in it.
 
  • Like
Reactions: DiamondTits

HRF94

Member
Oct 13, 2023
144
86
103
Ah okay, well there is a mix of mods that someone posted and some of them are F1 and other are just a perm add in mod.

The mod you're trying in my experience of me trying it up to 10 hours from starting from the beginning to my current progress is... kind of has weird balance. And I'm going to test the game-breaking bit I've noticed.
well, it is c#, so if/when I find something I don't like, I can just remove it completely :3
 

DreagenCode

Member
Jun 4, 2025
248
104
43
well, it is c#, so if/when I find something I don't like, I can just remove it completely :3
Nice. I have to wing it to edit codes.

Can you run a test with stun weapons?

I suspect it's my mods conflicting, but I would like you to test the:
  • chaos heart staff,
  • heart staff
  • iron club
  • wooden club
  • stun arrows
  • any other stun weapons.

Let me know what you find.
 

Valecordia

Member
Dec 12, 2019
190
149
199
well, it is c#, so if/when I find something I don't like, I can just remove it completely :3
Nice. I have to wing it to edit codes.

Can you run a test with stun weapons?

I suspect it's my mods conflicting, but I would like you to test the:
  • chaos heart staff,
  • heart staff
  • iron club
  • wooden club
  • stun arrows
  • any other stun weapons.

Let me know what you find.
Don't forget about the Debug staff as well.
 

HRF94

Member
Oct 13, 2023
144
86
103
Nice. I have to wing it to edit codes.
bepinex patches are standalone pieces of code. with dnspy, as long as you can locate what you don't want changed, you can just remove the whole block and recompile the dll.
with the stundmg-block below, you could just remove the whole function and everything should work as before

Can you run a test with stun weapons?

I suspect it's my mods conflicting, but I would like you to test the:
  • chaos heart staff,
  • heart staff
  • iron club
  • wooden club
  • stun arrows
  • any other stun weapons.

Let me know what you find.
will take some time before I can test ingame, but from looking at the code (and my brain won't let me understand a lot of it right now), you should do more stun dmg, but not as much as an npc with the same weapon
Code:
    bool flag = damageRate > 0f;
    if (flag)
    {
        float num = Mathf.Ceil(Mathf.Abs((float)(__instance.maxFaint - __instance.faint)) / 2f);
        damageRate *= ((attacker.npcID <= 1) ? 1.5f : 2f);
        bool flag2 = Random.Range(0f, (float)__instance.maxFaint) < num;
        if (flag2)
        {
            damageRate *= 1.5f;
        }
        damageRate = Mathf.Ceil(damageRate);
    }
which, Iirc (big I) feeds a higher value into public void StunDamage(CommonStates attacker, float damageRate, bool grapple = false)

I have to admit, I have absolutely no clue what the thing with num and flag2 does... or why it's floats everywhere, but everything has a mathf.ceil()...
 
Last edited:

DreagenCode

Member
Jun 4, 2025
248
104
43
bepinex patches are standalone pieces of code. with dnspy, as long as you can locate what you don't want changed, you can just remove the whole block and recompile the dll.
with the stundmg-block below, you could just remove the whole function and everything should work as before
I'll keep that in mind.

will take some time before I can test ingame, but from looking at the code (and my brain won't let me understand a lot of it right now), you should do more stun dmg, but not as much as an npc with the same weapon
Code:
    bool flag = damageRate > 0f;
    if (flag)
    {
        float num = Mathf.Ceil(Mathf.Abs((float)(__instance.maxFaint - __instance.faint)) / 2f);
        damageRate *= ((attacker.npcID <= 1) ? 1.5f : 2f);
        bool flag2 = Random.Range(0f, (float)__instance.maxFaint) < num;
        if (flag2)
        {
            damageRate *= 1.5f;
        }
        damageRate = Mathf.Ceil(damageRate);
    }
which, Iirc (big I) feeds a higher value into public void StunDamage(CommonStates attacker, float damageRate, bool grapple = false)

I have to admit, I have absolutely no clue what the thing with num and flag2 does... or why it's floats everywhere, but everything has a mathf.ceil()...
Yeah, this went over my head as well.

I'm just wanting to know if isolated to this patch or the interaction of the other mods that shouldn't interact with it.
 

beefenstein

Member
Jan 29, 2019
260
178
174
But then, this game can be buggy, so maybe that is whats happening
Yeah, wouldn't be the first bug.


Enclose them with the medium Wooden Fence (the one used for taming medium animals/monsters).
I guess I'll have to try that next. I have a feeling that might not work in the long run since the game unloads map cells from memory once you get far enough from them and then reloads them when you return, so there's a chance the NPC will "escape" through the game depositing them outside the fence at cell reload. But it's definitely worth a shot.
 

DreagenCode

Member
Jun 4, 2025
248
104
43
This man's asking the relevant questions here and getting ignored. Also, can you impregnate them?
There's no specific context from reading the two posts to form a proper question in order to answer the question. Try asking again.

Likewise, what is the specific context of your question?

I like to put it bluntly, I don't pretend to read minds. So I will ask people to ask better questions.
 

beefenstein

Member
Jan 29, 2019
260
178
174
NPC from the workshop
There's no specific context from reading the two posts to form a proper question in order to answer the question. Try asking again.

Likewise, what is the specific context of your question?

I like to put it bluntly, I don't pretend to read minds. So I will ask people to ask better questions.
Nobody's expecting you to be a mind reader. Here's a small usage tip: There's a small arrow above quotes that gets you to the full comment being quoted when you click it. It's good etiquette to not quote long comments in their entirety because that's just spammy.
 

Valecordia

Member
Dec 12, 2019
190
149
199
This man's asking the most relevant of questions here and getting ignored by everyone. Also, can you impregnate them?
Sorry I was actually testing the NPC mods and it flew over my head to actually give reports on it. It's a big fat no; no sex animations whatsoever regardless if summoned as friendly or as enemies. That also means no impregnation which is a shame.

does anyone have a step by step tutorial on how to download the cheats mod? i have no clue why i cant find plugins in bepinex
Once Bepinex is extracted launch the game once; it will create the necessary files and folders including the plugin folder.
Quit the game and copy the cheats/mods that you have and paste the files into their respective folder such as [Mods] or [Plugins].
 

Lansser

Member
Apr 6, 2018
167
707
227
This man's asking the most relevant of questions here and getting ignored by everyone. Also, can you impregnate them?
No one ignored it; this question has already been answered. Steamworkshop NPCs don't have sex animations, which isn't surprising—you can get banned for that on Steam. They're just a pretty texture with cheat stats that follows you around. But if you have Unity skills, you can try adding animations to them.

By the way, the R key now works on Yona, but only in raid mode. I hope the developers will add this feature to other heroines in the future.
 

HRF94

Member
Oct 13, 2023
144
86
103
I'm just wanting to know if isolated to this patch or the interaction of the other mods that shouldn't interact with it.
you mean the extreme values when doing an f-attack?

/edit:
I spoke too soon as to how easy it is to change, there's a dependency I can't find (NullableContext)
 
Last edited:
4.50 star(s) 112 Votes