mirror of
https://github.com/EpochModTeam/DayZ-Epoch.git
synced 2025-12-17 09:10:27 +03:00
Update READMEs
This commit is contained in:
@@ -1,10 +1,3 @@
|
||||
/*
|
||||
If using DZE_MissionLootTable = true; without changing anything in BuildingLoot then
|
||||
use an include instead of copying the files to your mission:
|
||||
|
||||
#include "\z\addons\dayz_code\Configs\CfgLoot\CfgBuildingLoot.hpp"
|
||||
*/
|
||||
|
||||
#include "Groups\Buildings\Boat.hpp"
|
||||
#include "Groups\Buildings\Castle.hpp"
|
||||
#include "Groups\Buildings\Church.hpp"
|
||||
|
||||
@@ -1,10 +1,3 @@
|
||||
/*
|
||||
If using DZE_MissionLootTable = true; without changing anything in BuildingPos then
|
||||
use an include instead of copying the files to your mission:
|
||||
|
||||
#include "\z\addons\dayz_code\Configs\CfgLoot\CfgBuildingPos.hpp"
|
||||
*/
|
||||
|
||||
#include "Buildings\Residential.hpp"
|
||||
#include "Buildings\Boat.hpp"
|
||||
#include "Buildings\Castle.hpp"
|
||||
|
||||
@@ -49,12 +49,6 @@ class CfgLoot
|
||||
|
||||
// Buildings
|
||||
#include "CfgBuildingLoot.hpp"
|
||||
/*
|
||||
If using DZE_MissionLootTable = true; without changing anything in BuildingLoot then
|
||||
use an include instead of copying the files to your mission:
|
||||
|
||||
#include "\z\addons\dayz_code\Configs\CfgLoot\CfgBuildingLoot.hpp"
|
||||
*/
|
||||
|
||||
// Zombies
|
||||
#include "Groups\Zombies\Civilian.hpp"
|
||||
@@ -115,11 +109,5 @@ class CfgLoot
|
||||
|
||||
// Buildings
|
||||
#include "CfgBuildingPos.hpp"
|
||||
/*
|
||||
If using DZE_MissionLootTable = true; without changing anything in BuildingPos then
|
||||
use an include instead of copying the files to your mission:
|
||||
|
||||
#include "\z\addons\dayz_code\Configs\CfgLoot\CfgBuildingPos.hpp"
|
||||
*/
|
||||
};
|
||||
};
|
||||
16
SQF/dayz_code/Configs/CfgLoot/README.txt
Normal file
16
SQF/dayz_code/Configs/CfgLoot/README.txt
Normal file
@@ -0,0 +1,16 @@
|
||||
To use DZE_MissionLootTable = true; copy this CfgLoot folder to your mission.
|
||||
|
||||
Then in description.ext add at the top:
|
||||
#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"
|
||||
Reference in New Issue
Block a user