• If you have a mod, tool or prefab, please use the Resources section. Click Mods at the top of the forums.

(1.0) LittleRedSonja Fancy Home Deco mod

Thank you for your comment, you are very kind, and I am happy that you enjoy the mod 💜.

So far I have tried to keep the mod "Server side only friendly", and some features such as colored lights would require me to add additional code that would make the mod "Server + Client" for multiplayer.

But I am working in some extra features that I plan on adding as an optional add-on for people playing single player or multiplayer that are ok with server + client requirement for the mod, and colored lights is one of the planned features. I will keep the core of the mod server side only but I will add some optional features that would be impossible to add for "server side only" mods as an "add-on".

Thank you and I hope you keep enjoining the mod 🥰

 
Last edited by a moderator:
UPDATE 1.0.8 ("Boxes are Boring" & "The Garage")

- It looks like a common picture but...wait, what is this!? A Secret Storage! Keep thieves away from your goodies with this all-in-one lockable secure storage behind your favorite picture. Craftable in workbench. Decorative and useful at the same time. This update took a lot of work but I am happy with the result and I hope you like it too.  

- Added some more nice decorative secure storage (but not so secret 😉), because boxes are boring 😋: Office shelf in several colors and variants, Gas Pump and Propane Tank in several colors to store all your fuel, resources, or whatever you want. All of them craftable in the workbench and lockable, with big storage capacity. 

- Added decorative vehicles, each of them in 9 different colors: Bicycle that you can hang on the wall, motorcycle, 4x4 and gyrocopter. They are new decorative blocks, not entities, so they do not cause problems in servers or get deleted on restarts. I think they look really cool anywhere, but specially to decorate a mechanic workshop or garage, or a nice urban apartment (bicycle). 

- Added a few more decorative items as pickupable, to decorate your garage or your own automotive repair shop: Tires as a Variant Helper so you can choose what variant to place, and a car motor. Yes, perhaps I have watched too much "Sons of Anarchy" lately, and this is what happens 😅. 

- Added a craftable Bunk Bed as a Variant Helper, with 2 different alternatives. Cheaper than the king size bed, and better suited for smaller rooms or barracks. It works as a bedroll.  

- Added some of the new items and blocks into "Decoration" and/or "Building" category to make it easier to find the recipe.

- Added more entries in the localization file.

Bike_1.jpg

BunkBeds.jpg

Gyros_1.jpg

FancyStorage_!.jpg

Garage_1.jpg

FancyStorage_2.jpg

SecretStorage.png

I hope you like this update, I has been a lot of work but I hope you enjoy it 💜!

If you find issues or have suggestion let me know 😘!

 
Since it is a highly requested feature, I have made an ADD-ON for the mod. This is an optional feature, and you need the main mod installed for this add-on to work. You can find the add-on in the nexus page (download links are in the first post). Extract the zip and place "LittleRedSonja_FancyHomeDeco_v1_NO_POWER_ADDON" inside your mods folder.

No Power ADD-ON for Fancy Home Deco mod:

- Makes all the lights included in the mod require 0 power. You still need to connect them to a power grid, but they will not consume any power at all.
- Makes the electric wire relay, the electric timer relay and the switches to not use power. 
- Removes the running and idle sounds from generator, battery bank and solar panel, for maximum chill cozy environment. 

The intention of the add-on is for people to decorate their bases with nice light features without worrying about power, and to mute the annoying sounds of generators, battery bank and solar panels. Connect your lights to the grid and never think about power again!

I hope you find the add-on useful, and if you have suggestions or find issues let me know 💜.

I will release a new update for the main mod probably next week, with nice new cozy decos for your home and base, so stay tuned 🥰.

 
Last edited by a moderator:
Hi Sonja!

The craftable lights (powered table lamp, exit sign, etc) remained locked despite having the appropriate magazine series maxed out. Anything we're doing wrong?

 
Can you help? this is a great mod! thanks!

ifKlPG3.png


 
Hi Sonja!

The craftable lights (powered table lamp, exit sign, etc) remained locked despite having the appropriate magazine series maxed out. Anything we're doing wrong?
Hi!

Almost always that can happen if you have another mod installed that deletes the crafting skill tree in the progression.xml to add its own.

If such a mod loads AFTER mine or other mods it will remove any additions or edits that my mod or other mod does. This happens when xpath commands such as "remove" are used to "nuke" the vanilla code, and it is usually a very bad way to code things, because in almost every case there is a better and less destructive way to achieve the same result. 

