You have the first parameter which is your first zone, the second which is your adjacent zone, the third which is the flag to enter the zone, but you also have a 4th one that is set to false by default.
If you put it to true, that sets it so the zombies will only spawn in that zone if a player is currently in that zone. You can just set all the zones to true, and then the zombies will only spawn in the zone you are currently in.
BTW congrats on 20 posts. You are now a "regular"
work for the initial zone or start_zone? (as it does not)
The fourth parameter simple tells it to add or not to add the the first parameter (zone) to the second parameters adjacent zone array. You can review more of this in the add_adjacent_zone function in _zombiemode_zone_manager.gsc
The actual way to only get zombies spawning in the zone your in is to add all zones to the zone array with no adjacent zones.
Last Edit: July 05, 2016, 12:29:50 am by MakeCents
The fourth parameter simple tells it to add or not to add the the first parameter (zone) to the second parameters adjacent zone array. You can review more of this in the add_adjacent_zone function in _zombiemode_zone_manager.gsc
The actual way to only get zombies spawning in the zone your in is to add all zones to the zone array with no adjacent zones.