Unofficial mod updates

littleredli

Greenhorn
Hey! I'm playing with Polyamory Sweet and only want to have children with specific spouses. I used Planned Parenthood in the past, but it hasn't been updated for 1.6 so it's no longer working. I've tried Adjust Baby Chance, but even with the config set to 100% chance of asking for a baby, no question appears after I go to bed.
So, does anyone know if there's another mod I can use, if an unofficial update for PP is in the works, or if another mod that accomplishes this is in development? I could use console commands I guess, but I'm not sure how that would work with multiple spouses.
 

Jessksch

Farmhand
I need help updating my mods :( one replaces Harvey as "Albert" with his own sprites and profile, please help! :( It seems at 1.6 the sprites and profile still work, but he is named "Harvey" again :( I am by no means a professional but it was a personal choice to change the character and could really use the help to update to 1.6, thank you!
 

Attachments

huancz

Farmhand
Another unofficial update to EnergyTime mod
EnergyTime mod was not listed as broken because it doesn't error on startup, but has serious breakage during gameplay because it tries to reference getter that game doesn't provide anymore (time skip button skips huge loads of time, and calico desert is straight broken, requires Alt-F4 to get out of softlock).

Here's unofficial update to make it work as indented.

Link to pr branch (not real PR, original hosted on gitlab instead of github): https://github.com/huancz/EnergyTime/tree/for-pr
New unofficial update - previous version didn't move time forward in Skull cavern (and any other location that has slower than normal passage of time.

Thanks to @Blackwigg for reporting the problem, and testing the fix.
 

Attachments

ninja525

Newcomer
Hello all. Does anyone know of any updates on the NPC adventures mod for 1.6? I recognize it’s a big lift, just hoping for good news
 

LooneyLuny

Cowpoke
Requesting an unofficial update to this mod. („• ᴗ •„) Looks like the creator hasn't made mods or responded to comments in a long time. I tried looking into how to update it myself but I didn't understand the process at all. @.@ It is open source, the link is on the mod page below.

Mini Bars
 

Blossom5280

Greenhorn
if anyone is willing to anyone mind updating instant pets and farm cave?


i just wanna use it so i can get my Pomeranian quicker ;-;
 

mayuu

Greenhorn
hi, so i tried converting this sleeves mod into fashion sense but i can't get the white cuffs sleeves to work, the white cuffs merge with the whole sleeve when the sleebe changing color and it's not supposed to do that so if anyone could help me, im also linking the white recolors i did in case that helps
 

Attachments

LooneyLuny

Cowpoke
hi, so i tried converting this sleeves mod into fashion sense but i can't get the white cuffs sleeves to work, the white cuffs merge with the whole sleeve when the sleebe changing color and it's not supposed to do that so if anyone could help me, im also linking the white recolors i did in case that helps
I think I see the problem. To keep one color unchanged you have to specify the other changeable colors in the json. For example, this is the text I used for the sleeves on my Dawn's Florist Gown pack to make the upper and lower sections separately colorable:
Code:
          "ColorMaskLayers": [
      {
        "Name": "Upper Sleeve",
        "Values": [
                      [ 45, 45, 45 ],
                      [ 169, 169, 169 ],
                      [ 210, 210, 210 ],
                      [ 79, 79, 79 ],
                      [ 107, 107, 107 ]
        ]
      },
    {
        "Name": "Lower Sleeve",
        "Values": [
                     [ 245, 245, 245 ],
                     [ 190, 190, 190 ],
                     [ 69, 69, 69 ]
        ]
      }
    ],
The numbers listed are the RGB values of each color/shade used. This code will need to be added under each side listed. FrontSleeves, BackSleeves, RightSleeves, and LeftSleeves.

If you have any more problems with it, let me know and I might be able to help.
 
Last edited:
Top