In any case it is usually easy fixed by forcing the offending mod to load BEFORE mine (the game loads mods in alphabetical order). That way it can delete and do their thing in the progression file, and then my mod can add it's stuff on top of it in a non-destructive way. If you know what mod is causing the problem simply rename the mod folder to something like "1_ModName", meaning add a "1_" before mod name, without quotations. That will make that mod load first, and it should solve the problem. 

If you do not know what mod is causing the issue you can instead rename my mod folder so it loads last, for example "z_LittleRedSonja_FancyHomeDeco". That will force my mod to load after other mods, so everything will work fine. If you are using any ADD-ON for the mod make sure to rename those in the same way (add z_ before mod name), so the ADD-ONS loads after the main mod. 

This is a good solution to address mod conflicts, not only in this case, but in general. There is no guarantee it will work in every case, but it is usually a good solution. 

In any case, if you cannot figure out what mod is causing trouble but would want to know give me a list of your mods or simply a screenshot of your mods folder where I can see the names, and I will take a look. This might be a good idea, since that conflicting mod might cause troubles not only with my mod but with others, so identifying it might help you to solve or avoid other problems in the future. 

Anyway let me know if you need any more help to solve this 🥰, I am always happy to help (or try at least 😅).

I hope you enjoy the mod, and let me know if you find issues or have suggestions! 💜

Can you help? this is a great mod! thanks!



Hi! Thank you, I am happy that you like the mod. It looks like the same kind of mod conflict that I describe above. It is usually an easy fix, simply follow the instructions I gave to Old Crow, and let me know if you need further assistance 🥰.

In any case I am thinking expanding the "no power add-on" to remove the crafting skill requirement, as optional. Not because of mod conflicts but because sometimes you only want a nice cozy decoration and do not want to deal with power requirements, or skill levels. Let me know what you think in the comments, in any case like I said it would be an optional add-on.

 
Last edited by a moderator:
Hi!

Almost always that can happen if you have another mod installed that deletes the crafting skill tree in the progression.xml to add its own.

If such a mod loads AFTER mine or other mods it will remove any additions or edits that my mod or other mod does. This happens when xpath commands such as "remove" are used to "nuke" the vanilla code, and it is usually a very bad way to code things, because in almost every case there is a better and less destructive way to achieve the same result. 

In any case it is usually easy fixed by forcing the offending mod to load BEFORE mine (the game loads mods in alphabetical order). That way it can delete and do their thing in the progression file, and then my mod can add it's stuff on top of it in a non-destructive way. If you know what mod is causing the problem simply rename the mod folder to something like "1_ModName", meaning add a "1_" before mod name, without quotations. That will make that mod load first, and it should solve the problem. 

If you do not know what mod is causing the issue you can instead rename my mod folder so it loads last, for example "z_LittleRedSonja_FancyHomeDeco". That will force my mod to load after other mods, so everything will work fine. If you are using any ADD-ON for the mod make sure to rename those in the same way (add z_ before mod name), so the ADD-ONS loads after the main mod. 

This is a good solution to address mod conflicts, not only in this case, but in general. There is no guarantee it will work in every case, but it is usually a good solution. 

In any case, if you cannot figure out what mod is causing trouble but would want to know give me a list of your mods or simply a screenshot of your mods folder where I can see the names, and I will take a look. This might be a good idea, since that conflicting mod might cause troubles not only with my mod but with others, so identifying it might help you to solve or avoid other problems in the future. 

Anyway let me know if you need any more help to solve this 🥰, I am always happy to help (or try at least 😅).

I hope you enjoy the mod, and let me know if you find issues or have suggestions! 💜


Ah, thank you very much!

 
UPDATE 1.0.9:

- Doors, doors and EVEN MORE doors. A nice door makes all the difference when building a nice base, so here you have a ton of different doors, including sliding doors and bulletproof glass doors for maximum security, as craftable Variant Helpers and in many different colors and shapes to fit any style you are looking for. Say "goodbye" to the ugly vanilla doors 💜.     

20240815011629_1.jpg

- You can now craft curtains to decorate your windows, in many different shapes and colors.     
- Added some really cute Umbrellas as pickupable and craftable in workbench, both open and closed variants, in many different colors. Prevent sunburn with these cozy parasols.

20240815012741_1.jpg    

