Jump to content

[Project Zomboid] ZomboWin - A ZomboLewd Framework mod


Recommended Posts

Posted
4 hours ago, HatedReaper said:

How do I make the animations last longer? They're so quick to be honest.....

media/lua/shared/ZomboWin/AnimationConfigs/XXX.lua

You can set the duration in any animation you want on every animation lua you see, i also like to last a bit longer 🥰, in some animations too.
I hope this helps ❤️

Posted
On 6/21/2024 at 5:46 PM, Yonchi said:

As i did here, i found it more fun if i make also the BreathF file, so here you go its a bit more "exausting", or frenetic if you wanna call it that way 🤭
(If you have my modpack, remember to change the sounds on the xml to BreathF in the animations you want, i had them changed 😋)

Get fun loves!! mmuuuah~~ 💋❤️
BreathF.zip
 

  Reveal hidden contents

 

Can you please re-upload this? I can't seem to download it. It's just so good... Please?

Posted
12 hours ago, HatedReaper said:

How do I make the animations last longer? They're so quick to be honest.....

Go to Zomboid\mods\ZomboWin\media\lua\shared\ZomboWin\AnimationConfigs. Edit each animation of your choice by using notepad++ or notepad.

Posted
5 hours ago, Magenta147 said:

Go to Zomboid\mods\ZomboWin\media\lua\shared\ZomboWin\AnimationConfigs. Edit each animation of your choice by using notepad++ or notepad.

Perfect thats exactly what I wanted. Thank you so much!

Posted
On 6/22/2024 at 11:15 PM, Magenta147 said:

Go to Zomboid\mods\ZomboWin\media\lua\shared\ZomboWin\AnimationConfigs. Edit each animation of your choice by using notepad++ or notepad.

Thanks, I was also looking for this

 

Another question
there is an option in the mod that ignore skirt and dress
how can we add pants or other clothes to this option?

Posted
1 hour ago, legion army said:

Thanks, I was also looking for this

 

Another question
there is an option in the mod that ignore skirt and dress
how can we add pants or other clothes to this option?

there's a debug option that will simply ignore all clothes, called 'Skip the defeat the formalities' i think in the mod menu while ingame

Posted
44 minutes ago, bueir said:

there's a debug option that will simply ignore all clothes, called 'Skip the defeat the formalities' i think in the mod menu while ingame

Well, the problem is that 'debug option' removes all limits and it's not a good option if you use Superior Survivors mod

It can cause many errors and break your game most times

 

Apart from errors
Imagine male NPCs raping female zombies randomly in a zombie apocalypse😂

 

It would be much better if we could edit the 'ignore option' in some way.

Posted (edited)

About NPC Mods

 

Almost all of them have problems and buggy
But this one is better than others 
https://steamcommunity.com/sharedfiles/filedetails/?id=2821231605
Although it's old, it's still better than the new versions!
At least your companions don't disappear after loading a save!

 

But keep the spawn rate to minimum if your game is slow down
And don't add more than two or three NPC to your group, otherwise the NPCs may freeze some times

And don't forget to disable other NPC mods

 

Last but not least is PVP shooting problem
Most of those who had this problem, including myself, used the 'Advanced Trajectory' mod 

To fix this, go to sandbox options and enable ''Damage To Player''.

Edited by legion army
Posted (edited)
8 hours ago, legion army said:

Another question
there is an option in the mod that ignore skirt and dress
how can we add pants or other clothes to this option?

 

It's a little tricky, Go to Zomboid\mods\ZomboWinDefeat\media\lua\client\ZomboWinDefeat. Find and open ZomboWinDefeatZombieHandler.lua, find the line " ZombieHandler.CheckPartsInTheseOrder, ZombieHandler.CheckPartsInTheseOrderv2. ZombieHandler.CheckPartsSubmissiveTrue, ZombieHandler.CheckPartsSubmissiveFalse". Just add/remove all skirt and dress of your liking, also make a backup first, in case you want to revert it.

Edited by Magenta147
Posted

Is there a relatively quick and easy way to just apply hetero animations to female on female interactions?

Playing a female character, it's kind of annoying that half of the zeds try to eat you while the othe half try to fuck you. Looking at the code, it seems the author just threw in a default return statement at the start if the player and zed are both female, so no processing at all. I assume that's because there are no lesbian animations available.

So it would be nice if I could just, I don't know, roleplay that all the female zeds turn into futanari or something to get them in on the action as well.

I tried commenting out that one line here in "ZomboWinDefeatZombieHandler.lua" but nothing happened.
 

--- Only straight zombie sex for now
			if isMainHeroFemale == zombieIsFemale then clearAnim(target); --[[print("MarkMarkMark");]] return; end


I can read code, it's just that there aren't a lot of comments explaining what's going on and I'm still having trouble figuring it out.

Any pointers or advice would be greatly appreciated.

Posted

Is it possible to add animations for Zombie x Zombie for added immersion? like if a survivor just died/got fucked. and in games like anthophobia where you can see zombies having sex with deceased survivors in the background 

Posted
15 hours ago, Magenta147 said:

