Hello,
I have only changed these settings in the config, but only 50 zombies spawn every night (per using broadcast for diagnosing) and never near anyone except maybe one or two by random chance. I have tried reloading the server, using a fresh server, and also reloading the mod while playing. Everything else seems to work so far (except maybe grenades, but haven't tested it on more than one zombie yet and not a big deal if it doesn't work). Any advice? Thank you!
public class SpawnSettings
{
[JsonProperty("Spawn near players")]
public bool spawnNearPlayers = true; //Not default
[JsonProperty("Min pop for near player spawn")]
public int minNearPlayers = 0; //Also tried 1
[JsonProperty("Min distance from player")]
public float minDistance = 40;
[JsonProperty("Max distance from player")]
public float maxDistance = 80f;
[JsonProperty("Spawn Time")]
public float spawnTime = 18.8f; //Default time settings didn't make a difference
[JsonProperty("Destroy Time")]
public float destroyTime = 8.3f;
[JsonProperty("Zombie Settings")]
public ZombieSettings Zombies = new ZombieSettings();
public class ZombieSettings
{
[JsonProperty("Display Name")]
public string displayName = "Zombie";
[JsonProperty("Scarecrow Population (total amount)")]
public int population = 500; //Also tried 100, 200, etc.
[JsonProperty("Scarecrow Health")]
public float health = 150f; //Not default
[JsonProperty("Scarecrow Kits")]
public List<string> kits = new List<string>();
}
[JsonProperty("Throw Grenades")]
public bool throwGrenades = true;