mirror of
https://github.com/EpochModTeam/DayZ-Epoch.git
synced 2026-02-25 17:31:36 +03:00
MPMissions updates
This commit is contained in:
@@ -1,12 +1,16 @@
|
||||
respawn = "BASE";
|
||||
respawndelay = 5;
|
||||
onLoadMission="DayZ_Epoch Lingor";
|
||||
onLoadMission="DayZ Epoch Lingor";
|
||||
OnLoadIntro = "Welcome to Lingor Island";
|
||||
OnLoadIntroTime = False;
|
||||
OnLoadMissionTime = False;
|
||||
disabledAI = true;
|
||||
disableChannels[]={0,2,6};
|
||||
disableChannels[]={0,1,2,6};
|
||||
enableItemsDropping=0;
|
||||
#include "R3F_Realism\R3F_Weight\R3F_CfgWeight.h"
|
||||
|
||||
onPauseScript = "\z\addons\dayz_code\compile\player_onPause.sqf";
|
||||
loadScreen = "\z\addons\dayz_code\gui\dayz_logo_ca.paa";
|
||||
|
||||
class Header
|
||||
{
|
||||
|
||||
@@ -10,7 +10,6 @@ AllowedVehiclesList = [
|
||||
["hilux1_civil_2_covered",2],
|
||||
["datsun1_civil_3_open",5],
|
||||
["Pickup_PK_TK_GUE_EP1",5],
|
||||
["Octavia_ACR",2],
|
||||
["VWGolf",2],
|
||||
["Lada1",1],
|
||||
["Lada2",1],
|
||||
@@ -53,7 +52,6 @@ AllowedVehiclesList = [
|
||||
["Fishing_Boat",2],
|
||||
["Smallboat_1",2],
|
||||
["Smallboat_2",2],
|
||||
["M113Ambul_UN_EP1",1],
|
||||
["KamazRefuel",1],
|
||||
["UralRefuel_TK_EP1",1],
|
||||
["MtvrRefuel_DES_EP1",1],
|
||||
|
||||
@@ -1,24 +1,32 @@
|
||||
startLoadingScreen ["","DayZ_loadingScreen"];
|
||||
/*
|
||||
INITILIZATION
|
||||
*/
|
||||
startLoadingScreen ["","RscDisplayLoadCustom"];
|
||||
cutText ["","BLACK OUT"];
|
||||
enableSaving [false, false];
|
||||
|
||||
//REALLY IMPORTANT VALUES
|
||||
dayZ_instance = 7; //The instance
|
||||
hiveInUse = true;
|
||||
dayzHiveRequest = [];
|
||||
initialized = false;
|
||||
dayz_previousID = 0;
|
||||
|
||||
// AMP config
|
||||
//disable greeting menu
|
||||
player setVariable ["BIS_noCoreConversations", true];
|
||||
//disable radio messages to be heard and shown in the left lower corner of the screen
|
||||
enableRadio false;
|
||||
|
||||
// DayZ Epoch config
|
||||
spawnShoremode = 1; // Default = 1 (on shore)
|
||||
spawnArea= 1500; // Default = 1500
|
||||
spawnArea = 1500; // Default = 1500
|
||||
MaxHeliCrashes= 5; // Default = 5
|
||||
MaxVehicleLimit = 50; // Default = 50
|
||||
MaxDynamicDebris = 100; // Default = 100
|
||||
MaxVehicleLimit = 300; // Default = 50
|
||||
MaxDynamicDebris = 500; // Default = 100
|
||||
dayz_MapArea = 12000; // Default = 10000
|
||||
dayz_maxLocalZombies = 40; // Default = 40
|
||||
|
||||
|
||||
//Load in compiled functions
|
||||
call compile preprocessFileLineNumbers "\z\addons\dayz_code\init\variables.sqf"; //Initilize the Variables (IMPORTANT: Must happen very early)
|
||||
progressLoadingScreen 0.1;
|
||||
call compile preprocessFileLineNumbers "\z\addons\dayz_code\init\publicEH.sqf"; //Initilize the publicVariable event handlers
|
||||
@@ -26,6 +34,8 @@ progressLoadingScreen 0.2;
|
||||
call compile preprocessFileLineNumbers "\z\addons\dayz_code\medical\setup_functions_med.sqf"; //Functions used by CLIENT for medical
|
||||
progressLoadingScreen 0.4;
|
||||
call compile preprocessFileLineNumbers "\z\addons\dayz_code\init\compiles.sqf"; //Compile regular functions
|
||||
progressLoadingScreen 0.5;
|
||||
call compile preprocessFileLineNumbers "server_traders.sqf"; //Compile trader configs
|
||||
progressLoadingScreen 1.0;
|
||||
|
||||
"filmic" setToneMappingParams [0.153, 0.357, 0.231, 0.1573, 0.011, 3.750, 6, 4]; setToneMapping "Filmic";
|
||||
@@ -38,22 +48,26 @@ waitUntil {time > 3};
|
||||
|
||||
if ((!isServer) && (player != player)) then
|
||||
{
|
||||
waitUntil {player == player};
|
||||
waitUntil {player == player};
|
||||
waitUntil {time > 3};
|
||||
};
|
||||
|
||||
if (isServer) then {
|
||||
//Run the server monitor
|
||||
hiveInUse = true;
|
||||
_serverMonitor = [] execVM "\z\addons\dayz_server\system\server_monitor.sqf";
|
||||
call compile preprocessFileLineNumbers "dynamic_vehicle.sqf"; //Compile vehicle configs
|
||||
|
||||
// Add trader citys
|
||||
_nil = [] execVM "mission.sqf";
|
||||
_serverMonitor = [] execVM "\z\addons\dayz_code\system\server_monitor.sqf";
|
||||
};
|
||||
|
||||
if (!isDedicated) then {
|
||||
//Conduct map operations
|
||||
0 fadeSound 0;
|
||||
0 cutText [(localize "STR_AUTHENTICATING"), "BLACK FADED",60];
|
||||
waitUntil {!isNil "dayz_loadScreenMsg"};
|
||||
dayz_loadScreenMsg = (localize "STR_AUTHENTICATING");
|
||||
|
||||
//Run the player monitor
|
||||
_id = player addEventHandler ["Respawn", {_id = [] spawn player_death;}];
|
||||
_playerMonitor = [] execVM "\z\addons\dayz_code\system\player_monitor.sqf";
|
||||
_void = [] execVM "R3F_Realism\R3F_Realism_Init.sqf";
|
||||
};
|
||||
7193
MPMissions/DayZ_Epoch_7.Lingor/mission.sqf
Normal file
7193
MPMissions/DayZ_Epoch_7.Lingor/mission.sqf
Normal file
File diff suppressed because it is too large
Load Diff
@@ -24,8 +24,14 @@ class Mission
|
||||
"cacharacters_pmc",
|
||||
"ca_modules_functions",
|
||||
"ibr_lingor",
|
||||
"ibr_lcivilian_patch",
|
||||
"chn_crocodile",
|
||||
"warfarebuildings"
|
||||
"warfarebuildings",
|
||||
"ibr_lingor",
|
||||
"glt_m300t",
|
||||
"sigisolda",
|
||||
"suv_col",
|
||||
"csj_gyroac"
|
||||
};
|
||||
addOnsAuto[]=
|
||||
{
|
||||
@@ -37,8 +43,8 @@ class Mission
|
||||
randomSeed=11171215;
|
||||
class Intel
|
||||
{
|
||||
briefingName="Lingor DayZ_Epoch";
|
||||
briefingDescription="Lingor DayZ_Epoch Private Server";
|
||||
briefingName="lingor DayZ Epoch";
|
||||
briefingDescription="lingor DayZ Epoch Private Server";
|
||||
startWeather=0.067362607;
|
||||
forecastWeather=0.52341133;
|
||||
year=2008;
|
||||
@@ -1253,7 +1259,7 @@ class Mission
|
||||
};
|
||||
class Markers
|
||||
{
|
||||
items=13;
|
||||
items=35;
|
||||
class Item0
|
||||
{
|
||||
position[]={4078.8516,30.836605,4757.7241};
|
||||
@@ -1332,12 +1338,191 @@ class Mission
|
||||
name="spawn10";
|
||||
type="Empty";
|
||||
};
|
||||
class Item13
|
||||
{
|
||||
position[]={6011.7676,13.080506,6626.9902};
|
||||
name="RaceTrack";
|
||||
text="Rommelo's Raceway";
|
||||
type="mil_dot";
|
||||
colorName="ColorBlack";
|
||||
fillName="Border";
|
||||
drawBorder=1;
|
||||
};
|
||||
class Item14
|
||||
{
|
||||
position[]={6539.8096,20.420567,6868.8203};
|
||||
name="RepairGuy";
|
||||
text="Axles Repair Shop";
|
||||
type="mil_dot";
|
||||
colorName="ColorYellow";
|
||||
};
|
||||
class Item15
|
||||
{
|
||||
position[]={7026.7695,11.873646,7105.6934};
|
||||
name="PlaneVendor";
|
||||
text="AWOL's Planes";
|
||||
type="mil_dot";
|
||||
colorName="ColorRed";
|
||||
};
|
||||
class Item16
|
||||
{
|
||||
position[]={3054.834,14.806208,8032.8389};
|
||||
name="Wholesale";
|
||||
text="Wholesaler Blivion";
|
||||
type="mil_dot";
|
||||
colorName="ColorRed";
|
||||
};
|
||||
class Item17
|
||||
{
|
||||
position[]={3608.7268,235.08131,3685.8149};
|
||||
name="HighWeapons/ammo";
|
||||
text="Jim and Joe's Weapons/Ammo";
|
||||
type="mil_dot";
|
||||
colorName="ColorOrange";
|
||||
};
|
||||
class Item18
|
||||
{
|
||||
position[]={4245.8931,46.366299,4486.48};
|
||||
name="Parts";
|
||||
text="Whiskey's Parts";
|
||||
type="mil_dot";
|
||||
colorName="ColorYellow";
|
||||
};
|
||||
class Item19
|
||||
{
|
||||
position[]={4033.0662,23.660297,1668.62};
|
||||
name="Choppers";
|
||||
text="Chip's Choppers";
|
||||
type="mil_dot";
|
||||
colorName="ColorRed";
|
||||
};
|
||||
class Item20
|
||||
{
|
||||
position[]={7553.0757,11.996795,3028.4924};
|
||||
name="lowEndCars";
|
||||
text="Used Cars";
|
||||
type="mil_dot";
|
||||
colorName="ColorBrown";
|
||||
};
|
||||
class Item21
|
||||
{
|
||||
position[]={7514.9941,10.998494,2953.7041};
|
||||
name="LowEndWeapons";
|
||||
text="Chuck and Buck's Weapons/Ammo";
|
||||
type="mil_dot";
|
||||
colorName="ColorOrange";
|
||||
};
|
||||
class Item22
|
||||
{
|
||||
position[]={3024.4265,45.493584,5956.77};
|
||||
name="HighEndCars";
|
||||
text="Green's Quality Cars";
|
||||
type="mil_dot";
|
||||
colorName="ColorBrown";
|
||||
};
|
||||
class Item23
|
||||
{
|
||||
position[]={895.26929,29.506145,5271.8955};
|
||||
name="MedicalandBags";
|
||||
text="Alejandria and Melly's Medica/Survival Shop";
|
||||
type="mil_circle";
|
||||
colorName="ColorGreen";
|
||||
};
|
||||
class Item24
|
||||
{
|
||||
position[]={8357.583,23.403641,8740.0039};
|
||||
name="Wholesaler";
|
||||
text="Wholesaler Clive";
|
||||
type="mil_dot";
|
||||
colorName="ColorRed";
|
||||
};
|
||||
class Item25
|
||||
{
|
||||
position[]={4178.8506,12.651016,2342.1643};
|
||||
name="BagsNFood";
|
||||
text="Bag lady Gina";
|
||||
type="mil_dot";
|
||||
colorName="ColorGreen";
|
||||
};
|
||||
class Item26
|
||||
{
|
||||
position[]={728.23462,41.254562,1571.2231};
|
||||
name="Wholesalers";
|
||||
text="Wholesaler Santos";
|
||||
type="mil_dot";
|
||||
colorName="ColorRed";
|
||||
};
|
||||
class Item27
|
||||
{
|
||||
position[]={1724.5925,42.225693,4137.6128};
|
||||
name="DirtTrackVendor";
|
||||
text="Adventure 4x4";
|
||||
type="mil_dot";
|
||||
colorName="ColorBlack";
|
||||
};
|
||||
class Item28
|
||||
{
|
||||
position[]={2376.5916,56.990025,4120.5234};
|
||||
name="OffRoad4x4";
|
||||
text="MotoDrom 4x4 Offroad";
|
||||
type="mil_dot";
|
||||
colorName="ColorBlack";
|
||||
};
|
||||
class Item29
|
||||
{
|
||||
position[]={4015.4907,4.2447982,5216.2656};
|
||||
name="BoatVendor";
|
||||
text="Big Bob's Boats";
|
||||
type="mil_triangle";
|
||||
colorName="ColorBlue";
|
||||
};
|
||||
class Item30
|
||||
{
|
||||
position[]={5523.2813,2.2458067,4412.8027};
|
||||
name="BoatVendor1";
|
||||
text="Juan's Tour Boats";
|
||||
type="mil_triangle";
|
||||
colorName="ColorBlue";
|
||||
};
|
||||
class Item31
|
||||
{
|
||||
position[]={3939.04,2.6928787,2199.4922};
|
||||
name="BoatVendor2";
|
||||
text="Jd's Armed boats";
|
||||
type="mil_triangle";
|
||||
colorName="ColorBlue";
|
||||
};
|
||||
class Item32
|
||||
{
|
||||
position[]={6673.0313,52.073902,6355.9775};
|
||||
name="BagVendor1";
|
||||
text="Stella's Stop";
|
||||
type="mil_dot";
|
||||
colorName="ColorGreen";
|
||||
};
|
||||
class Item33
|
||||
{
|
||||
position[]={4238.8086,48.201847,4842.0874};
|
||||
name="BagVendor2";
|
||||
text="Samish Shop";
|
||||
type="mil_dot";
|
||||
colorName="ColorGreen";
|
||||
};
|
||||
class Item34
|
||||
{
|
||||
position[]={6679.3359,26.402266,4296.9727};
|
||||
name="Doctor2";
|
||||
text="Mad Scientist";
|
||||
type="mil_dot";
|
||||
colorName="ColorRed";
|
||||
};
|
||||
};
|
||||
};
|
||||
class Intro
|
||||
{
|
||||
addOns[]=
|
||||
{
|
||||
"ibr_lingor",
|
||||
"ibr_lingor"
|
||||
};
|
||||
addOnsAuto[]=
|
||||
@@ -1360,6 +1545,7 @@ class OutroWin
|
||||
{
|
||||
addOns[]=
|
||||
{
|
||||
"ibr_lingor",
|
||||
"ibr_lingor"
|
||||
};
|
||||
addOnsAuto[]=
|
||||
@@ -1382,6 +1568,7 @@ class OutroLoose
|
||||
{
|
||||
addOns[]=
|
||||
{
|
||||
"ibr_lingor",
|
||||
"ibr_lingor"
|
||||
};
|
||||
addOnsAuto[]=
|
||||
|
||||
177
MPMissions/DayZ_Epoch_7.Lingor/server_traders.sqf
Normal file
177
MPMissions/DayZ_Epoch_7.Lingor/server_traders.sqf
Normal file
@@ -0,0 +1,177 @@
|
||||
// DayZ Epoch TRADERS for 6 and 7
|
||||
serverTraders = ["RU_Worker1","Dr_Annie_Baker_EP1","CIV_EuroWoman01_EP1","ibr_lingorman2s","Worker2","TK_CIV_Woman03_EP1","ibr_lingorman3s","ibr_lingorman5s","ibr_lingorman4s","ibr_lingorman2","Citizen2_EP1","Worker1","RU_Madam3","Pilot","CIV_EuroMan02_EP1","CIV_EuroMan01_EP1","ibr_lingorman7s","Damsel3","Rocker4","Worker4","ibr_lingorman7","ibr_lingorman5","Citizen3_EP1","ibr_lingorman6","ibr_lingorman6s","TK_CIV_Woman02_EP1","Pilot_EP1","TK_CIV_Worker01_EP1","RU_Doctor"];
|
||||
// START PER TRADER CONFIG
|
||||
// Whiskey's Parts Shop
|
||||
menu_RU_Worker1 = [
|
||||
[["Vehicle Parts",63],["Building Supplies",64]],
|
||||
[],
|
||||
"neutral"
|
||||
];
|
||||
// Melly's Medical
|
||||
menu_Dr_Annie_Baker_EP1 = [
|
||||
[["Medical Supplies",65],["Clothes",66],["Chem lights/Flares",67],["Smoke Grenades",68]],
|
||||
[["FoodBioMeat","ItemZombieParts",1,1,"buy","Zombie Parts","Bio Meat",101]],
|
||||
"friendly"
|
||||
];
|
||||
// Alejandria's General Supplies
|
||||
menu_CIV_EuroWoman01_EP1 = [
|
||||
[["Food/Drink",70],["Backpacks",72],["Clothes",73],["Toolbelt Items",74]],
|
||||
[],
|
||||
"friendly"
|
||||
];
|
||||
// Blivion's Wholesale Items
|
||||
menu_ibr_lingorman2s = [
|
||||
[["Wholesale Crates",69]],
|
||||
[],
|
||||
"neutral"
|
||||
];
|
||||
// Axle's Repair Shop
|
||||
menu_Worker2 = [
|
||||
[["Vehicle Parts",76],["Building Supplies",77],["Demolition Supplies",78]],
|
||||
[],
|
||||
"friendly"
|
||||
];
|
||||
// Stella's General Goods
|
||||
menu_TK_CIV_Woman03_EP1 = [
|
||||
[["Food/Drink",79],["Backpacks",80],["Clothes",81],["Toolbelt Items",82]],
|
||||
[["ItemCopperBar","TrashJackDaniels",1,1,"buy","Empty Wiskey Bottle","Copper Bar",101]],
|
||||
"friendly"
|
||||
];
|
||||
// Clive's Wholesale
|
||||
menu_ibr_lingorman3s = [
|
||||
[["Wholesale Crates",84]],
|
||||
[],
|
||||
"neutral"
|
||||
];
|
||||
// Big Bob's Boats
|
||||
menu_ibr_lingorman5s = [
|
||||
[["Fishing boats",85],["PBX",86]],
|
||||
[],
|
||||
"neutral"
|
||||
];
|
||||
// Juan's Tour Boats
|
||||
menu_ibr_lingorman4s = [
|
||||
[["Tour boats",87],["PBX",88]],
|
||||
[],
|
||||
"friendly"
|
||||
];
|
||||
// Jd'z Armed Boats
|
||||
menu_ibr_lingorman2 = [
|
||||
[["Armed Boats",89]],
|
||||
[],
|
||||
"friendly"
|
||||
];
|
||||
// Green's Quality Cars
|
||||
menu_Citizen2_EP1 = [
|
||||
[["Tracked Vehicles",90],["Armed Vehicles",91],["Fuel Trucks",92],["Armored Vehicles",93],["SUV's",120]],
|
||||
[],
|
||||
"friendly"
|
||||
];
|
||||
// Lyle's Parts
|
||||
menu_Worker1 = [
|
||||
[["Vehicle Parts",94],["Building Supplies",95]],
|
||||
[],
|
||||
"friendly"
|
||||
];
|
||||
// Bag Lady Gina
|
||||
menu_RU_Madam3 = [
|
||||
[["Food/Drink",96],["Backpacks",97],["Toolbelt Items",98],["Clothes",99]],
|
||||
[["ItemCopperBar","TrashJackDaniels",1,1,"buy","Empty Wiskey Bottle","Copper Bar",101]],
|
||||
"neutral"
|
||||
];
|
||||
// Chip's Choppers
|
||||
menu_Pilot = [
|
||||
[["Armed Choppers",100],["Unarmed Choppers",101]],
|
||||
[],
|
||||
"friendly"
|
||||
];
|
||||
// Jim's Ammo
|
||||
menu_CIV_EuroMan02_EP1 = [
|
||||
[["Pistol Ammo",102],["Assault Ammo",103],["Heavy Ammo",104],["Sniper Ammo",105]],
|
||||
[],
|
||||
"friendly"
|
||||
];
|
||||
// Joe's Weapons
|
||||
menu_CIV_EuroMan01_EP1 = [
|
||||
[["Pistols",106],["Assault Rifles",107],["Heavy Machine Guns",108],["Sniper Rifles",109]],
|
||||
[],
|
||||
"friendly"
|
||||
];
|
||||
// Rodger's 4x4
|
||||
menu_ibr_lingorman7s = [
|
||||
[["Offroad Trucks",110]],
|
||||
[],
|
||||
"friendly"
|
||||
];
|
||||
// Tina's Tarts
|
||||
menu_Damsel3 = [
|
||||
[["Food/Drinks",111],["Clothes",112]],
|
||||
[["ItemCopperBar","TrashJackDaniels",1,1,"buy","Empty Wiskey Bottle","Copper Bar",101]],
|
||||
"friendly"
|
||||
];
|
||||
// Sly's Moto
|
||||
menu_Rocker4 = [
|
||||
[["ATV's",113],["Dirt Bikes",114]],
|
||||
[],
|
||||
"friendly"
|
||||
];
|
||||
// Jim's Used Cars
|
||||
menu_Worker4 = [
|
||||
[["Trucks Armed",115],["Trucks Unarmed",116],["Cars",117],["Waggons",118],["Bus",119]],
|
||||
[],
|
||||
"neutral"
|
||||
];
|
||||
// Chucks Weapons
|
||||
menu_ibr_lingorman7 = [
|
||||
[["Pistols",121],["Assault Rifles",122],["Sniper Rifles",123]],
|
||||
[],
|
||||
"neutral"
|
||||
];
|
||||
// Buck's Shot
|
||||
menu_ibr_lingorman5 = [
|
||||
[["Pistol Ammo",124],["Assault Ammo",125],["Sniper Ammo",126]],
|
||||
[],
|
||||
"neutral"
|
||||
];
|
||||
// Santo's Wholesale
|
||||
menu_Citizen3_EP1 = [
|
||||
[["Wholesale Crates",127]],
|
||||
[],
|
||||
"neutral"
|
||||
];
|
||||
// Tire Guy
|
||||
menu_ibr_lingorman6 = [
|
||||
[["Vehicle Parts",128]],
|
||||
[],
|
||||
"friendly"
|
||||
];
|
||||
// Raul's Parts
|
||||
menu_ibr_lingorman6s = [
|
||||
[["Vehicle Parts",129]],
|
||||
[],
|
||||
"friendly"
|
||||
];
|
||||
// Samish Shop
|
||||
menu_TK_CIV_Woman02_EP1 = [
|
||||
[["Food/Drinks",188],["Backpacks",189],["Toolbelt Items",190],["Clothes",191]],
|
||||
[],
|
||||
"neutral"
|
||||
];
|
||||
// AWOL's Planes
|
||||
menu_Pilot_EP1 = [
|
||||
[["Cargo Planes",192]],
|
||||
[],
|
||||
"friendly"
|
||||
];
|
||||
// Rommelo's Raceway
|
||||
menu_TK_CIV_Worker01_EP1 = [
|
||||
[["Cars",194]],
|
||||
[],
|
||||
"friendly"
|
||||
];
|
||||
// Mad Scientist
|
||||
menu_RU_Doctor = [
|
||||
[["Medical Supplies",193]],
|
||||
[],
|
||||
"neutral"
|
||||
];
|
||||
Reference in New Issue
Block a user