Group Size Problems

Tulser

Member
I've tried setting the max group size for survivors and bandits to 1 and 2 for the survivors. My problem is that i am seeing large groups of 4-5 survivors still.
That is what my code looks like:
Code:
// maximum number of groups / grid
SAR_max_grps_bandits = 4;
SAR_max_grps_soldiers = 0;
SAR_max_grps_survivors = 5;
 
// chance for a group to spawn (1-100)
SAR_chance_bandits = 40;
SAR_chance_soldiers = 1;
SAR_chance_survivors = 65;
 
// maximum size of group (including Leader)
SAR_max_grpsize_bandits = 1;
SAR_max_grpsize_soldiers = 0;
SAR_max_grpsize_survivors = 2;
Is there something that i entered wrong?
-Thanks
 
this one defines the default setup for grids.

In your grps_cfg file are per/grid definitions. These will overwrite the above default definitions. Check if that is the case.

Sarge
 
Back
Top