victorks Posted January 26, 2018 Report Share Posted January 26, 2018 Hello, could anyone tell me how I can get the zombies to walk? I hate zombies that run Link to comment Share on other sites More sharing options...
0 lwbuk Posted January 26, 2018 Report Share Posted January 26, 2018 Put in your init.sqf after // EPOCH CONFIG VARIABLES START // #include "\z\addons\dayz_code\configVariables.sqf" // Don't remove this line // See the above file for a full list including descriptions and default values DZE_ZombieSpeed = [2,2]; //Default agro speed is 6 per zombie config, set array elements 0 and 1 the same for non-variable speed, set to 0 to disable. array format = [min, max]; Ex: [2, 6]; results in a range of speed between 2 and 6 (2 is the old DZE_slowZombies hard-coded speed) victorks 1 Link to comment Share on other sites More sharing options...
0 JohnnyBravo666 Posted January 26, 2018 Report Share Posted January 26, 2018 My last server was in 1.0.6.1 and there was a line you had in the init file I think, well mine was in a EpochConfig.sqf file, but this line would set the walking zombies. DZE_slowZombies = true; // Force zombies to always walk victorks 1 Link to comment Share on other sites More sharing options...
0 lwbuk Posted January 26, 2018 Report Share Posted January 26, 2018 5 minutes ago, JohnnyBravo666 said: My last server was in 1.0.6.1 and there was a line you had in the init file I think, well mine was in a EpochConfig.sqf file, but this line would set the walking zombies. DZE_slowZombies = true; // Force zombies to always walk It’s no longer done that way, see above. victorks 1 Link to comment Share on other sites More sharing options...
0 victorks Posted January 26, 2018 Author Report Share Posted January 26, 2018 thank you Link to comment Share on other sites More sharing options...