Jump to content

Recommended Posts

Posted
On 8/26/2026 at 8:28 PM, lukaskalho123 said:

I cant make the lubed items work (right click on it or the character do not show options to use it), maybe im doing it wrong, but this is very well made, easy to config, immersive and it blends well with bandit mod, im having a great time.

Its early access feature only. for Patreon members, it will be released around ~1.3 version for the mod

On 8/28/2026 at 5:15 PM, Katgirl19 said:

does this mod work well with tomb body?

yes

 

On 9/2/2026 at 6:06 AM, MediocreMelody said:

Amazing mod, one mod I'm now looking for is a way to tweak the zombie gender ratio. Something to make it 70% male, 30% female. It gets a little silly sometimes when my survivor gets gangbanged by a group of 5 female zombies with not a male in sight.

if you find such mod let me know

 

On 8/27/2026 at 1:31 AM, levyEntity2008 said:

hey can you make the mini game compatible with the controller ? 

later on i will check it out, if i can make it happen

 

On 8/21/2026 at 9:35 PM, Richos said:

This mod is pretty good... I can't wait for more content, like animations or events where the player gets taken to a zombie lair.

im not animator so expect animations to be rough, but few more are on their way

Posted
55 minutes ago, Doomtero said:
On 9/2/2026 at 4:06 AM, MediocreMelody said:

Amazing mod, one mod I'm now looking for is a way to tweak the zombie gender ratio. Something to make it 70% male, 30% female. It gets a little silly sometimes when my survivor gets gangbanged by a group of 5 female zombies with not a male in sight.

if you find such mod let me know

The School's Out mod on workshop has options for setting gender ratio of some spawns I think?

Posted
4 hours ago, sk1133 said:

The School's Out mod on workshop has options for setting gender ratio of some spawns I think?

 

Yes, it allows you to adjust the gender spawn ratio of zombies spawned inside schools. I'm a little surprised that nobody's made a general use gender adjustment mod. From what I understand it's not an especially complicated part of the game's code.

Posted (edited)
3 hours ago, SexDwarf2250 said:

Will this mod allow you to fuck hostile bandits?

yes, you can try to push them on the ground and if you have rope and duct tape you can subdue them. or just give up to them 

Edited by Doomtero
Posted