- Movie time! You can now pick up the projectors and the video camera in POI, and also craft them in your workbench as a variant helper. The projectors are a powerable light, you can turn them on and off. Become the new John Romero and project your creations in your own home theater, or equip your operations room and plan your next POI raid, Briefing time!     
- You want Dolby Surround sound in addition to image? Now the bookshelf Speakers are pickupable. Grab them and decorate your home theater!     
- Grab a cold one! Added beverage coolers as secure lockable storage, with big storage capacity, both standard and under the counter, full and empty variants, to keep safe all your favorite foods and drinks. Enjoy a sweet snack while you watch a movie in your home theater.      
- Ugly chairs are for plebs. You should instead enjoy these new craftable theater seats in different colors.

Screenshot 2024-08-14 145256.png

    
- Added a nice brass trophy as pickupable and craftable, so you can tell your friends that you won it for killing lots of zombies or making a great movie. It is not an Oscar, but it is the closest you will find in the apocalypse.     
- After movie, a good dinner. Craft comfy colorful restaurant booths and matching tables, many shapes and different colors as a variant helper.    

20240814210121_1.jpg

 
- Sad boring kitchen? Add some nice cozy light with the Hood Range variants, a powerable light in different colors. Standard and off-set variants. I do not know you, but I LOVE soft relaxing light in kitchens 🥰     
- More stuff for your home clinic, probably needed if you eat too much popcorn in your new home theater: Added 2 medicine cabinets variants as secure storage, craftable in workbench and with lots of room to storage your medicin supplies.     

20240815005948_1.jpg

- Added more decorative vehicles for your garage, 3 different models in many different colors. Craftable as a variant helper in workbench.      

- Added plastic traffic barriers as pickupable (you will get a variant helper block) and craftable in different colors.     
- Added a strong concrete barrier as craftable, for more nice variety in base defence.      
- Picking up the "Pool Table" will now give you a Variant Helper, so you can place back home and choose what color you want (right now green and blue variants, more colors coming in future updates). It is also craftable now.     

20240815010809_1.jpg

- Added support to all my secure storage to be pickupable with my other mod "Grab Your Storage". That way you can grab your secure storage in one go without spending time, stamina and resources to destroy and rebuild.     
- Most items that before required using a salvage tool to grab them can now be picked up right away, such as bar stools, park benches, some lights and signs. When appropriate this will give you a variant helper so you can choose what variant you want to place back in your base. This change is intended to make the mod easier to use and more accessible for everybody, so it is easier to see what can be picked up and what not without having to read all the documentation in the mod. I hope you like this change.     
- Having a high level in salvaging operations no longer gives you 2 items when salvaging some of my decorative stuff. I guess it did not make much sense, did it? 😅     
- You can now repair your "Steve the Zombie" if he suffers damage, and have increased HP so it will be more difficult to "kill him" by accident. Say "Thank you", Steve! 😋.   
- You can now repair your Park Benches, your Rolling Tool Box secure storage and your Tool Box secure storage.      
- Adjusted the selling price of the gurney beds and hospital beds, so they are actually used to decorate your base instead for being sold to traders for quite a lot of money. I hope I am not breaking your "easy money scheme" here folks, but it was a bit too much  😉      
- The "NO POWER" Add-On will also remove the required skill level in electrician to craft some of the lights now. Again, an optional feature intended to make the mod enjoyable for everybody :). Added a link for the ADD-ON for both Nexus and SimFileShare for people that do not use Nexus (links in the first post, together with the links for the main mod). Sorry that the alternative link in SimFileShare was not there before, it seems that I kind of forgot or did not save the changes when I added it, but it is there now hehe 😅.

It is a big update and it adds lots of new things that I have learned last weeks. I really hope you like it, and if you find issues, or have questions or suggestions, let me know! 💜

 
Hi I downloaded this mod, and I see lots of new storage options, what is the largest storage option available?

thanks!
Hi!

All the new storage options have the same storage capacity as the steel writable crate, which is 8x10 if I am not mistaken. You can also pick all of them them back after placing them in one go if you use "Grab your storage" mod, since all of them are compatible.

The idea is for people to decorate and choose storage that they like most and fits better in their base, and not to feel forced to choose one storage or another simply because storage capacity. 

So choose the ones that you like best, all of them offer the same BIG storage capacity 😊.

My personal favorites are the "Secret Storage behind a Picture" collection, but choose the ones you like best and enjoy it 🥰.

