mirror of
https://github.com/EpochModTeam/DayZ-Epoch.git
synced 2025-12-14 04:02:37 +03:00
AFAIK there is no performance difference between configFile and missionConfigFile. Using missionConfigFile by default simplifies loot scripts and makes the extra config variable unnecessary. It's one less step for admins to customize their tables.
To customize the loot tables copy this CfgLoot folder to your mission. Then in description.ext replace this line: #include "\z\addons\dayz_code\Configs\CfgLoot\CfgLoot.hpp" with this: #include "CfgLoot\CfgLoot.hpp" If you do not change anything in the \Buildings\ folder you can delete it and CfgBuildingPos.hpp. Then in CfgLoot.hpp replace: #include "CfgBuildingPos.hpp" with: #include "\z\addons\dayz_code\Configs\CfgLoot\CfgBuildingPos.hpp" If you do not change anything in the \Groups\Buildings\ folder you can delete it and CfgBuildingLoot.hpp. Then in CfgLoot.hpp replace: #include "CfgBuildingLoot.hpp" with: #include "\z\addons\dayz_code\Configs\CfgLoot\CfgBuildingLoot.hpp"