public class FarmMonitorCommands
int thirsty = plots.Count(p => p.WaterLevel.Normalized < 0.3f); int hungry = plots.Count(p => p.FertilizerLevel.Normalized < 0.5f);
public class FarmPlotObject
[ChatCommand("Check all farm plots", ChatAdminLevel.User)] public static void CheckFarms(User user) var plots = WorldObjectUtil.GetObjectsOfType<FarmPlotObjectEntity>() .Where(p => p.Owner == user).ToList();
public class AutoFarmMonitor : IModInit
It alerts you when a farm plot needs water or fertilizer, and optionally logs the data to a chat channel or a file for later review. 1. Create the file: EcoServer/Mods/AutoFarmMonitor.cs
Eco V0.10.0.1 Apr 2026
public class FarmMonitorCommands
int thirsty = plots.Count(p => p.WaterLevel.Normalized < 0.3f); int hungry = plots.Count(p => p.FertilizerLevel.Normalized < 0.5f); Eco v0.10.0.1
public class FarmPlotObject
[ChatCommand("Check all farm plots", ChatAdminLevel.User)] public static void CheckFarms(User user) var plots = WorldObjectUtil.GetObjectsOfType<FarmPlotObjectEntity>() .Where(p => p.Owner == user).ToList(); public class FarmMonitorCommands
int thirsty = plots
public class AutoFarmMonitor : IModInit
It alerts you when a farm plot needs water or fertilizer, and optionally logs the data to a chat channel or a file for later review. 1. Create the file: EcoServer/Mods/AutoFarmMonitor.cs int hungry = plots.Count(p =>