Move no longer used maps to archive.

All files in the archive will no be updated. Ive added a copy of the current trader files too, so the old traders and trader cities can still be used with the current trader files.

Give me a hint if you think some of the files should be moved back.
This commit is contained in:
A Man
2019-11-09 14:49:40 +01:00
parent ae3a4fa2c8
commit 6699d8d746
170 changed files with 4569 additions and 1 deletions

View File

@@ -0,0 +1,35 @@
respawn = "BASE";
respawnDelay = 0;
respawnDialog = 0;
onLoadMission = "DayZ Epoch Proving Grounds PMC";
OnLoadIntro = "Welcome to Proving Grounds PMC";
OnLoadIntroTime = 0;
OnLoadMissionTime = 0;
disabledAI = 1;
disableChannels[] = {0,2,6};
enableItemsDropping = 0;
onPauseScript = "";
briefing = 0;
debriefing = 0;
titleParam1 = "AutoLogin:";
valuesParam1[] = {1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 15, 20, 25, 30, 31};
defValueParam1 = 10; //auto login time limit in seconds, set value to 31 to disable auto login
textsParam1[] = {1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 15, 20, 25, 30, "Disabled"};
loadScreen = "\z\addons\dayz_code\gui\loadingscreen.paa";
class Header
{
gameType = COOP; //DM, Team, Coop, ...
minPlayers = 1; //min # of players the mission supports
maxPlayers = 100; //Max # of players the mission supports
};
aiKills = 1;
diagRadio = 1;
diagHit = 1;
#include "\z\addons\dayz_code\gui\description.hpp"
#include "\z\addons\dayz_code\Configs\CfgLoot\CfgLoot.hpp"
#include "\z\addons\dayz_code\Configs\CfgServerTrader\CfgServerTrader.hpp"

View File

