Project Zomboid

Project Zomboid

Wells Construction
Spijuniro Golubiro 2024 年 4 月 18 日 上午 4:49
How do I place the well anywhere?
How do I modify the mod code to do it?
< >
正在显示第 1 - 5 条,共 5 条留言
Marshmallow 2024 年 4 月 30 日 下午 2:41 
Wanting this as well. I built my base in the city, so I just don't get to use this feature? I understand the logic, it's just kind of annoying.
Koniv00 2024 年 5 月 24 日 上午 7:33 
Here's what you need to do, but it will probably get overwritten the next time the mod updates:

Find steamapps\workshop\content\108600\2852690210\mods\WellsConstruction\media\lua\server

In this directory there should be a file called WellObject.lua, which you need to edit,
Find the section that looks like this (but with the town squareZone as well):

-- Wells should not be able to be placed on roads, towns or trailer parks
function WellObject.isValidZone(square)
local squareZone = square:getZoneType();
if squareZone == "Nav" or squareZone == "TrailerPark" then return false; end
return true;
end

Just remove the zone you want to be able to build the well in, and you're good to go.
Spijuniro Golubiro 2024 年 6 月 1 日 上午 5:37 
Okay thx
Sr_Guarrior 2024 年 7 月 6 日 下午 10:42 
gracias, me sirvió editar el archivo
Spijuniro Golubiro 2024 年 10 月 24 日 上午 4:45 
引用自 Koniv00
Here's what you need to do, but it will probably get overwritten the next time the mod updates:

Find steamapps\workshop\content\108600\2852690210\mods\WellsConstruction\media\lua\server

In this directory there should be a file called WellObject.lua, which you need to edit,
Find the section that looks like this (but with the town squareZone as well):

-- Wells should not be able to be placed on roads, towns or trailer parks
function WellObject.isValidZone(square)
local squareZone = square:getZoneType();
if squareZone == "Nav" or squareZone == "TrailerPark" then return false; end
return true;
end

Just remove the zone you want to be able to build the well in, and you're good to go.

how i build inside house?, cand find the code line
< >
正在显示第 1 - 5 条,共 5 条留言
每页显示数: 1530 50