Thank you for your comment and let me know if you have suggestions or find issues! 💜

 
Thanks for the reply. I did uncover a bug?

I picked up a pool table, some weights and the exercise bike, I gave it to my drone. When I checked his inventory later the objects were missing. Any ideas?

 
Thanks for the reply. I did uncover a bug?

I picked up a pool table, some weights and the exercise bike, I gave it to my drone. When I checked his inventory later the objects were missing. Any ideas?
Yes. It seems that drones inventory are quite "buggy" right now, and stuff might disappear (not only moded stuff, base game stuff), so be careful with what you put in there, specially if you are playing multiplayer with friends or in a server and if you have the "Healing mod" installed in your drone.

 
Last edited by a moderator:
Hi! 💜

I think it could be useful for people looking for decoration to add the forum links for my other small deco mods, to make it easier to find. Perhaps it is something you would be interested in? 🥰 They are not included in Fancy Home Deco since they include custom assets, so unlike the core mod, these ones are not server side, but perhaps people playing solo or in servers with server + client mods would be interested. 

Fancy Wall Art: Nuka Cola

NukaColaWallArt_01.png





Cute Plushies

CutePlushies.png





I hope you like them, in case you did not know about them already 🥰

About next update for Fancy Home Deco, I am working on it now, so you can expect more nice stuff to decorate your base very soon. 💜

 
Last edited by a moderator:
UPDATE 1.1.0

- Fixed Gas Pump secure storage not requiring forged steel to craft. It now requires both forged iron and steel iron, like the other equivalent secure storage variants. 
- Fixed the radio not being pickupable outside claim area. You can pick it up again now. 
- Improved Office shelf placement to sit better as a 2 wide storage. 

- Added an alternative version to the "cozy electric stove" that works as a functional cooking place, like the campfire. Now you get a variant when you craft it or salvage in the world, and you can choose to place the decorative powerable light version OR the functional stove version. 

- As I promised one month ago, I have been working on "clean nice" versions for all my doors, and after lots of testing and delays because of me being distracted with the plushies mod (but it is so cute!) I finally remade all my custom doors from scratch. Now you will get clean doors at 100% HP. Increased the HP points of the doors to make them equivalent to the vanilla "old wood door". This way you do not need to damage it and drop the HP down to 50-70% to get the nice clean look. But do not worry, you can Upgrade them to get the "barricade" look again and gain 25% more HP, using any repair tool. Like it should be in real life, if you actually barricade a door it should be stronger. When you are hovering to place the door it still shows the "barricaded" look, I do not think it is possible to change that without me editing the vanilla block in Unity, and that would make the mod server + client side (and I want Fancy Home Deco to remain a server side mod). There are several ways to do this, but I think I like this method the most of all the ones I have tried, since it allows you to go back to the barricaded look if you want and to actually reinforce the door and get higher HP when doing so. Also, VANILLA DOORS ARE UNTOUCHED, so it will not affect how POI loos or works, and will not change game balance. Let me know what you think in the comments. 

Doors01.png

- Super Villain stuff: The "Evil Genius 3000" super villain doors. Single and double "normal" variants, slightly stronger than the steel vault doors but more expensive to craft, AND a powerable version of both that you can link to motion sensors, press plates and all that stuff, the same as the powered vaults, and it is unlocked by electrician skill (same as other powered doors). I think these ones will look fantastic in scy-fi style bases, James Bond Volcano base style, or anywhere else 🥰 
- Added all the other variants of the metal commercial door, inside the "Metal commercial door variants", in many different colors and models for you to choose from.
- Added the "Trailer doors" and a craftable variant helper, in many different colors. 

Vegetation Deco.png

- Added the "Control panels" as a craftable variant helper, in many different colors and tons of different models, for you to decorate. I think they will look fabulous in any "super villain volcano base" or sci-fy setting, but of course you can use them to decorate or any other style you want.

Super Villain.png

- Added Decorative vegetation as a variant helper, craftable, including several bushes, flowers and a small tree.
- Added a "Modular fireplace kit" as variant helper containing 2 parts: A "No Heat" burning barrel that you can place 1 block below the intended level for the fireplace, and firewood block that lets flames come out and that you place right on top of the burning barrel.You can see the result in the included picture, I think it looks really cozy. 

Fireplace.png

