Epoch/Sources/epoch_server_settings/config.cpp

64 lines
1.3 KiB
C++
Raw Normal View History

2015-12-07 16:24:52 +00:00
/*
Author: Aaron Clark - EpochMod.com
Contributors:
Description:
Epoch Server Settings Config
Licence:
Arma Public License Share Alike (APL-SA) - https://www.bistudio.com/community/licenses/arma-public-license-share-alike
Github:
https://github.com/EpochModTeam/Epoch/tree/master/Sources/epoch_server_settngs/config.cpp
*/
2015-06-04 14:11:41 +00:00
#define _ARMA_
class CfgPatches {
class A3_server_settings {
units[] = {};
weapons[] = {};
requiredVersion = 0.1;
2015-12-23 17:38:11 +00:00
epochVersion = "0.3.7.0";
2015-06-04 14:11:41 +00:00
requiredAddons[] = {};
};
};
// inport loot tables
#include "configs\Loots.h"
2016-01-26 16:33:04 +00:00
// security checks
2015-06-04 14:11:41 +00:00
#include "configs\security\security_checks.h"
2016-01-26 16:33:04 +00:00
// props template
#include "configs\templates\CfgPropTemplate.h"
2015-06-04 14:11:41 +00:00
// import settings
class CfgEpochServer
{
#include "\@epochhive\epochah.hpp"
#include "\@epochhive\epochconfig.hpp"
};
// map config
class CfgEpoch
{
class Default
{
worldSize = 12000;
traderBlds[] = {};
containerPos[] = {};
telePos[] = {};
propsPos[] = {};
staticNpcPos[] = {};
};
#include "configs\maps\bornholm.h"
#include "configs\maps\stratis.h"
#include "configs\maps\altis.h"
#include "configs\maps\chernarus.h"
2016-01-26 16:33:04 +00:00
#include "configs\maps\chernarus_summer.h"
2015-07-16 15:35:26 +00:00
#include "configs\maps\australia.h"
#include "configs\maps\takistan.h"
2016-01-26 16:33:04 +00:00
#include "configs\maps\zargabad.h"
2015-07-16 15:35:26 +00:00
#include "configs\maps\esseker.h"
2015-06-04 14:11:41 +00:00
};