Jump to content

[Project Zomboid] Being Female - Adding more complex Female Roleplay


Recommended Posts

Posted (edited)
23 hours ago, Blastik1 said:

Excellent edition.

 

I usually have to use the command console to give myself birth control pills so my character doesn't get pregnant from all the occult freaks she "accidentally" gets nobbed by...I will try this new infertile trait in my next run. The traits and professions really do make this mod more than just a "sex enabler", they flesh out the mod really well IMO.

 

There are still some interesting place-holders the options section...have you decided what to do with them yet?

 

Oh, and regarding the menstruation - The mod called "pomps items" already includes sanitary pads in singular and packet form, I don't know if they can be coded to work with this mod in the future, but I'm just letting you know that the models already exist.

I will definitely take a look into those models, do you mind sharing the link for that mod?
What options placeholder are you talking about?

Edited by Zikhad
Posted (edited)

Hi friends.

I've just uploaded a new version: 1.6.0.

This version introduces Condoms.

There is a chance of finding condoms and Condom Boxes in the world!

If you have condom in your inventory you will automatically use it, preventing any sperm into the womb, that condom will be turned into used condom afterwards (You also may find some used condoms in trash bins).

 

Hey @BlaBla012345, Can you help me with some more 3D models for the condoms and condom Box?, lol!

Edited by Zikhad
Posted
1 hour ago, Zikhad said:

I will definitely take a look into those models, do you mind sharing the link for that mod?
What options placeholder are you talking about?

He's probably talking about this mod :
Pomp's Items
but I don't remember seeing this kind of object there...

 

1 hour ago, Zikhad said:

Hi friends.

I've just uploaded a new version: 1.6.0.

This version introduces Condoms.

There is a chance of finding condoms and Condom Boxes in the world!

If you have condom in your inventory you will automatically use it, preventing any sperm into the womb, that condom will be turned into used condom afterwards (You also may find some used condoms in trash bins).

 

Hey @BlaBla012345, Can you help me with some more 3D models for the condoms and condom Box?, lol!

Sweet Lord...


If we're talking about a box, then the model will be done quickly, but you may have noticed that I'm not good at textures.


After that, if we're talking about a brand new model, then the model will also be done quickly, only the texture will be a little more complex if we add a semi-transparency (is it useful?).


And finally, if we're talking about a used model... this time it will take longer to do because it's more complex. And I'm not talking about the texture... yuck ! 😝

Posted (edited)

 

8 hours ago, Zikhad said:

I will definitely take a look into those models, do you mind sharing the link for that mod?
What options placeholder are you talking about?

Zik, the palceholders are from ZomboWin, not your mod...I sort of group them all together mentally because they are all part of the same system...my mistake!

 

The link BlaBla provided is the correct one. They are most definitely a part of the Pomps Items Mod.

 

Screenshot2024-11-04025554dd.png.4c36a3dec2df6ab336773d07444c2747.png

 

Screenshot2024-11-04073633ff.png.cbd6f6aba949ae08ab1bdef6a5534665.png

 

 

 

I don't have any packets/boxes of them on this save, but they come individually (like the picture) and in packs. The packs don't really need to be functional anyway, just the pads (found a packet, I knew I had one somewhere).

 

If somebody wants to have a look at the "Dildos!" mod and make them functional as well, the world would be a far better place! :D

 

https://steamcommunity.com/sharedfiles/filedetails/?id=3001250972

Edited by Blastik1
added another picture.
Posted
4 hours ago, Alterdufisch said:

When my character gets pregnant it beginns to lag very hard can someone help me please

Will continue to lag if you exit the game and open it again?

Posted
17 hours ago, BlaBla012345 said:

He's probably talking about this mod :
Pomp's Items
but I don't remember seeing this kind of object there...

 

Sweet Lord...


If we're talking about a box, then the model will be done quickly, but you may have noticed that I'm not good at textures.


After that, if we're talking about a brand new model, then the model will also be done quickly, only the texture will be a little more complex if we add a semi-transparency (is it useful?).


And finally, if we're talking about a used model... this time it will take longer to do because it's more complex. And I'm not talking about the texture... yuck ! 😝

I was able to create simple textures last time with the UV mapping tools.
I don't think we need any of the models to be semi transparent.

So, if you can help with the 3D Models, that would be awesome

Posted
17 hours ago, Zikhad said:

Will continue to lag if you exit the game and open it again?

Yes, it also it gets worse as the the pregnacy continius

sometimes it refuses to give birth it just goes back to 89 precent 

Posted
2 hours ago, Alterdufisch said:

Yes, it also it gets worse as the the pregnacy continius

sometimes it refuses to give birth it just goes back to 89 precent 

