Mob_chara Posted December 31, 2025 Posted December 31, 2025 40 minutes ago, Tingyeu said: Does anyone have this mod? I've checked a few sites like GameBanana but no luck. https://mega.nz/file/uUxESLYD#qMMajbU8ET0SsxSzvJBM27U3R-aJBadufcg95gNtQPc 10
IncogACC Posted December 31, 2025 Posted December 31, 2025 I'm losing my fucking mind, they HATE the DX11 version I swear... I'm on a 9800x3d 5070TI build, there really isn't that much higher for me to go and yet even with everything other than LoD bias dropped to medium or lower, this build is still just a flickering, stuttering, screen tearing, buggy mess. In the midst of my unbridled rage, I can't help but wonder if Kuro are doing this on purpose. Sorry, I had to vent, I wanted to play the story today but instead spent hours tuning settings and changing drivers trying to solve 1 fucking issue among many to no success. 2
Tingyeu Posted December 31, 2025 Posted December 31, 2025 1 hour ago, Mob_chara said: https://mega.nz/file/uUxESLYD#qMMajbU8ET0SsxSzvJBM27U3R-aJBadufcg95gNtQPc Thank you so much! Earlier, when I saw that Mingchen’s Patreon got banned, I was afraid I’d never get my hands on this mod. Really appreciate you keeping it!
fuu3r Posted December 31, 2025 Posted December 31, 2025 does anyone here got a good mod for lynnae, lupa, and changli (no skin), the nsfw one
Kapootable Posted December 31, 2025 Posted December 31, 2025 Anyone help fixing this yinlin mod made by lull? Lost its blindfold and thigh belt in the latest 3.0 patch. Here's the original link. https://mega.nz/file/c2gCEBDQ#hhSlwNXEPfelD8Pn_t7MehDJb87lGQ7yXWRNruKhGjM 1
sshazoxt Posted December 31, 2025 Posted December 31, 2025 21 hours ago, ZehelEisheth said: Can someone help me? It seems a new problem has popped up for me… The mods weren’t working, but after adding: [ConsoleVariables] r.Streaming.UseAllMips=1 to the Engine.ini as “X” said, it was fixed. The next day the XXMI update came out and added: [ConsoleVariables] r.Streaming.UseAllMips=1 r.Kuro.SkeletalMesh.LODDistanceScale=24 r.Kuro.SkeletalMesh.LODDistanceScaleDeviceOffset=-50 r.Streaming.MinBoost=25.0 r.Streaming.PoolSize=0 r.Streaming.LimitPoolSizeToVRAM=0 Which made it so that now, when switching characters, the mod takes a while to load, and of course during a battle the mod barely even says “hi.” I tried deleting the text from Engine.ini, but the XXMI launcher keeps adding it again. Point 2: [ConsoleVariables] r.Streaming.UseAllMips=1 It fixes the mods, but it seems to break others like this: r.Streaming.UseAllMips=1 without the variable -- Okay, I found the problem with the 1-second delay in texture loading. I'm not a modder, but I am a programmer, and using VS Code's compiler, I was able to analyze the mod.ini file. I used a Danjin mod as a reference, which loads perfectly (link for reference: https://gamebanana.com/mods/563390). By using other mods that only partially load, I was able to infer the technique and replicate it in another mod (encore mod), and it loaded correctly. Since modding isn't my area of expertise, I'll leave exactly what the compiler told me (Cloud Sonnet 4). I hope it helps with future mod versions. ------------------------ Summary of the implemented technique: Dynamic Texture Remapping Problem identified: After the game patch, mods that use the standard texture system experience loading delays (~1 second), where the textures initially appear incorrect before loading correctly. Applied technique (based on Danjin): 1. Custom texture resources: ; Instead of just ResourceTexture0, ResourceTexture1, etc. [ResourceBodyMain] filename = Textures/Components-1 t=5395f197.dds [ResourceBodySecondary] filename = Textures/Components-1 t=c26d7da2.dds [ResourceClothing] filename = Textures/Components-1 t=d1df2ed7.dds 2. Dynamic remapping during rendering: ; Store backup of original texture slot ResourceTextureBackup = ref ps-t0 ; Set optimized body textures ps-t0 = ResourceBodyMain ps-t1 = ResourceBodySecondary ps-t2 = ResourceSharedNormals ; Draw component with correct textures drawindexed = 7134, 3, 0 ; Restore original texture ps-t0 = ref ResourceTextureBackup Key differences vs. standard system: Standard System (problematic) ----- Optimized System (Danjin) Textures automatically assigned by hash ---- Manual pre-assignment of specific textures One texture per slot throughout rendering ---- Dynamic texture switching per body part Dependent on game load timing ---- Full control over which texture is used when Why it works: Timing control: By pre-assigning specific textures before each drawindexed, we eliminate dependence on the game's automatic load system. Specificity: Each body part uses the exact texture it needs at the exact moment it needs it. Backup and restore: We avoid interfering with other components by maintaining the original texture state. Application in Encore: ✅ Component1 (main body): Dynamic reassignment implemented → Instant loading ✅ Component3 (legs/accessories): Left unmodified → Works flawlessly ⚠️ Other components: Not yet optimized, but not problematic To apply in other mods: Identify which textures each main component uses Create custom resources with descriptive names Implement dynamic reassignment only on components that handle large body parts Leave components that work well untouched Always use backup/restore to avoid conflicts This technique transforms an automatic loading system (prone to post-patch delays) into a controlled and deterministic loading system. 11
Apig Posted December 31, 2025 Posted December 31, 2025 43 minutes ago, sshazoxt said: Okay, I found the problem with the 1-second delay in texture loading. I'm not a modder, but I am a programmer, and using VS Code's compiler, I was able to analyze the mod.ini file. I used a Danjin mod as a reference, which loads perfectly (link for reference: https://gamebanana.com/mods/563390). By using other mods that only partially load, I was able to infer the technique and replicate it in another mod (encore mod), and it loaded correctly. Since modding isn't my area of expertise, I'll leave exactly what the compiler told me (Cloud Sonnet 4). I hope it helps with future mod versions. ------------------------ Summary of the implemented technique: Dynamic Texture Remapping Problem identified: After the game patch, mods that use the standard texture system experience loading delays (~1 second), where the textures initially appear incorrect before loading correctly. Applied technique (based on Danjin): 1. Custom texture resources: ; Instead of just ResourceTexture0, ResourceTexture1, etc. [ResourceBodyMain] filename = Textures/Components-1 t=5395f197.dds [ResourceBodySecondary] filename = Textures/Components-1 t=c26d7da2.dds [ResourceClothing] filename = Textures/Components-1 t=d1df2ed7.dds 2. Dynamic remapping during rendering: ; Store backup of original texture slot ResourceTextureBackup = ref ps-t0 ; Set optimized body textures ps-t0 = ResourceBodyMain ps-t1 = ResourceBodySecondary ps-t2 = ResourceSharedNormals ; Draw component with correct textures drawindexed = 7134, 3, 0 ; Restore original texture ps-t0 = ref ResourceTextureBackup Key differences vs. standard system: Standard System (problematic) ----- Optimized System (Danjin) Textures automatically assigned by hash ---- Manual pre-assignment of specific textures One texture per slot throughout rendering ---- Dynamic texture switching per body part Dependent on game load timing ---- Full control over which texture is used when Why it works: Timing control: By pre-assigning specific textures before each drawindexed, we eliminate dependence on the game's automatic load system. Specificity: Each body part uses the exact texture it needs at the exact moment it needs it. Backup and restore: We avoid interfering with other components by maintaining the original texture state. Application in Encore: ✅ Component1 (main body): Dynamic reassignment implemented → Instant loading ✅ Component3 (legs/accessories): Left unmodified → Works flawlessly ⚠️ Other components: Not yet optimized, but not problematic To apply in other mods: Identify which textures each main component uses Create custom resources with descriptive names Implement dynamic reassignment only on components that handle large body parts Leave components that work well untouched Always use backup/restore to avoid conflicts This technique transforms an automatic loading system (prone to post-patch delays) into a controlled and deterministic loading system. Works, thanks bro ! Btw, how to check which slot the resource uses ? I just test it one by one...
TwoW Posted December 31, 2025 Posted December 31, 2025 @IncogACCIs there a way to combine your edited mod to be useable with another? I've been using the Iuno mod by Anders until I saw the mod of your edited version for Yukata Iuno and want to use the clothes and hair as toggleable. Would you be willing to help with the ini?
sshazoxt Posted December 31, 2025 Posted December 31, 2025 51 minutes ago, Apig said: Works, thanks bro ! Btw, how to check which slot the resource uses ? I just test it one by one... Are you referring to which texture is used in each component? I also do it one by one, commenting out the drawindexes one by one until I reach the one I want visually by reloading the module in Wuwa (F10), or I look for the file included in the variable assigned to that component, or I rename a texture (by adding something to the beginning) and reload the model (F10). If it appears black (without a texture), then I know which DDS file is used in that component. Well, that's how I do it. Remember that I don't know much about modding; it's not my thing, but I'm a fan of mods (ThicC Mods XD).
iLars9912 Posted December 31, 2025 Posted December 31, 2025 All my mods are working perfectly, except for this one. I've tried every fix I could find, and nothing works. Yes, I tried Woju's fix, and it didn't work either. 1
Popular Post Vex_71 Posted January 1 Popular Post Posted January 1 11 hours ago, Vex_71 said: No worries, I'm working on it. I'll probably enter 2026 while undressing Wuwa girls... I'll post it here once it's ready. It’s finally ready. I’ve been working on this for over 12 hours and my brain has completely melted. So, if you encounter some silly bugs, I’m sorry for that, I couldn’t do proper testing. (hope that doesn't happen!) Excluded characters: Buling, Phoebe, Lynae and Skins. Since I don’t know how to use AI, I’m not planning to update this mod for future characters. Completely undressing characters is extremely difficult because the pieces are animated. Editing some important pieces causes the character portraits to break. Female Half Nude Splash Art 3.0.zip 39
Niimi23 Posted January 1 Posted January 1 6 minutes ago, Vex_71 said: It’s finally ready. I’ve been working on this for over 12 hours and my brain has completely melted. So, if you encounter some silly bugs, I’m sorry for that, I couldn’t do proper testing. (hope that doesn't happen!) Excluded characters: Buling, Phoebe, Lynae and Skins. Since I don’t know how to use AI, I’m not planning to update this mod for future characters. Completely undressing characters is extremely difficult because the pieces are animated. Editing some important pieces causes the character portraits to break. Female Half Nude Splash Art 3.0.zip 59.01 MB · 1 download wow man that very fast, thanks for ur hardwork, and happy new year🎉🎆 1
takudog1 Posted January 1 Posted January 1 1 hour ago, Vex_71 said: ついに完成した。12時間以上かけて取り組んでいて、頭が完全に溶けてしまいました。ですので、もし些細なバグに遭遇したら申し訳ありません。適切なテストができませんでした。(そうならないといいのですが!) 除外キャラクター:バリング、フィービー、リネイ、スキンズ。 AIの使い方がわからないので、今後のキャラクター向けにこのMODを更新する予定はありません。キャラクターを完全に脱がせるのは非常に難しいです。なぜなら、パーツはアニメーションだからです。重要な部分を編集するとキャラクターのポートレートが壊れてしまいます。 女性の半裸スプラッシュアート3.0.zip 59.01 MB · 1ダウンロード Wonderful. Thank you. 1
WrathX4 Posted January 1 Posted January 1 anyone has this lynae mod toggle version from moonson? anyone wanna be a hero? 2
Yabie Posted January 1 Posted January 1 11 hours ago, Mob_chara said: https://mega.nz/file/uUxESLYD#qMMajbU8ET0SsxSzvJBM27U3R-aJBadufcg95gNtQPc what is ←and→ for this mod , its not work for me
CrazDy Posted January 1 Posted January 1 For some reason Kuro decided to change Rover's eyes hash today. Good thing it's an old one so I just tried and it worked. Female Rover eyes hash: 52c18227
讚嘆歡愉 Posted January 1 Posted January 1 1 hour ago, WrathX4 said: 有人有 Moonson 出品的 Lynae Mod 切換版嗎?有人想當英雄嗎? 給你 但別說是我給的 monsoon-LynaeModToggle.zip 18
Satsuk Posted January 1 Posted January 1 Mod creators who release their mods and say "Don't NSFW mod this mod please uwu~~" Deserve it to be made NSFW. Literal retards. 10
Kazzuro Posted January 1 Posted January 1 (edited) can someone separate this 3 taihou hair mod that can use with any chisa mods? please. Chisa Taihou Bunny.rar Chisa Taihou new jersey casual.rar Chisa Taihou underwear.rar Edited January 1 by Kazzuro 5
asdungh3699 Posted January 1 Posted January 1 1 hour ago, Satsuk said: Mod creators who release their mods and say "Don't NSFW mod this mod please uwu~~" Deserve it to be made NSFW. Literal retards. Not all countries have legalized the pornography industry.
H e a p s Posted January 1 Posted January 1 Just now, asdungh3699 said: Not all countries have legalized the pornography industry. Which is a fine enough reason for the modder not to make it but to tell other people they can’t edit it is dumb af 4
RomCrim Posted January 1 Posted January 1 Anyone has the zani inverted nipples mods or cantarella or carlotta mods by Jelly / JR7 / Unknown7?
IncogACC Posted January 1 Posted January 1 11 hours ago, TwoW said: @IncogACCIs there a way to combine your edited mod to be useable with another? I've been using the Iuno mod by Anders until I saw the mod of your edited version for Yukata Iuno and want to use the clothes and hair as toggleable. Would you be willing to help with the ini? I don't know how to explain it well but it's very likely not possible via ini tweaks. There is technically a method that allows you to share components between mods, but it requires very specific conditions, mainly the parts you want to swap have to be draw under the same component. If that's the case, then you can swap between the 2 component blocks, but you won't be able to swap individual parts of the component. Blah blah blah a bunch of tech stuff, the best I can do is look and determine if it's possible or not. 1
emohaque Posted January 1 Posted January 1 4 hours ago, 讚嘆歡愉 said: 給你 但別說是我給的 monsoon-LynaeModToggle.zip 41.29 MB · 1 download 你好,可以問一下是否能分享 Monsoon 的 Mornye Mod 嗎?感謝英雄
muqiuxingyu Posted January 1 Posted January 1 (edited) could somebody tell why my mod characters have a dashed border and they are....blink?they also have ghost image...like pictures.Thanks I reload RabbitFX and there is no ghost image anymore.but i still don't know why my characters are have dashed and blink border.help!(*꒦ິ⌓꒦ີ) Edited January 1 by muqiuxingyu
Recommended Posts
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 accountSign in
Already have an account? Sign in here.
Sign In Now