zootal
Refugee
I found a cheap trick to reduce the constant zombie attacking for those that don't like it. I simply nerf the move speed of ferals. They move much slower, they don't run you down as fast, and because it takes longer for them to get to you (and get killed), you don't get new hordes spawning all the time. Look into entitygroups.xml, find the lines for Ferals, and change their speed from .043 to some smaller value. if you want to seriously nerf them, change to .0043. Normal zombies remain untouched, but the ferals will no longer run you down on a regular basis.
For those brave souls out there, this is what I do:
WARNING - this nerfs them to the point of survival no longer being a challenge. It is also not thoroughly tested and can totally screw the file. Make a backup of the file, and consider using a number larger than 0.0043 because this very seriously nerfs them. I have not yet found a good balance of run speed that keeps you from being overrun all the time, to being stupidly easy.
For those brave souls out there, this is what I do:
Code:
$file = file($dir . 'entitygroups.xml');
$out = fopen($dir . 'entitygroups.xml', 'w');
foreach ($file as $f)
{
// If Feral is in line, change prob 0.043 to 0.0043
if (strpos($f, 'Feral') > 0)
$f = str_replace('0.043', '0.0043', $f);
fwrite($out, $f . "\r\n");
}
fclose($out);