Hi guys,
So I'm looking at the MPMissions\DayZ_Epoch_11.Chernarus\init.sqf. This is where we are suppose to add/modify our config variable changes to Epoch variables for this particular mission.
At the top of that init.sqf file is the below line:
In that file you can see some variables conditionally being set based on the value of other variables. Example from \z\addons\dayz_code\configVariables.sqf below:
So even if I add "Z_SingleCurrency = true;" to my init.sqf the above condition statement has already ran with "Z_SingleCurrency = false;" skipping those conditional changes. This does not make much sense to me. Do I need to also copy the conditional statements to my init.sqf?
Thanks!