Login  Register

Re: RELEASE: DaiZy FACTIONS Chernarus 1987 v11.28c (19.12.18)

Posted by Oliv82 on Mar 14, 2019; 9:29am
URL: http://kodabar-dayz-daizy-single-player-forum.163.s1.nabble.com/RELEASE-DaiZy-FACTIONS-Chernarus-1987-v11-32b-20-10-20-tp13907p20170.html

Hi MrThirsty

Usualy, "user" options are located in "init.sqf" file of the mission folder
Ill probably add this option in next update.

open "...Missions\1987FACTIONS_Chernarus_v1129a.chernarus\init.sqf"

After line 63 add this line:
walking_zeds = true;

Save and close "init.sqf"

Now open "...Missions\1987FACTIONS_Chernarus_v1129a.chernarus\dayz_code\system\zombie_agent.fsm"
Line 475, replace
"_agent forceSpeed 6;" \n
by:
"if (walking_zeds) then {_agent forceSpeed 2} else {_agent forceSpeed 6};" \n

Save and close "zombie_agent.fsm"

....
I prefer to avoid "else" command, but you can also do this:
"_agent forceSpeed 6;" \n
"if (walking_zeds) then {_agent forceSpeed 2};" \n
....