Jump to content

Breast growth mod


Recommended Posts

Posted

I'd like a mod that in my mind sounds very simple, and if I had the time to learn making script mods, might be a place I'd start for practice. Here's the idea:

 

A script that runs regularly (daily, weekly, could be a user setting) that automatically adds a random number (again, probably based on a user setting) to every female teen sims' breast size. That way, flat-chested younger teens gradually develop breasts until they age up into young adults.

 

Alternatively, a script that simply increases breast size for every female as they age up into YA would work, too.

 

Could probably include the butt size in there to be thorough.

Posted

Other mods or the user (in CAS) could modify the default slider, so you might want to add a custom slider to your mod.
There should be either a user setting for the delay and the final size or it should be gathered based on the sim id.
With manual aging / infinite life span one may still prefer that the breasts to not grow forever. 


You could lookup python code within Push‑Up Bra while you likely don't need a menu initially.
You might set sliders via Custom Slider Framework, while I use my own code.


In case you want to use S4CL by ColonolNutty you can save a lot of effort. It supports logging, has a 'run_every' method and lets you iterate over all sims:

class Foo:
    @staticmethod
    @CommonIntervalEventRegistry.run_every(ModInfo.get_identity(), milliseconds=60 * 60 * 1000)
    def do_it():
        for sim in CommonSimUtils.get_all_sims_generator(include_sim_callback=None, allow_hidden_flags=ALL_HIDDEN_REASONS):
            sim_info: SimInfo = CommonSimUtils.get_sim_info(sim)
            if CommonAgeUtils.is_teen(sim_info):
                """ do whatever you want to do """
                sim_id: int = CommonSimUtils.get_sim_id(sim)
                max = ((sim_id % 800) + 200) / 1000  # range 0.200-0.999
                old = 0.3
                new = 0.35
                log.debug(f"Set slider from {old} to {new} for {sim_info}")

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