- Pickupable horseshoes (you get a variant helper), and pickupable decorative cow skulls, that can look very cool for example in a "old west style" base. 
- Added The Big Street Light, as powerable light, craftable in workbench, to illuminate even the darkest corners.
- Added 3 different traffic lights as craftable powered lights.

Traffic Lights.png

 - Added recessed lights as craftable, several variants for more flexibility when placing them.  
- Added "Offset" variants of the table lamps, in many different colors. "Offset" variants are easier to be placed on half blocks, for example nightstands, compared with the "centered" variants. All the variants and colors are inside the same craftable Variant Helper block. 
- Added Several bags as small secure storage, included in a variant helper, in many different colors. 

Bag Secure Storage.png

- Added Several clothes racks, wall racks and clothes shelves as secure storage, included in a variant helper. Both the bags and the clothes racks are compatible with my "Grab your storage" mod.
- A lot of the vanilla traffic signs are pickupable now. 
- Added modular tent kit, with 200 different pieces in many different shapes and colors including "cammo", inside a craftable variant helper, for you to combine however you want and create your own custom tents. 

Tents.png

- Add a few more missing variants to vanilla variant helpers and 2 single hanging chains to GNS hoister variant (if you use that mod).
- Improved the grouping for lights and storage, to make them easier to find. 
- Changed the color of many icons to a nice purple, hopefully easier to see for color blind people and in low gamma settings. 
- More things added in the localization.txt 

Vegetation Deco.png
- NO POWER ADD-ON: As an extra feature, greatly increased the distance at which you can connect electrical devices with the wiring tool, so you can connect all your nice lights without too many wire relays. Also added all the new lights included in the mod.

It is a big update and a lot of work, I really hope you like it 🥰

And if you find issues or have suggestions let me know! 💜

You have the download links in the first post.

 
Thank you for this great mod and finally some vegetation. Great for building nice bases!

Maybe i found a little bug... not sure. When i select a curtain right half top, the currtain left half top appears instead.

 
love your mods.  dk how i just now discovered this one.  

can you make this compatible with craft from container mod - this one: https://7daystodiemods.com/craftfromcontainers-v1-0/ ?  (the secure storages mainly, i'd love to have it work with that mod if possible)

thanks again!
Hi! Thank you, I am happy that you like my mods! 🥰

Wish granted! 💜

Thank you for this great mod and finally some vegetation. Great for building nice bases!

Maybe i found a little bug... not sure. When i select a curtain right half top, the currtain left half top appears instead.
Hi! I am happy that you like it! 😊

The curtains thing yes, I have observed it, but it is a vanilla bug. Both me and some friends (and other players) have tested it in fresh install vanilla un-moded games and it is the same. I have even checked the Unity file containing that asset and it is bugged, so I hope TFP fix it eventually. 

 
Last edited by a moderator:
UPDATE 1.2.0

- Adds compatibility with "Craft From Containers" mod for all my custom storage. IMPORTANT WARNING IF YOU UPDATE IN AN EXISTING SAVE FROM A PREVIOUS VERSION OF THE MOD: Please empty all your custom storage before updating, otherwise you will loose its contents. This is because I had to rework the containers for compatibility with "Crafting from Containers". After you update you have to REPLACE THE CONTAINER WITH A NEW ONE OR PICK IT BACK INTO YOUR INVENTORY for the compatibility to work. To pick up the container you can use my "grab your storage" mod, or simply destroy the container and place a new one. If this sounds too complicated simply stay in version 1.1.0 and update to 1.2.0 when you start a new game.    

  
- Adds the requested "Bathroom signs" and "Bulletin Board" as pickupable. You will get a variant helper so you can choose what variants to place back home.     

- Fix: Colored variants of the "Exterior House Door" can no longer be upgraded more than one time. 

I hope you enjoy the compatibility with "Craft from containers" I was not aware it was such a popular request, but here it is, and any new storage I might add in the future will also be compatible of course. 💜

One important thing, and I am repeating my self, but this is important: Remember to empty all the custom containers before updating or you will lose its contents. After updating replace the containers with the new ones for the compatibility to work. This only applies if you update into version 1.2.0 from previous versions of my mod in an existing save, otherwise you do not need to do anything when updating or installing.

 
Last edited by a moderator:
thanks for compatibility.  however, (on existing game), i used creative mode to add "cooking oven" and the "mini cooler storage" but cooking station indicates i dont have food/drink items to craft even though i have all the correct amounts to make various foods, drinks. 

 
Last edited by a moderator:
Back
Top