adds pipes to zomboid
Find a file
2025-12-19 10:40:04 -05:00
42 added weird installer that I'll never use 2025-12-19 10:05:49 -05:00
common Added a .keep file, so the the common folder is always present. Removed install_mod.bat (you should clone to your mods dir). Removed redundant mod.info file 2025-12-19 10:40:04 -05:00
media/lua/client added weird installer that I'll never use 2025-12-19 10:05:49 -05:00
.gitignore Initial commit 2025-12-19 14:41:35 +00:00
LICENSE Initial commit 2025-12-19 14:41:35 +00:00
README.md Initial Commit 2025-12-19 09:49:54 -05:00

Tobacco Mod - Project Zomboid Build 42

Adds pipes and tobacco items to Project Zomboid.

Folder Structure

This mod follows the Build 42 structure requirements:

zomboid_tobacco/
├── mod.info              # Root mod info (legacy compatibility)
├── 42/                   # Build 42 specific files
│   ├── mod.info
│   └── media/
│       └── lua/
│           ├── client/   # Client-side scripts
│           ├── server/   # Server-side scripts
│           └── shared/   # Shared scripts
├── common/               # Common folder (required but empty)
└── media/                # Root media folder (legacy compatibility)
    └── lua/
        ├── client/
        ├── server/
        └── shared/

Installation

  1. Copy this entire folder to your Project Zomboid mods directory:

    • C:\Users\[YourUsername]\Zomboid\mods\ (Windows)
    • ~/Zomboid/mods/ (Linux)
    • ~/Library/Application Support/Zomboid/mods/ (Mac)
  2. Launch Project Zomboid and enable the mod in the Mods menu

Development

  • Client-side code goes in media/lua/client/
  • Server-side code goes in media/lua/server/
  • Shared code goes in media/lua/shared/

Remember to copy any changes from the root media/ folder to 42/media/ folder for Build 42 compatibility.

Mod Info

Edit mod.info to customize your mod's metadata:

  • name: Display name
  • id: Unique identifier
  • description: Mod description
  • modversion: Your mod version
  • pzversion: Target PZ version (42.0 for Build 42)