mirror of
https://github.com/EpochModTeam/DayZ-Epoch.git
synced 2025-12-13 19:52:38 +03:00
@icomrade - configFile and missionConfigFile are in different scopes. Admins can overwrite any dialog in RscDisplay with their own version included in the mission without getting "class already defined" errors. I tested to make sure it is possible. So there is no benefit to having these includes in description.ext.
118 lines
2.6 KiB
C++
118 lines
2.6 KiB
C++
#include "Configs\basicDefines.hpp"
|
|
#include "Configs\CfgNonAIVehicles.hpp" //Axeman lights
|
|
|
|
class CfgPatches
|
|
{
|
|
class dayz_code
|
|
{
|
|
units[] = {};
|
|
weapons[] = {};
|
|
requiredVersion = 0.1;
|
|
requiredAddons[] =
|
|
{
|
|
"map_eu",
|
|
|
|
//dayz_anim references all CA addons
|
|
"dayz_anim",
|
|
|
|
//dayz addons
|
|
"dayz",
|
|
"dayz_buildings",
|
|
"dayz_communityassets",
|
|
"dayz_communityweapons",
|
|
"dayz_equip",
|
|
"dayz_sfx",
|
|
"dayz_vehicles",
|
|
"dayz_weapons",
|
|
"community_crossbow",
|
|
|
|
//shacktac addons
|
|
"st_bunnyhop",
|
|
"st_collision",
|
|
"st_evasive",
|
|
|
|
//Extra Epoch Addons
|
|
"asc_eu_lights",
|
|
"gnt_c185",
|
|
"usec_ch53"
|
|
};
|
|
};
|
|
};
|
|
|
|
class CfgMods
|
|
{
|
|
class DayZ
|
|
{
|
|
dir = "DayZ_Epoch";
|
|
name = "DayZ Epoch";
|
|
picture = "z\addons\dayz_code\gui\loadingscreen.paa";
|
|
hidePicture = 0;
|
|
hideName = 0;
|
|
action = "http://www.dayzepoch.com";
|
|
version = "DayZ Epoch 1.0.6";
|
|
hiveVersion = 0.96;
|
|
//requiredAddons[] = {"Chernarus"}; // No need to load for other maps
|
|
};
|
|
};
|
|
|
|
class CfgAddons
|
|
{
|
|
access = 1;
|
|
class PreloadBanks {};
|
|
class PreloadAddons
|
|
{
|
|
class dayz
|
|
{
|
|
list[] =
|
|
{
|
|
"dayz_code",
|
|
"dayz",
|
|
"dayz_equip",
|
|
"dayz_communityassets",
|
|
"dayz_weapons",
|
|
"dayz_communityweapons",
|
|
"dayz_sfx",
|
|
"ST_bunnyhop",
|
|
"st_collision",
|
|
"st_evasive",
|
|
"asc_eu_lights",
|
|
"gnt_c185",
|
|
"usec_ch53",
|
|
"redryder",
|
|
"Anzio_20",
|
|
"dayz_epoch_b",
|
|
"CfgVehicles"
|
|
};
|
|
};
|
|
};
|
|
};
|
|
|
|
#include "Configs\rscTitles.hpp"
|
|
#include "Configs\CfgWorlds.hpp"
|
|
#include "Configs\CfgMoves.hpp"
|
|
#include "Configs\CfgVehicles\CfgVehicles.hpp"
|
|
#include "Configs\CfgWeapons\CfgWeapons.hpp"
|
|
#include "Configs\CfgCrafting\CfgCrafting.hpp"
|
|
#include "Configs\CfgConstruction\CfgConstruction.hpp"
|
|
#include "Configs\CfgMagazines\CfgMagazines.hpp"
|
|
#include "Configs\CfgLoot\CfgLoot.hpp"
|
|
#include "Configs\CfgMarkers.hpp"
|
|
#include "Configs\CfgAmmo.hpp"
|
|
#include "Configs\CfgObjectCompositions.hpp"
|
|
#include "Configs\CfgTownGenerator\CfgTownGeneratorChernarus.hpp"
|
|
#include "Configs\CfgGrid\CfgGrid.hpp"
|
|
#include "Configs\CfgFaces.hpp"
|
|
#include "Configs\CfgGlasses.hpp"
|
|
#include "Configs\CfgArma.hpp"
|
|
#include "Configs\CfgRecoils.hpp"
|
|
#include "gui\padlock\padlock_ui.hpp"
|
|
|
|
//Epoch Additions
|
|
#include "Configs\RscDisplay\safegui.hpp"
|
|
#include "Configs\RscDisplay\tradermenu.hpp"
|
|
#include "Configs\RscDisplay\ZSCdefines.hpp"
|
|
#include "Configs\RscDisplay\advancedTrading.hpp"
|
|
#include "Configs\RscDisplay\plotManagement.hpp"
|
|
#include "Configs\RscDisplay\deathboards.hpp"
|
|
#include "Configs\CfgExtra\snappoints.hpp"
|
|
#include "external\R3F_Realism\R3F_Weight\R3F_CfgWeight.hpp" |