That is pointing to me something strange happening in the "Pregnancy" mod rather than my mod.
Can you start a new game, without my mod, and using the trait "Pregnant" of the Pregnancy mod? This way we can isolate the issue.

Posted
2 hours ago, Zikhad said:

That is pointing to me something strange happening in the "Pregnancy" mod rather than my mod.
Can you start a new game, without my mod, and using the trait "Pregnant" of the Pregnancy mod? This way we can isolate the issue.

It is not the pregnancy mod

 

Posted (edited)
5 hours ago, Alterdufisch said:

Yes, it also it gets worse as the the pregnacy continius

sometimes it refuses to give birth it just goes back to 89 precent 

How long is the pregnancy set to last?
One constraint is, the birth will ONLY happens if you exit the game and enter again,
This is a known limitation.

Now, in order for us to tackle the lagging, we need to isolate, because I'm not experiencing that lag, so if you can confirm the lag does not happen with the Pregnancy mod only, that can help me to isolate your issue

Edited by Zikhad
Posted (edited)
On 11/4/2024 at 11:52 AM, Alterdufisch said:

When my character gets pregnant it beginns to lag very hard can someone help me please

I had a similar problem when I was doing quick compatibility tests and if the debuff worked... I did this and placed it in the Pregnancy MOD script. it only forces the progress of the pregnancy. It could be an fps problem, too many mods, or the PC asking you to take a break. I must clarify that it happened to me during the pregnancy process, never during childbirth.
-- esto obliga el avance del progreso si este se congela
local function checkPregnancyProgress()
    local data = Pregnancy.data
    local currentProgress = data.PregnancyProgress
   
    local totalPregnancyDays = 270 
    local hoursPerDay = 24
    local percentPerDay = 1 / totalPregnancyDays 
    local checkIntervalHours = math.ceil((1 / percentPerDay) * hoursPerDay
   
    if data.LastCheckedProgress == nil then
        data.LastCheckedProgress = currentProgress
        data.LastCheckTime = getGameTime()
        print("Initial pregnancy check started. Current progress: " .. currentProgress)
    else
        local timePassed = getGameTime() - data.LastCheckTime
        if timePassed >= checkIntervalHours then  
            if currentProgress == data.LastCheckedProgress then
 
                data.PregnancyProgress = currentProgress + percentPerDay 
                print("Progress frozen. Forcing pregnancy progress to: " .. data.PregnancyProgress)
            else
                print("Pregnancy progress is advancing normally: " .. currentProgress)
            end
            data.LastCheckedProgress = currentProgress
            data.LastCheckTime = getGameTime()
        end
    end
end
 
I also did this to prevent progress from freezing in long games since I don't check the UI menu and it's hard to identify. So I had no way of knowing if I was moving forward.....anyway, my pj died in a shootout. ( idk why is this purple...)
Edited by Radaworm
Pregnancy script... afther ...Pregnancy MOD script
Posted
On 11/11/2024 at 7:16 AM, hlg80404 said:

hello, where can I find condoms please? thank you !

you can find used ones in the trash, but they usually come in boxes and found on pharmacies i think, it comes on the mod description 🤗

Posted
On 11/4/2024 at 8:02 PM, Zikhad said:

I was able to create simple textures last time with the UV mapping tools.
I don't think we need any of the models to be semi transparent.

So, if you can help with the 3D Models, that would be awesome

Hi, I finally made you the 3D objects of the condoms.


There are 3 objects :

 

  1. A simple box
  2. A condom in new packaging
  3. A used condom

For the used version I can't make a visually correct flattened object. 😒
So I hope this version will be enough.


Tell me if you need me to make any changes.

 

On the other hand, you will have to make the textures.

Let me know if you need help for the textures or anything else.


See you soon 🫡

Condoms.zip

Posted

It's a bit strange, I didn't find any condoms or other items in the pharmacy, and the trash can only contains garbage bags without anything else  (v1.6)

Posted

Sorry, to ask, but I was wondering,

why my female character seems to be on her period once every week?

I mean, yeah, in a viseo game, it kinda makes sense to increase speeds in general, but I haven't seen any option, to kinda fine tune it?

Actually, I'd love to set it to a regular "once-per-month" setting.

Any chance I can do this by myself?

Posted
14 minutes ago, SirDuke said:

Sorry, to ask, but I was wondering,

why my female character seems to be on her period once every week?

I mean, yeah, in a viseo game, it kinda makes sense to increase speeds in general, but I haven't seen any option, to kinda fine tune it?

Actually, I'd love to set it to a regular "once-per-month" setting.

Any chance I can do this by myself?

If you read the patch notes for the mod it does actually tell you that you can change it in the sandbox settings

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