Static Objects - ZenarchistCode/ZenModPack GitHub Wiki
This modpack includes a bunch of static objects for placement with DayZ Editor or other admin tools.
Here is a list of items, updated 14th July 2024:
// Ice sheet for covering lakes and ponds on winter maps
Land_IceSheet
// Some treehouses and a climbable ladder
Land_ZenTreeHouse_Ladder
Land_ZenTreeHouse_Bare
Land_ZenLadder_SmallWood
// A bunch of static sleeping bags
ZenSleepingBagStatic_Black
ZenSleepingBagStatic_Blue
ZenSleepingBagStatic_Grey
ZenSleepingBagStatic_Red
ZenSleepingBagStatic_Green
// A bunch of lights for placing on static objects
Zen_SpotlightObject
Zen_StreetLight
Zen_InteriorLight
Zen_InteriorLightDim
// Some static music players (see Music page for more info)
Zen_BoomBox_Static
Zen_BoomBox_Invisible_Static
// A fireplace that burns forever
Zen_EternalFireplace
// A vanilla christmas tree with no music/loot spawns
Zen_ChristmasTree_Green
// A mural decal from 28 days later
Zen_Decal_Mural_Repent
To create your own murals/decals, you need a 2D image texture and add it to your config.cpp like so:
class Zen_Decal_Mural_Base;
class Zen_Decal_Mural_Repent: Zen_Decal_Mural_Base
{
scope=1;
hiddenSelections[]={"texture"};
hiddenSelectionsTextures[]={"your_mod_folder/your_texture.paa"};
};