@@ -0,0 +1,140 @@
/*
For DayZ Epoch
Addons Credits: Jetski Yanahui by Kol9yN, Zakat, Gerasimow9, YuraPetrov, zGuba, A.Karagod, IceBreakr, Sahbazz
*/
//Server settings
dayZ_instance = 8; //Instance ID of this server
dayZ_serverName = ""; //Shown to all players in the bottom left of the screen (country code + server number)
//Game settings
dayz_antihack = 1; // DayZ Antihack / 1 = enabled // 0 = disabled
dayz_REsec = 1; // DayZ RE Security / 1 = enabled // 0 = disabled
dayz_enableRules = true; //Enables a nice little news/rules feed on player login (make sure to keep the lists quick).
dayz_quickSwitch = false; //Turns on forced animation for weapon switch. (hotkeys 1,2,3) False = enable animations, True = disable animations
dayz_POIs = false; //Adds Point of Interest map additions (negatively impacts FPS)
dayz_infectiousWaterholes = false; //Randomly adds some bodies, graves and wrecks by ponds (negatively impacts FPS)
dayz_ForcefullmoonNights = true; // Forces night time to be full moon.
dayz_randomMaxFuelAmount = 500; //Puts a random amount of fuel in all fuel stations.
//DayZMod presets
dayz_presets = "Custom"; //"Custom","Classic","Vanilla","Elite"
//Only need to edit if you are running a custom server.
if (dayz_presets == "Custom") then {
dayz_enableGhosting = false; //Enable disable the ghosting system.
dayz_ghostTimer = 60; //Sets how long in seconds a player must be disconnected before being able to login again.
dayz_spawnselection = 0; //(Chernarus only) Turn on spawn selection 0 = random only spawns, 1 = spawn choice based on limits
dayz_spawncarepkgs_clutterCutter = 0; //0 = loot hidden in grass, 1 = loot lifted, 2 = no grass
dayz_spawnCrashSite_clutterCutter = 0; // heli crash options 0 = loot hidden in grass, 1 = loot lifted, 2 = no grass
dayz_spawnInfectedSite_clutterCutter = 0; // infected base spawn 0 = loot hidden in grass, 1 = loot lifted, 2 = no grass
dayz_bleedingeffect = 2; //1 = blood on the ground (negatively impacts FPS), 2 = partical effect, 3 = both
dayz_OpenTarget_TimerTicks = 60 * 10; //how long can a player be freely attacked for after attacking someone unprovoked
dayz_nutritionValuesSystem = true; //true, Enables nutrition system, false, disables nutrition system.
dayz_classicBloodBagSystem = true; // disable blood types system and use the single classic ItemBloodbag
dayz_enableFlies = false; // Enable flies on dead bodies (negatively impacts FPS).
};
//Temp settings
dayz_DamageMultiplier = 2; //1 - 0 = Disabled, anything over 1 will multiply damage. Damage Multiplier for Zombies.
dayz_maxGlobalZeds = 500; //Limit the total zeds server wide.
dayz_temperature_override = false; // Set to true to disable all temperature changes.
enableRadio false;
enableSentences false;
// EPOCH CONFIG VARIABLES START //
#include "\z\addons\dayz_code\configVariables.sqf" // Don't remove this line
// See the above file for a full list including descriptions and default values
// Uncomment the lines below to change the default loadout
//DefaultMagazines = ["HandRoadFlare","ItemBandage","ItemPainkiller","8Rnd_9x18_Makarov","8Rnd_9x18_Makarov"];
//DefaultWeapons = ["Makarov_DZ","ItemFlashlight"];
//DefaultBackpack = "DZ_Patrol_Pack_EP1";
//DefaultBackpackItems = []; // Can include both weapons and magazines i.e. ["PDW_DZ","30Rnd_9x19_UZI"];
dayz_paraSpawn = false; // Halo spawn
DZE_BackpackAntiTheft = false; // Prevent stealing from backpacks in trader zones
DZE_BuildOnRoads = false; // Allow building on roads
DZE_PlayerZed = true; // Enable spawning as a player zombie when players die with infected status
DZE_R3F_WEIGHT = true; // Enable R3F weight. Players carrying too much will be overburdened and forced to move slowly.
DZE_StaticConstructionCount = 0; // Steps required to build. If greater than 0 this applies to all objects.
DZE_GodModeBase = false; // Make player built base objects indestructible
DZE_requireplot = 1; // Require a plot pole to build 0 = Off, 1 = On
DZE_PlotPole = [30,45]; // Radius owned by plot pole [Regular objects,Other plotpoles]. Difference between them is the minimum buffer between bases.
DZE_BuildingLimit = 150; // Max number of built objects allowed in DZE_PlotPole radius
DZE_SafeZonePosArray = []; // Format is [[[3D POS],RADIUS],[[3D POS],RADIUS]]; Stops loot and zed spawn, salvage and players being killed if their vehicle is destroyed in these zones.
DZE_SelfTransfuse = true; // Allow players to bloodbag themselves
DZE_selfTransfuse_Values = [12000,15,120]; // [blood amount given, infection chance %, cooldown in seconds]
MaxDynamicDebris = 100; // Max number of random road blocks to spawn around the map
MaxVehicleLimit = 50; // Max number of random vehicles to spawn around the map
spawnArea = 500; // Distance around markers to find a safe spawn position
spawnShoremode = 0; // Random spawn locations 1 = on shores, 0 = inland
EpochUseEvents = false; //Enable event scheduler. Define custom scripts in dayz_server\modules to run on a schedule.
EpochEvents = [["any","any","any","any",30,"crash_spawner"],["any","any","any","any",0,"crash_spawner"],["any","any","any","any",15,"supply_drop"]];
// EPOCH CONFIG VARIABLES END //
diag_log 'dayz_preloadFinished reset';
dayz_preloadFinished=nil;
onPreloadStarted "diag_log [diag_tickTime,'onPreloadStarted']; dayz_preloadFinished = false;";
onPreloadFinished "diag_log [diag_tickTime,'onPreloadFinished']; dayz_preloadFinished = true;";
with uiNameSpace do {RscDMSLoad=nil;}; // autologon at next logon
if (!isDedicated) then {
enableSaving [false, false];
startLoadingScreen ["","RscDisplayLoadCustom"];
progressLoadingScreen 0;
dayz_loadScreenMsg = localize 'str_login_missionFile';
progress_monitor = [] execVM "\z\addons\dayz_code\system\progress_monitor.sqf";
0 cutText ['','BLACK',0];
0 fadeSound 0;
0 fadeMusic 0;
};
initialized = false;
call compile preprocessFileLineNumbers "\z\addons\dayz_code\init\variables.sqf";
progressLoadingScreen 0.05;
call compile preprocessFileLineNumbers "\z\addons\dayz_code\init\publicEH.sqf";
progressLoadingScreen 0.1;
call compile preprocessFileLineNumbers "\z\addons\dayz_code\medical\setup_functions_med.sqf";
progressLoadingScreen 0.15;
call compile preprocessFileLineNumbers "\z\addons\dayz_code\init\compiles.sqf";
progressLoadingScreen 0.25;
call compile preprocessFileLineNumbers "server_traders.sqf";
call compile preprocessFileLineNumbers "\z\addons\dayz_code\system\mission\provinggrounds_pmc.sqf"; //Add trader city objects locally on every machine early
initialized = true;
setTerrainGrid 25;
if (dayz_REsec == 1) then {call compile preprocessFileLineNumbers "\z\addons\dayz_code\system\REsec.sqf";};
execVM "\z\addons\dayz_code\system\DynamicWeatherEffects.sqf";
if (isServer) then {
if (dayz_POIs) then {call compile preprocessFileLineNumbers "\z\addons\dayz_code\system\mission\chernarus\poi\init.sqf";};
call compile preprocessFileLineNumbers "\z\addons\dayz_server\system\dynamic_vehicle.sqf";
call compile preprocessFileLineNumbers "\z\addons\dayz_server\system\server_monitor.sqf";
execVM "\z\addons\dayz_server\traders\provinggrounds_pmc.sqf"; //Add trader agents
//Get the server to setup what waterholes are going to be infected and then broadcast to everyone.
if (dayz_infectiousWaterholes) then {execVM "\z\addons\dayz_code\system\mission\chernarus\infectiousWaterholes\init.sqf";};
// Lootable objects from CfgTownGeneratorDefault.hpp
if (dayz_townGenerator) then { execVM "\z\addons\dayz_code\system\mission\chernarus\MainLootableObjects.sqf"; };
};
if (!isDedicated) then {
if (toLower worldName == "chernarus") then {
execVM "\z\addons\dayz_code\system\mission\chernarus\hideGlitchObjects.sqf";
};
//Enables Plant lib fixes
execVM "\z\addons\dayz_code\system\antihack.sqf";
if (dayz_townGenerator) then { execVM "\z\addons\dayz_code\compile\client_plantSpawner.sqf"; };
execFSM "\z\addons\dayz_code\system\player_monitor.fsm";
//[false,12] execVM "\z\addons\dayz_code\compile\local_lights_init.sqf";
if (DZE_R3F_WEIGHT) then {execVM "\z\addons\dayz_code\external\R3F_Realism\R3F_Realism_Init.sqf";};
waitUntil {scriptDone progress_monitor};
cutText ["","BLACK IN", 3];
3 fadeSound 1;
3 fadeMusic 1;
endLoadingScreen;
};