It's a little tricky, Go to Zomboid\mods\ZomboWinDefeat\media\lua\client\ZomboWinDefeat. Find and open ZomboWinDefeatZombieHandler.lua, find the line " ZombieHandler.CheckPartsInTheseOrder, ZombieHandler.CheckPartsInTheseOrderv2. ZombieHandler.CheckPartsSubmissiveTrue, ZombieHandler.CheckPartsSubmissiveFalse". Just add/remove all skirt and dress of your liking, also make a backup first, in case you want to revert it.

That's what I'm talking about
Thanks again.

Posted
13 hours ago, kurikinton said:

Is there a relatively quick and easy way to just apply hetero animations to female on female interactions?

Playing a female character, it's kind of annoying that half of the zeds try to eat you while the othe half try to fuck you. Looking at the code, it seems the author just threw in a default return statement at the start if the player and zed are both female, so no processing at all. I assume that's because there are no lesbian animations available.

So it would be nice if I could just, I don't know, roleplay that all the female zeds turn into futanari or something to get them in on the action as well.

I tried commenting out that one line here in "ZomboWinDefeatZombieHandler.lua" but nothing happened.
 

--- Only straight zombie sex for now
			if isMainHeroFemale == zombieIsFemale then clearAnim(target); --[[print("MarkMarkMark");]] return; end


I can read code, it's just that there aren't a lot of comments explaining what's going on and I'm still having trouble figuring it out.

Any pointers or advice would be greatly appreciated.

yea i think it is possible, just where clearAnim(target); is just put playAnim(target); make sure that the function exists and that should be fine

Posted
4 hours ago, Yonchi said:

yea i think it is possible, just where clearAnim(target); is just put playAnim(target); make sure that the function exists and that should be fine

your files are really good quality.. is it your voice or are you using some software ?

Posted

Hi Guys!!

 

Love the Mod x Well done Solar for all yous work x

 

Changed the game for me :) So I share this with you x

 

Did you know? with a little bit of work you can get Variable Skin Big Bust to be regular female body?

It means ALL the zombies have big bust too :( and some clothing (AND BAGS) clips alot.

 

BUT!! ALL underwear (modded too) becomes available for Big Bust!

 

Looks GREAT! PLUS you can layer up them titties for when them Zomboids surely come ripping them off :)

 

 

Girls+.jpg

Posted
2 hours ago, bueir said:

your files are really good quality.. is it your voice or are you using some software ?

what software can i use to moan? for me i use Realtek Audio if you are interested 🤭

Thanks for the compliment lovee 🥰😘

Posted (edited)

I don't know if you're using the zombie sounds from the base game or if you're using, like me, the sounds from this pack

The Last of Us : Sounds of Infected [UPDATE 41.78]


In any case, I find that our friend Yonchi's moans are too low in volume.
I took care to resample all of the files by increasing the sound volume.
Here is the result.

BreathF_louder.zip


Hoping this is useful to someone.

OBSOLETE See the thread in my signature for an updated version

BreathF_louder.zip

Edited by blabla012345
Posted (edited)

In my opinion, eroticism involves a global stimulation of the senses.
Thus, if we hear other couples making love then the sense of hearing is a factor which allows a banal environment to be imbued with eroticism.


Here is a first version of this mod
Reactive Sound Events
which I have increased by several sounds... let's say: which stimulates the imagination.

 

Basically I modified 2 files and added sound files.
This mod is not my work, I absolutely don't know how to code.
All credits go to the original author.
Do not re-upload this mod on Steam as this would be considered theft or plagiarism. If you do so, do so at your own risk.

 

I'm posting this here to get initial feedback from those who want to test it and give me their impression and what needs to be changed, improved or otherwise.


If this project receives a good reception then I will create a dedicated discussion thread.

 

To install, simply subscribe to the original mod on Steam and paste this entire zip archive in its place.
I noted the number in the name of the zip to easily find the location of the mod in the directory
...\steamapps\workshop\content\108600

 

Reactive Sound Events (2969551071).zip

 

Link removed.
The new version and its future updates can be found on my dedicated discussion thread : link in signature of this post.

Edited by BlaBla012345
Posted
6 hours ago, blabla012345 said:

I don't know if you're using the zombie sounds from the base game or if you're using, like me, the sounds from this pack

The Last of Us : Sounds of Infected [UPDATE 41.78]


In any case, I find that our friend Yonchi's moans are too low in volume.
I took care to resample all of the files by increasing the sound volume.
Here is the result.

BreathF_louder.zip


Hoping this is useful to someone.

BreathF_louder.zip 492.19 kB · 1 download

Ooh thank you sm for the upgrade, for me was in high volume i think just for my headphones but thank you so much sweet 💖

Posted
On 6/13/2024 at 12:17 AM, twentytwoturtles said:

made some random animations, not really refined but decent enough. if anyone wants the blend files say so and i could upload them later on

media.zip 2.22 MB · 11 downloads

 

very very well done, would love to see more from you :3 this added some much needed novelty to playing with the mod

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
×
×
  • Create New...