Hi, I managed to get the penis from Drepaved Sense and the bodies from ZomboLust Lewd Models working with ZomboRut. I wanted to share my method with you, as I think it could interest a lot of people. You will also get the body deformation for pregnant women.
I want to clarify that this method is a quick fix, but I think it's possible to use ZomboRut's events for more automation (maybe I'll look into that later).

1️⃣ Install ZomboLust Lewd Models
2️⃣ Install Tomb's Player Body Overhaul patch

  • Delete the file "Zomboid\mods\tomb-depravedsense-patch\tomb-depravedsense-patch\common\media\models_X\Skinned\FemaleBody.fbx" (the patch is bugged for female bodies and we will use something else for female body deformation).
  • Edit the file "Zomboid\mods\tomb-depravedsense-patch\tomb-depravedsense-patch\common\mod.info"
    name=Tomb's Body Depraved Sense Patch
    id=tomb_depraved_patch
    
    description=A Simple patch of Tomb's body model for DepravedSense.
    
    versionMin=42.0
    modversion=1.0.0
    author=Timerz
    
    require=depraved_sense_nsfw,ZomboLustLewdModels
    

3️⃣ Install Depraved Sense

  • Edit the file "Zomboid\mods\pz-depravedsense-nsfw-main\42\media\lua\client\DepravedSense\DepravedContext.lua"
    ---@author Timers 2025 (edit for toggle libido)
    
    local DepravedData = require("DepravedSense/Utils/DepravedData")
    local ConditionVars = require("DepravedSense/Constants/ConditionVars")
    
    local ISWorldObjectContextMenu = ISWorldObjectContextMenu
    
    ---@param player_num integer
    ---@param context ISContextMenu
    ---@param world_objects IsoObject[]
    local function on_player_selected(player_num, context, world_objects, _)
        if #world_objects == 0 then return end
    
        local current_player = getSpecificPlayer(player_num)
        if current_player:isFemale() then return end
    
        local current_player_id = DepravedData.get_online_id(current_player)
        local selected_square = world_objects[1]:getSquare()
        local sqr_x = selected_square:getX()
        local sqr_y = selected_square:getY()
        local sqr_z = selected_square:getZ()
    
        local selected_self = false
        for search_x = -1, 1 do
            for search_y = -1, 1 do
                local square = getCell():getGridSquare(sqr_x + search_x, sqr_y + search_y, sqr_z)
                if square then
                    local objects = square:getMovingObjects()
                    for object_index = 0, objects:size() - 1 do
                        local object = objects:get(object_index)
                        if instanceof(object, "IsoPlayer") and not instanceof(object, "IsoAnimal") then ---@cast object IsoPlayer
                            local player_id = DepravedData.get_online_id(object)
                            if current_player_id == player_id then
                                selected_self = true
                                break
                            end
                        end
                    end
                end
            end
        end
        if not selected_self then return end
    
        ---@param player IsoPlayer
        local toggle_libido = function(player)
            local current_state = player:getVariable(ConditionVars.GenitalState)
            local libido = DepravedData.get_libido(current_player)
            if libido < SandboxVars.DepravedSense.LibidoNeededSelfPleasure then
                DepravedData.add_libido(player, 1.0)
            else
                DepravedData.sub_libido(player, libido)
            end
        end
        local option_pleasure = context:addOption("Toggle Libido", current_player, toggle_libido)
        option_pleasure.iconTexture = getTexture("media/textures/DepravedSense/DepravedIconSmall.png")
    end
    
    Events.OnFillWorldObjectContextMenu.Add(on_player_selected)
  • Remove this line if you want to play a futa.
    if current_player:isFemale() then return end
  • Now you can trigger an erection with the right click menu Toggle Libido during ZomboRut sex scenes.

4️⃣ Install Project Thiccener - PZ realistic body shapes

  • In the sandbox settings enable the possibility of modifying the shape of bodies in game.
  • Depraved Sense modify the mesh of male bodies, so Project Thiccener only works for female bodies.
  • Now you can use the Project Thiccener menu to add breast and belly inflation during pregnancy.

5️⃣ Install ZomboRut and Being Female
 

Mod list order

Capture-d-ecran-2026-09-17-202046.png


Why use ZomboLust Lewd Models instead of Trice Body [B42]?
Timerz the creator of the Depraved Sense mod, made a functional patch for the Trice Body [B42] body. This means we could technically achieve better-looking belly inflation for pregnancy, or even use Being Female events to automate it. So why didn't I use it? For several reasons:

  • ZomboLust Lewd Models is based on the Tomb's Player Body Overhaul mod, so there are many outfit mods on the Steam Workshop that are compatible.
  • ZomboLust Lewd Models is objectively better made, the female body mesh is smoother, and the face is prettier. Furthermore, BlaBla has added even more lewd details, such as the vulva or nipples.
  • With Project Thiccener you can get a body shape that suits you, whereas with Trice Body [B42] you are limited to the shape the creator designed.
  • With Project Thiccener female zombies will have randomized bodies, whereas with Trice Body [B42] they will all share the same body shape as your female character.
  • With Project Thiccener you can inflate the belly and the breasts during pregnancy, whereas with Depraved Sense is limited to the belly.
Posted

So, I gotta ask

Can we get an option to remove the stupid "player so aroused they're nolonger capable of literally any actions anymore" thing?

Because it's ridiculous, a moodle ticks up and suddenly I can't so much as pick an item up? Seriously?

 

This is currently the most feature containing of the zomboid mods but that is just absolutely ridiculous and the options for changing arousal penalties don't seem to allow me to turn off that specific bit of nonsense.

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...