adds pipes to zomboid
| 42 | ||
| common | ||
| media/lua/client | ||
| .gitignore | ||
| LICENSE | ||
| README.md | ||
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
-
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)
-
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 nameid: Unique identifierdescription: Mod descriptionmodversion: Your mod versionpzversion: Target PZ version (42.0 for Build 42)