View File

@@ -0,0 +1,349 @@
version=11;
class Mission
{
addOns[]=
{
"provinggrounds_pmc",
"map_eu",
"ca_modules_animals",
"dayz_anim",
"dayz_code",
"dayz_communityassets",
"dayz_weapons",
"dayz_equip",
"cacharacters_pmc",
"ca_modules_functions",
"zero_buildings",
"dayz_epoch",
"warfarebuildings",
"glt_m300t",
"pook_h13",
"csj_gyroac",
"redryder",
"Anzio_20"
};
addOnsAuto[]=
{
"dayz_weapons",
"ca_modules_functions",
"provinggrounds_pmc"
};
randomSeed=11171215;
class Intel
{
briefingName="DayZ Epoch Proving Grounds PMC";
briefingDescription="Version 1.0.6.2";
startWeather=0;
forecastWeather=0;
year=2008;
month=6;
day=1;
hour=12;
};
class Groups
{
items=2;
class Item0
{
side="WEST";
class Vehicles
{
items=100;
#define PLRDEF position[]={3797,42,3282};azimut=0;side="WEST";vehicle="Survivor1_DZ";skill=0.6;init="this enableSimulation false;this allowDamage false;this disableAI 'FSM';this disableAI 'ANIM';this disableAI 'MOVE';";player="PLAY CDG";
class Item0{id=0;PLRDEF};
class Item1
{
position[]={3797,42,3282};
azimut=0;
id=0;
side="WEST";
vehicle="Survivor1_DZ";
player="PLAYER COMMANDER";
leader=1;
rank="SERGEANT";
skill=0.6;
init="this enableSimulation false;this allowDamage false;this disableAI 'FSM';this disableAI 'ANIM';this disableAI 'MOVE';";
};
class Item2{id=2;PLRDEF};
class Item3{id=3;PLRDEF};
class Item4{id=4;PLRDEF};
class Item5{id=5;PLRDEF};
class Item6{id=6;PLRDEF};
class Item7{id=7;PLRDEF};
class Item8{id=8;PLRDEF};
class Item9{id=9;PLRDEF};
class Item10{id=10;PLRDEF};
class Item11{id=11;PLRDEF};
class Item12{id=12;PLRDEF};
class Item13{id=13;PLRDEF};
class Item14{id=14;PLRDEF};
class Item15{id=15;PLRDEF};
class Item16{id=16;PLRDEF};
class Item17{id=17;PLRDEF};
class Item18{id=18;PLRDEF};
class Item19{id=19;PLRDEF};
class Item20{id=20;PLRDEF};
class Item21{id=21;PLRDEF};
class Item22{id=22;PLRDEF};
class Item23{id=23;PLRDEF};
class Item24{id=24;PLRDEF};
class Item25{id=25;PLRDEF};
class Item26{id=26;PLRDEF};
class Item27{id=27;PLRDEF};
class Item28{id=28;PLRDEF};
class Item29{id=29;PLRDEF};
class Item30{id=30;PLRDEF};
class Item31{id=31;PLRDEF};
class Item32{id=32;PLRDEF};
class Item33{id=33;PLRDEF};
class Item34{id=34;PLRDEF};
class Item35{id=35;PLRDEF};
class Item36{id=36;PLRDEF};
class Item37{id=37;PLRDEF};
class Item38{id=38;PLRDEF};
class Item39{id=39;PLRDEF};
class Item40{id=40;PLRDEF};
class Item41{id=41;PLRDEF};
class Item42{id=42;PLRDEF};
class Item43{id=43;PLRDEF};
class Item44{id=44;PLRDEF};
class Item45{id=45;PLRDEF};
class Item46{id=46;PLRDEF};
class Item47{id=47;PLRDEF};
class Item48{id=48;PLRDEF};
class Item49{id=49;PLRDEF};
class Item50{id=50;PLRDEF};
class Item51{id=51;PLRDEF};
class Item52{id=52;PLRDEF};
class Item53{id=53;PLRDEF};
class Item54{id=54;PLRDEF};
class Item55{id=55;PLRDEF};
class Item56{id=56;PLRDEF};
class Item57{id=57;PLRDEF};
class Item58{id=58;PLRDEF};
class Item59{id=59;PLRDEF};
class Item60{id=60;PLRDEF};
class Item61{id=61;PLRDEF};
class Item62{id=62;PLRDEF};
class Item63{id=63;PLRDEF};
class Item64{id=64;PLRDEF};
class Item65{id=65;PLRDEF};
class Item66{id=66;PLRDEF};
class Item67{id=67;PLRDEF};
class Item68{id=68;PLRDEF};
class Item69{id=69;PLRDEF};
class Item70{id=70;PLRDEF};
class Item71{id=71;PLRDEF};
class Item72{id=72;PLRDEF};
class Item73{id=73;PLRDEF};
class Item74{id=74;PLRDEF};
class Item75{id=75;PLRDEF};
class Item76{id=76;PLRDEF};
class Item77{id=77;PLRDEF};
class Item78{id=78;PLRDEF};
class Item79{id=79;PLRDEF};
class Item80{id=80;PLRDEF};
class Item81{id=81;PLRDEF};
class Item82{id=82;PLRDEF};
class Item83{id=83;PLRDEF};
class Item84{id=84;PLRDEF};
class Item85{id=85;PLRDEF};
class Item86{id=86;PLRDEF};
class Item87{id=87;PLRDEF};
class Item88{id=88;PLRDEF};
class Item89{id=89;PLRDEF};
class Item90{id=90;PLRDEF};
class Item91{id=91;PLRDEF};
class Item92{id=92;PLRDEF};
class Item93{id=93;PLRDEF};
class Item94{id=94;PLRDEF};
class Item95{id=95;PLRDEF};
class Item96{id=96;PLRDEF};
class Item97{id=97;PLRDEF};
class Item98{id=98;PLRDEF};
class Item99{id=99;PLRDEF};
};
};
class Item1
{
side="LOGIC";
class Vehicles
{
items=1;
class Item0
{
position[]={-144,0,2320};
id=50;
side="LOGIC";
vehicle="FunctionsManager";
leader=1;
lock="UNLOCKED";
skill=0.6;
};
};
};
};
class Markers
{
items=15;
class Item0
{
position[]={1056,51,1016};
name="center";
type="Empty";
a=2000;b=2000;
};
class Item1
{
position[]={3796,42,3281};
name="respawn_west";
type="Empty";
};
class Item2
{
position[]={436,70,420};
name="spawn0";
type="Empty";
};
class Item3
{
position[]={1294,19,1259};
name="spawn1";
type="Empty";
};
class Item4
{
position[]={1087,50,1678};
name="spawn2";
type="Empty";
};
class Item5
{
position[]={405,51,1684};
name="spawn3";
type="Empty";
};
class Item6
{
position[]={411,68,977};
name="spawn4";
type="Empty";
};
class Item7
{
position[]={751,51,770};
name="spawn5";
type="Empty";
};
class Item8
{
position[]={1412,49,432};
name="spawn6";
type="Empty";
};
class Item9
{
position[]={1685,52,1061};
name="spawn7";
type="Empty";
};
class Item10
{
position[]={1536,50,1530};
name="spawn8";
type="Empty";
};
class Item11
{
position[]={985,51,426};
name="spawn9";
type="Empty";
};
class Item12
{
position[]={1717,55,681};
name="spawn10";
type="Empty";
};
class Item13
{
position[]={1056,51,1016};
name="crashsites";
type="Empty";
a=2000;b=2000;
};
class Item14
{
position[]={1056,51,1016};
name="carepackages";
type="Empty";
a=2000;b=0;
};
};
};
class Intro
{
addOns[]=
{
"provinggrounds_pmc"
};
addOnsAuto[]=
{
"provinggrounds_pmc"
};
randomSeed=6913869;
class Intel
{
startWeather=0;
forecastWeather=0;
year=2008;
month=10;
day=11;
hour=9;
minute=20;
};
};
class OutroWin
{
addOns[]=
{
"provinggrounds_pmc"
};
addOnsAuto[]=
{
"provinggrounds_pmc"
};
randomSeed=4081731;
class Intel
{
startWeather=0;
forecastWeather=0;
year=2008;
month=10;
day=11;
hour=9;
minute=20;
};
};
class OutroLoose
{
addOns[]=
{
"provinggrounds_pmc"
};
addOnsAuto[]=
{
"provinggrounds_pmc"
};
randomSeed=4975929;
class Intel
{
startWeather=0;
forecastWeather=0;
year=2008;
month=10;
day=11;
hour=9;
minute=20;
};
};

