Epoch/Sources/epoch_server_settings/config.cpp

48 lines
1.0 KiB
C++
Raw Normal View History

2015-06-04 14:11:41 +00:00
/****************************************************************************
2015-08-23 16:44:56 +00:00
Copyright (C) 2015 - ARMA 3 EPOCH MOD [EpochMod.com] (v0.3.3.0)
2015-06-04 14:11:41 +00:00
*****************************************************************************/
#define _ARMA_
class CfgPatches {
class A3_server_settings {
units[] = {};
weapons[] = {};
requiredVersion = 0.1;
2015-08-23 16:44:56 +00:00
epochVersion = "0.3.3.0";
2015-06-04 14:11:41 +00:00
requiredAddons[] = {};
};
};
// inport loot tables
#include "configs\Loots.h"
#include "configs\security\security_checks.h"
// 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"
2015-07-16 15:35:26 +00:00
#include "configs\maps\australia.h"
#include "configs\maps\takistan.h"
#include "configs\maps\esseker.h"
2015-06-04 14:11:41 +00:00
};