View File

@@ -0,0 +1,29 @@
private ["_messages","_timeout"];
_messages = [
["DayZ Epoch", "Welcome "+(name player)],
["World", worldName],
["Teamspeak", "some TS info"],
["Website/Forums", "some website info"],
["Server Rules", "Duping, glitching or using any<br />exploit will result in a<br />permanent ban."],
["Server Rules", "No talking in side."],
["Server Rules", "Hackers will be banned permanently<br />Respect others"],
["News", "Some random new info!<br />Random news<br />"]
];
_timeout = 5;
{
private ["_title","_content","_titleText"];
uiSleep 2;
_title = _x select 0;
_content = _x select 1;
_titleText = format[("<t font='TahomaB' size='0.40' color='#a81e13' align='right' shadow='1' shadowColor='#000000'>%1</t><br /><t shadow='1'shadowColor='#000000' font='TahomaB' size='0.60' color='#FFFFFF' align='right'>%2</t>"), _title, _content];
[
_titleText,
[safezoneX + safezoneW - 0.8,0.50], //DEFAULT: 0.5,0.35
[safezoneY + safezoneH - 0.8,0.7], //DEFAULT: 0.8,0.7
_timeout,
0.5
] spawn BIS_fnc_dynamicText;
uiSleep (_timeout * 1.1);
} forEach _messages;

View File

@@ -0,0 +1 @@
#include "\z\addons\dayz_code\system\mission\server_traders\provinggrounds_pmc.sqf"