mirror of
https://github.com/EpochModTeam/DayZ-Epoch.git
synced 2025-12-14 20:13:13 +03:00
Merge pull request #541 from andgregor/master
Pre Release Bug Fixes and Changes
This commit is contained in:
@@ -19,20 +19,24 @@ axe_streetLamps=[];
|
||||
|
||||
if (_objName in _lights) then {
|
||||
if(_rndLights<random 100)then{
|
||||
if(_rndLights/3>random 100)then{//Reduce chance more due to speed of script
|
||||
|
||||
for "_s" from 1 to 6 do {
|
||||
for "_s" from 1 to 8 do {
|
||||
if(_s%2==0)then{
|
||||
_x switchlight "off";
|
||||
}else{
|
||||
_x switchlight "on";
|
||||
};
|
||||
_sleeptime=(random 100)/100;
|
||||
_sleeptime=(random 220)/100;
|
||||
sleep _sleeptime;
|
||||
};
|
||||
_x switchlight "off";
|
||||
}else{
|
||||
_x switchlight "on";
|
||||
};
|
||||
}else{
|
||||
_x switchlight "on";
|
||||
};
|
||||
[axe_streetLamps , [_x]] call BIS_fnc_arrayPush;
|
||||
};
|
||||
};
|
||||
@@ -76,8 +80,10 @@ _doLit = _this select 4 select 0;
|
||||
_twrPos = getPos _twr;
|
||||
_rad=2.65;
|
||||
_oset=14;
|
||||
_nrTLs= position _twr nearObjects ["#lightpoint",30];
|
||||
_nrTLs= position _twr nearObjects ["#lightpoint",20];
|
||||
|
||||
if(count _nrTLs > 3)then{
|
||||
|
||||
{
|
||||
if(_doLit)then{
|
||||
[_lCol,_lbrt,_lamb,_x] call axe_lightPoint;
|
||||
@@ -86,6 +92,7 @@ _nrTLs= position _twr nearObjects ["#lightpoint",30];
|
||||
};
|
||||
sleep .2;
|
||||
}forEach _nrTLs;
|
||||
|
||||
}else{
|
||||
if(_doLit)then{
|
||||
for "_tls" from 1 to 4 do {
|
||||
|
||||
@@ -2,12 +2,13 @@
|
||||
DayZ Epoch Lighting System - House Lights
|
||||
Made for DayZ Epoch please ask permission to use/edit/distrubute email axeman@thefreezer.co.uk.
|
||||
*/
|
||||
private ["_objLightPoint","_pos","_objHouse","_dir","_rng","_lpDist","_nrstTrig","_rndLights","_lmpCol"];
|
||||
private ["_objLightPoint","_pos","_objHouse","_dir","_rng","_lpDist","_nrstTrig","_rndLights","_lmpCol","_failRnd"];
|
||||
_rng = _this select 0;//player range to light windows
|
||||
_nrstTrig = _this select 1;
|
||||
_rndLights = _this select 2;
|
||||
_lmpCol = _this select 3;
|
||||
_lpDist = _this select 4;//Range to create lightpoints at
|
||||
_failRnd = _this select 5;//use trigger distance value as random for failure. This controls the long term failure of lights
|
||||
_objHouse = nearestObjects [_nrstTrig, ["House"], _rng];
|
||||
if(!isNil "_objHouse")then{
|
||||
{
|
||||
@@ -16,8 +17,8 @@ if(!isNil "_objHouse")then{
|
||||
if(_x animationPhase "Lights_1"==0) then
|
||||
{
|
||||
_x animate ["Lights_1",1];
|
||||
if(42 > random 100) then{_x animate ["Lights_2",1];};
|
||||
//sleep .1;//Wait for animation phase
|
||||
if(42 > random 100) then{_x animate ["Lights_2",1];};//Randomly light second set of windows (some houses have two)
|
||||
sleep .1;//Wait for animation phase
|
||||
};
|
||||
if((_x animationPhase "Lights_1">0))then{
|
||||
_pos = getPos _x;
|
||||
@@ -25,13 +26,13 @@ if(!isNil "_objHouse")then{
|
||||
|
||||
_objLightPoint = nearestObject [_x, "#lightpoint"];
|
||||
if((abs ([_pos, _objLightPoint] call BIS_fnc_distance2D))>1)then{
|
||||
if((player distance _x) < _lpDist)then{
|
||||
[_lmpCol,0.01,_lmpCol,[_pos select 0,_pos select 1,-3],_dir,[0,0,-1]] call axe_newLightPoint;
|
||||
if(player distance _x < _lpDist)then{
|
||||
[_lmpCol,0.03,_lmpCol,[_pos select 0,_pos select 1,-3],_dir,[0,0,-1]] call axe_newLightPoint;
|
||||
_x setVariable ["axeHLight", 1, false];
|
||||
};
|
||||
}else{
|
||||
if((player distance _x) < _lpDist)then{
|
||||
[_lmpCol,0.01,_lmpCol,_objLightPoint] call axe_lightPoint;
|
||||
if(player distance _x < _lpDist)then{
|
||||
[_lmpCol,0.03,_lmpCol,_objLightPoint] call axe_lightPoint;
|
||||
_x setVariable ["axeHLight", 1, false];
|
||||
}else{
|
||||
deleteVehicle _objLightPoint;
|
||||
@@ -41,8 +42,14 @@ if(!isNil "_objHouse")then{
|
||||
};
|
||||
};
|
||||
}else{
|
||||
if(_rndLights<random 100)then{
|
||||
_x setVariable ["axeHLight", 1, true];
|
||||
if(2>random _failRnd)then{//Low chance that house is failed permanently. Until next generator restart - Generator is being overworked.
|
||||
_objLightPoint = nearestObject [_x, "#lightpoint"];
|
||||
if((abs ([_pos, _objLightPoint] call BIS_fnc_distance2D))<1.2)then{
|
||||
deleteVehicle _objLightPoint;
|
||||
};
|
||||
_x animate ["Lights_1",0];
|
||||
_x animate ["Lights_2",0];
|
||||
_x setVariable ["axeHLight", 2, true];//2 = off
|
||||
};
|
||||
};
|
||||
} forEach _objHouse;
|
||||
|
||||
@@ -2,33 +2,33 @@
|
||||
DayZ Epoch Lighting System - Light Control
|
||||
Made for DayZ Epoch please ask permission to use/edit/distrubute email axeman@thefreezer.co.uk.
|
||||
|
||||
To Do - Light poles - Automatic lighting for bases (with or without generator) - Menu action to switch off house and tower lights
|
||||
To Do - Light poles - Automatic lighting for bases (with or without generator) - Menu action to switch off house and tower lights - Add sparks and electrical sound - Add slight randomness to 'reliable' light source - Try and use ASC_EU lights for map based streetlights so they have bulbs and look better - Towers within 20m of 3 house light sources won't light up - Add Custom (enterable) buildings and items (water pump)
|
||||
Wishlist - Detect weather to make lights fail in thunder :)
|
||||
*/
|
||||
private ["_sleep","_lpRange","_hsRange","_nrGen","_genCount","_rndLightsIn","_rndLightsOut","_genClass","_doHouse","_doStreet","_doTower","_doLight","_fnHr","_stHr","_plyr","_hndlSLights","_hndlHLights","_hndlTLights","_hndlDelLights","_hndlFailLights","_ndGen","_trgRng","_rngPlyr","_arrStreetLights","_lightTrig","_lmpCol"];
|
||||
private ["_sleep","_lpRange","_hsRange","_nrGen","_genCount","_rndLightsIn","_rndLightsOut","_genClass","_doHouse","_doTower","_doLight","_fnHr","_stHr","_plyr","_hndlHLights","_hndlTLights","_hndlDelLights","_hndlFailLights","_ndGen","_trgRng","_rngPlyr","_lightTrig","_lmpCol"];
|
||||
|
||||
_stHr = _this select 0;//Hour (in 24 hours) to start lights
|
||||
_fnHr = _this select 1;//Hour (in 24 hours) to stop lights
|
||||
waitUntil {(daytime<_fnHr||daytime>_stHr)};
|
||||
|
||||
_doHouse = _this select 2;//House Lights ?
|
||||
_doStreet = _this select 3;//Street Lights ? Currently default to false as server search code handles built in streetlights. Can be switched on, will add an additional routine deciding if to switch streetlights on or off based on _rndLightsIn..?
|
||||
//_doStreet = _this select 3;//Street Lights ? NOT USED - To be used for sparks and sound effects on failed street lights
|
||||
_doTower = _this select 4;// Tower Lights ?
|
||||
|
||||
_ndGen = _this select 5;//Require a Generator ?
|
||||
_rndLightsIn = _this select 6;//Add a chance for lights to come on as a precentage. 100 = always on.. Use this to reduce frequency of lights, uses the opposite value to delete / fail lights..
|
||||
_trgRng = _this select 7;//Range from trigger (generator or player) to light up objects.
|
||||
_rndLightsIn = _this select 6;//Add a chance for lights to come on as a percentage. 100 = always on.. Use this to reduce frequency of lights, makes use of this calculate if to delete / fail lights..
|
||||
_trgRng = _this select 7;//Range from trigger (generator or player) to do house light failure. all steet lights within this range are subject to failure
|
||||
_rngPlyr = _this select 8;//Distance from player to search for generators. If Generator not required distance to light objects (generally (: )
|
||||
//_trigDist = _this select 9;//Distance that player needs to move to trigger the routine. (NOT USED CURRENTLY)
|
||||
_lmpCol = _this select 10;//Change House Light Colour. Streetlamps now set in config, not editable at runtime.
|
||||
_genClass = _this select 11;//Generator class. Any (client viewable) Object with variable "GeneratorRunning" set to true will suffice.
|
||||
_lpRange = _this select 12;//Range to create lightpoints (from player). And delete beyond (for houses only).
|
||||
_sleep = _this select 14;//Sleep time - Code cycles too quickly to be realistic. Increasing _trgRng and/or _rngPlyr will have a similar effect but will cost in processing time..
|
||||
_sleep = _this select 14;//Sleep time - Deprecated (Default 0.5) feel free to experiment, the higher this value the slower lights will be to react to changes in circumstance.
|
||||
_doLight = true;
|
||||
_nrGen = [];
|
||||
_genCount = 0;
|
||||
_hsRange = 250;
|
||||
_lightTrig = [];//Central point around which to run the lights - _trigDist is calculated from the position of this entity (player or generator)
|
||||
_lightTrig = vehicle player;//Central point around which to run the lights - _trigDist is calculated from the position of this entity (player or generator)
|
||||
call compile preprocessFileLineNumbers "\z\addons\dayz_code\compile\fn_lightFunctions.sqf";
|
||||
axeTowerLights = compile preprocessFileLineNumbers "\z\addons\dayz_code\compile\local_lights_tower.sqf";
|
||||
axeHouseLights = compile preprocessFileLineNumbers "\z\addons\dayz_code\compile\local_lights_house.sqf";
|
||||
@@ -45,51 +45,66 @@ do
|
||||
_rndLightsOut = _rndLightsIn;
|
||||
_nrGen = nearestObjects [_plyr, [_genClass], _rngPlyr];
|
||||
_genCount = count _nrGen;
|
||||
if(_ndGen)then{_lightTrig = _nrGen;}else{_lightTrig = [_plyr];};
|
||||
|
||||
if(_ndGen && _genCount<1)then{_doLight = false;}else{_doLight=true;};//Nearby Generator ?
|
||||
if(!_ndGen)then{_doLight = true;};//Generator not required !
|
||||
|
||||
if(!_ndGen)then{
|
||||
_hsRange = _trgRng;
|
||||
}else{
|
||||
_hsRange = _rngPlyr;
|
||||
};
|
||||
|
||||
if(_genCount>0&&((_nrGen select 0) getVariable["GeneratorRunning",false]))then{
|
||||
_rndLightsOut = 92;
|
||||
};
|
||||
|
||||
_arrStreetLights = [_trgRng,player,_rndLightsOut] call axe_returnStreetLights;
|
||||
|
||||
//Set Generator to use and Assign trigger object
|
||||
_lightTrig = _plyr;
|
||||
if(_genCount>0)then{
|
||||
{
|
||||
if(_ndGen && !(_x getVariable["GeneratorRunning",false]))then{_doLight = false;};//Final check - Not run if nearest gen isn't running
|
||||
if(_x getVariable["GeneratorRunning",false])then{
|
||||
_lightTrig = _x;
|
||||
};
|
||||
}forEach _nrGen;
|
||||
};
|
||||
|
||||
if(!_ndGen)then{_lightTrig = _plyr;};
|
||||
|
||||
//Nearby Generator ?
|
||||
if(_ndGen && _genCount<1)then{_doLight = false;}else{_doLight=true;};
|
||||
|
||||
//Generator not required !
|
||||
if(!_ndGen)then{_doLight = true;};
|
||||
|
||||
//Choose range, player of generator
|
||||
if(!_ndGen)then{_hsRange = _trgRng;}else{_hsRange = _rngPlyr;};
|
||||
|
||||
//100% chance of lights with nearby generator - ToDo, make this slightly lower.
|
||||
if(_genCount>0&&(_lightTrig getVariable["GeneratorRunning",false]))then{
|
||||
_rndLightsOut = 100;
|
||||
};
|
||||
|
||||
//Do streetlight stuff
|
||||
[_trgRng,player,_rndLightsOut] call axe_returnStreetLights;
|
||||
|
||||
if(_ndGen && !(_lightTrig getVariable["GeneratorRunning",false]))then{_doLight = false;};//Final check - Not run if nearest gen isn't running
|
||||
|
||||
if(_doLight)then{
|
||||
|
||||
|
||||
if(_doTower)then{
|
||||
_hndlTLights = [_trgRng,_x,_rndLightsOut] spawn axeTowerLights;
|
||||
_hndlTLights = [_rngPlyr,_lightTrig,_rndLightsOut] spawn axeTowerLights;
|
||||
};
|
||||
if(_doHouse)then{
|
||||
_hndlHLights = [_hsRange,_x,_rndLightsOut,_lmpCol,_lpRange] spawn axeHouseLights;
|
||||
_hndlHLights = [_hsRange,_lightTrig,_rndLightsOut,_lmpCol,_lpRange,_trgRng] spawn axeHouseLights;
|
||||
};
|
||||
/*
|
||||
//Not currently used - Will be used for sparks and sound effects
|
||||
if(_doStreet)then{
|
||||
_hndlSLights = [_arrStreetLights,_x,_lmpCol,_rndLightsOut] spawn axeStreetLights;
|
||||
_hndlSLights = [_arrStreetLights,_lightTrig,_lmpCol,_rndLightsOut] spawn axeStreetLights;
|
||||
};
|
||||
*/
|
||||
|
||||
};
|
||||
|
||||
if(_ndGen && !(_x getVariable["GeneratorRunning",false]))then{
|
||||
_hndlDelLights = [_rngPlyr,_x,false,_genCount,_lpRange] spawn axeDeleteLights;
|
||||
//Decide how and if to turn lights off
|
||||
if(_ndGen && !(_lightTrig getVariable["GeneratorRunning",false]))then{
|
||||
_hndlDelLights = [_rngPlyr,_lightTrig,false,_genCount,_lpRange] spawn axeDeleteLights;
|
||||
waitUntil {scriptDone _hndlDelLights};
|
||||
};
|
||||
|
||||
if(_rndLightsOut<random 100)then{
|
||||
_hndlFailLights = [_rngPlyr,_x,true,_genCount,_lpRange] spawn axeDeleteLights;
|
||||
_hndlFailLights = [_rngPlyr,_lightTrig,true,_genCount,_lpRange] spawn axeDeleteLights;
|
||||
waitUntil {scriptDone _hndlFailLights};
|
||||
};
|
||||
}forEach _lightTrig;
|
||||
};
|
||||
sleep _sleep;
|
||||
};
|
||||
|
||||
@@ -27,7 +27,7 @@ _objHouses = nearestObjects [_nrstTrig, ["House"], _hsRange];
|
||||
_objHouse animate ["Lights_1",0];
|
||||
_objHouse animate ["Lights_2",0];
|
||||
}else{
|
||||
if(_hasLight)then{_animlightpoint setLightBrightness 0.01;};
|
||||
if(_hasLight)then{_animlightpoint setLightBrightness 0.04;};
|
||||
_objHouse animate ["Lights_1",1];
|
||||
};
|
||||
_sleeptime=(random 100)/100;
|
||||
@@ -76,11 +76,3 @@ _nrTowers = nearestObjects [_nrstTrig, ["Land_Ind_IlluminantTower"], _rng];
|
||||
}forEach _nrTowers;
|
||||
};
|
||||
};
|
||||
/*
|
||||
{
|
||||
|
||||
if(_cntNrGen>0)then{//reset house if gen nearby to help create reliability regardless of gen requirement ?
|
||||
_x setVariable ["axeHLight", 0, false];
|
||||
};
|
||||
}forEach _objHouses;
|
||||
*/
|
||||
|
||||
@@ -2,14 +2,13 @@
|
||||
DayZ Epoch Lighting System -Illuminant Tower Lights
|
||||
Made for DayZ Epoch please ask permission to use/edit/distrubute email axeman@thefreezer.co.uk.
|
||||
*/
|
||||
private ["_nrTowers","_rng","_nrstTrig","_lCol","_lbrt","_lamb","_twrCl"];
|
||||
_rng = (_this select 0)*2;
|
||||
private ["_nrTowers","_nrstTrig","_lCol","_lbrt","_lamb","_twrCl"];
|
||||
_nrstTrig = _this select 1;
|
||||
_lCol = [1, 0.88, 0.73];
|
||||
_lbrt = 0.04;
|
||||
_lamb = [1, 0.88, 0.73];
|
||||
_twrCl = "Land_Ind_IlluminantTower";
|
||||
_nrTowers = nearestObjects [_nrstTrig, [_twrCl], _rng];
|
||||
_nrTowers = nearestObjects [_nrstTrig, [_twrCl], 1000];
|
||||
if(count _nrTowers >0)then{
|
||||
{
|
||||
if((_x getVariable ["axeTLight", 0])<1)then{
|
||||
|
||||
@@ -104,6 +104,6 @@ if (!isDedicated) then {
|
||||
_void = [] execVM "R3F_Realism\R3F_Realism_Init.sqf";
|
||||
|
||||
//Lights
|
||||
[17,6,true,false,true,true,72,180,600,10,[0.698, 0.556, 0.419],"Generator_DZ",280,"",0.5] execVM "\z\addons\dayz_code\compile\local_lights_init.sqf";
|
||||
[17,6,true,false,true,true,72,242,600,10,[0.698, 0.556, 0.419],"Generator_DZ",208,"",0.5] execVM "\z\addons\dayz_code\compile\local_lights_init.sqf";
|
||||
};
|
||||
#include "\z\addons\dayz_code\system\REsec.sqf"
|
||||
|
||||
@@ -104,6 +104,6 @@ if (!isDedicated) then {
|
||||
_void = [] execVM "R3F_Realism\R3F_Realism_Init.sqf";
|
||||
|
||||
//Lights
|
||||
[17,6,true,false,true,true,72,180,600,10,[0.698, 0.556, 0.419],"Generator_DZ",280,"",0.5] execVM "\z\addons\dayz_code\compile\local_lights_init.sqf";
|
||||
[17,6,true,false,true,true,72,242,600,10,[0.698, 0.556, 0.419],"Generator_DZ",208,"",0.5] execVM "\z\addons\dayz_code\compile\local_lights_init.sqf";
|
||||
};
|
||||
#include "\z\addons\dayz_code\system\REsec.sqf"
|
||||
|
||||
@@ -104,6 +104,6 @@ if (!isDedicated) then {
|
||||
_void = [] execVM "R3F_Realism\R3F_Realism_Init.sqf";
|
||||
|
||||
//Lights
|
||||
[17,6,true,false,true,true,72,180,600,10,[0.698, 0.556, 0.419],"Generator_DZ",280,"",0.5] execVM "\z\addons\dayz_code\compile\local_lights_init.sqf";
|
||||
[17,6,true,false,true,true,72,242,600,10,[0.698, 0.556, 0.419],"Generator_DZ",208,"",0.5] execVM "\z\addons\dayz_code\compile\local_lights_init.sqf";
|
||||
};
|
||||
#include "\z\addons\dayz_code\system\REsec.sqf"
|
||||
|
||||
@@ -104,6 +104,6 @@ if (!isDedicated) then {
|
||||
_void = [] execVM "R3F_Realism\R3F_Realism_Init.sqf";
|
||||
|
||||
//Lights
|
||||
[17,6,true,false,true,true,72,180,600,10,[0.698, 0.556, 0.419],"Generator_DZ",280,"",0.5] execVM "\z\addons\dayz_code\compile\local_lights_init.sqf";
|
||||
[17,6,true,false,true,true,72,242,600,10,[0.698, 0.556, 0.419],"Generator_DZ",208,"",0.5] execVM "\z\addons\dayz_code\compile\local_lights_init.sqf";
|
||||
};
|
||||
#include "\z\addons\dayz_code\system\REsec.sqf"
|
||||
|
||||
@@ -116,6 +116,6 @@ if (!isDedicated) then {
|
||||
_void = [] execVM "R3F_Realism\R3F_Realism_Init.sqf";
|
||||
|
||||
//Lights
|
||||
[17,6,true,false,true,true,72,180,600,10,[0.698, 0.556, 0.419],"Generator_DZ",280,"",0.5] execVM "\z\addons\dayz_code\compile\local_lights_init.sqf";
|
||||
[17,6,true,false,true,true,72,242,600,10,[0.698, 0.556, 0.419],"Generator_DZ",208,"",0.5] execVM "\z\addons\dayz_code\compile\local_lights_init.sqf";
|
||||
};
|
||||
#include "\z\addons\dayz_code\system\REsec.sqf"
|
||||
|
||||
@@ -113,6 +113,6 @@ if (!isDedicated) then {
|
||||
_void = [] execVM "R3F_Realism\R3F_Realism_Init.sqf";
|
||||
|
||||
//Lights
|
||||
[17,6,true,false,true,true,72,180,600,10,[0.698, 0.556, 0.419],"Generator_DZ",280,"",0.5] execVM "\z\addons\dayz_code\compile\local_lights_init.sqf";
|
||||
[17,6,true,false,true,true,72,242,600,10,[0.698, 0.556, 0.419],"Generator_DZ",208,"",0.5] execVM "\z\addons\dayz_code\compile\local_lights_init.sqf";
|
||||
};
|
||||
#include "\z\addons\dayz_code\system\REsec.sqf"
|
||||
|
||||
@@ -84,5 +84,5 @@ if (!isDedicated) then {
|
||||
_void = [] execVM "R3F_Realism\R3F_Realism_Init.sqf";
|
||||
|
||||
//Lights
|
||||
[17,6,true,false,true,true,72,180,600,10,[0.698, 0.556, 0.419],"Generator_DZ",280,"",0.5] execVM "\z\addons\dayz_code\compile\local_lights_init.sqf";
|
||||
[17,6,true,false,true,true,72,242,600,10,[0.698, 0.556, 0.419],"Generator_DZ",208,"",0.5] execVM "\z\addons\dayz_code\compile\local_lights_init.sqf";
|
||||
};
|
||||
|
||||
@@ -104,6 +104,6 @@ if (!isDedicated) then {
|
||||
_void = [] execVM "R3F_Realism\R3F_Realism_Init.sqf";
|
||||
|
||||
//Lights
|
||||
[17,6,true,false,true,true,72,180,600,10,[0.698, 0.556, 0.419],"Generator_DZ",280,"",0.5] execVM "\z\addons\dayz_code\compile\local_lights_init.sqf";
|
||||
[17,6,true,false,true,true,72,242,600,10,[0.698, 0.556, 0.419],"Generator_DZ",208,"",0.5] execVM "\z\addons\dayz_code\compile\local_lights_init.sqf";
|
||||
};
|
||||
#include "\z\addons\dayz_code\system\REsec.sqf"
|
||||
|
||||
@@ -75,5 +75,5 @@ if (!isDedicated) then {
|
||||
_void = [] execVM "R3F_Realism\R3F_Realism_Init.sqf";
|
||||
|
||||
//Lights
|
||||
[17,6,true,false,true,true,72,180,600,10,[0.698, 0.556, 0.419],"Generator_DZ",280,"",0.5] execVM "\z\addons\dayz_code\compile\local_lights_init.sqf";
|
||||
[17,6,true,false,true,true,72,242,600,10,[0.698, 0.556, 0.419],"Generator_DZ",208,"",0.5] execVM "\z\addons\dayz_code\compile\local_lights_init.sqf";
|
||||
};
|
||||
|
||||
@@ -104,6 +104,6 @@ if (!isDedicated) then {
|
||||
_void = [] execVM "R3F_Realism\R3F_Realism_Init.sqf";
|
||||
|
||||
//Lights
|
||||
[17,6,true,false,true,true,72,180,600,10,[0.698, 0.556, 0.419],"Generator_DZ",280,"",0.5] execVM "\z\addons\dayz_code\compile\local_lights_init.sqf";
|
||||
[17,6,true,false,true,true,72,242,600,10,[0.698, 0.556, 0.419],"Generator_DZ",208,"",0.5] execVM "\z\addons\dayz_code\compile\local_lights_init.sqf";
|
||||
};
|
||||
#include "\z\addons\dayz_code\system\REsec.sqf"
|
||||
|
||||
@@ -104,6 +104,6 @@ if (!isDedicated) then {
|
||||
_void = [] execVM "R3F_Realism\R3F_Realism_Init.sqf";
|
||||
|
||||
//Lights
|
||||
[17,6,true,false,true,true,72,180,600,10,[0.698, 0.556, 0.419],"Generator_DZ",280,"",0.5] execVM "\z\addons\dayz_code\compile\local_lights_init.sqf";
|
||||
[17,6,true,false,true,true,72,242,600,10,[0.698, 0.556, 0.419],"Generator_DZ",208,"",0.5] execVM "\z\addons\dayz_code\compile\local_lights_init.sqf";
|
||||
};
|
||||
#include "\z\addons\dayz_code\system\REsec.sqf"
|
||||
|
||||
@@ -104,6 +104,6 @@ if (!isDedicated) then {
|
||||
_void = [] execVM "R3F_Realism\R3F_Realism_Init.sqf";
|
||||
|
||||
//Lights
|
||||
[17,6,true,false,true,true,72,180,600,10,[0.698, 0.556, 0.419],"Generator_DZ",280,"",0.5] execVM "\z\addons\dayz_code\compile\local_lights_init.sqf";
|
||||
[17,6,true,false,true,true,72,242,600,10,[0.698, 0.556, 0.419],"Generator_DZ",208,"",0.5] execVM "\z\addons\dayz_code\compile\local_lights_init.sqf";
|
||||
};
|
||||
#include "\z\addons\dayz_code\system\REsec.sqf"
|
||||
|
||||
@@ -104,6 +104,6 @@ if (!isDedicated) then {
|
||||
_void = [] execVM "R3F_Realism\R3F_Realism_Init.sqf";
|
||||
|
||||
//Lights
|
||||
[17,6,true,false,true,true,72,180,600,10,[0.698, 0.556, 0.419],"Generator_DZ",280,"",0.5] execVM "\z\addons\dayz_code\compile\local_lights_init.sqf";
|
||||
[17,6,true,false,true,true,72,242,600,10,[0.698, 0.556, 0.419],"Generator_DZ",208,"",0.5] execVM "\z\addons\dayz_code\compile\local_lights_init.sqf";
|
||||
};
|
||||
#include "\z\addons\dayz_code\system\REsec.sqf"
|
||||
|
||||
@@ -105,6 +105,6 @@ if (!isDedicated) then {
|
||||
_void = [] execVM "R3F_Realism\R3F_Realism_Init.sqf";
|
||||
|
||||
//Lights
|
||||
[17,6,true,false,true,true,72,180,600,10,[0.698, 0.556, 0.419],"Generator_DZ",280,"",0.5] execVM "\z\addons\dayz_code\compile\local_lights_init.sqf";
|
||||
[17,6,true,false,true,true,72,242,600,10,[0.698, 0.556, 0.419],"Generator_DZ",208,"",0.5] execVM "\z\addons\dayz_code\compile\local_lights_init.sqf";
|
||||
};
|
||||
#include "\z\addons\dayz_code\system\REsec.sqf"
|
||||
|
||||
@@ -105,6 +105,6 @@ if (!isDedicated) then {
|
||||
_void = [] execVM "R3F_Realism\R3F_Realism_Init.sqf";
|
||||
|
||||
//Lights
|
||||
[17,6,true,false,true,true,72,180,600,10,[0.698, 0.556, 0.419],"Generator_DZ",280,"",0.5] execVM "\z\addons\dayz_code\compile\local_lights_init.sqf";
|
||||
[17,6,true,false,true,true,72,242,600,10,[0.698, 0.556, 0.419],"Generator_DZ",208,"",0.5] execVM "\z\addons\dayz_code\compile\local_lights_init.sqf";
|
||||
};
|
||||
#include "\z\addons\dayz_code\system\REsec.sqf"
|
||||
|
||||
@@ -104,6 +104,6 @@ if (!isDedicated) then {
|
||||
_void = [] execVM "R3F_Realism\R3F_Realism_Init.sqf";
|
||||
|
||||
//Lights
|
||||
[17,6,true,false,true,true,72,180,600,10,[0.698, 0.556, 0.419],"Generator_DZ",280,"",0.5] execVM "\z\addons\dayz_code\compile\local_lights_init.sqf";
|
||||
[17,6,true,false,true,true,72,242,600,10,[0.698, 0.556, 0.419],"Generator_DZ",208,"",0.5] execVM "\z\addons\dayz_code\compile\local_lights_init.sqf";
|
||||
};
|
||||
#include "\z\addons\dayz_code\system\REsec.sqf"
|
||||
|
||||
@@ -104,6 +104,6 @@ if (!isDedicated) then {
|
||||
_void = [] execVM "R3F_Realism\R3F_Realism_Init.sqf";
|
||||
|
||||
//Lights
|
||||
[17,6,true,false,true,true,72,180,600,10,[0.698, 0.556, 0.419],"Generator_DZ",280,"",0.5] execVM "\z\addons\dayz_code\compile\local_lights_init.sqf";
|
||||
[17,6,true,false,true,true,72,242,600,10,[0.698, 0.556, 0.419],"Generator_DZ",208,"",0.5] execVM "\z\addons\dayz_code\compile\local_lights_init.sqf";
|
||||
};
|
||||
#include "\z\addons\dayz_code\system\REsec.sqf"
|
||||
|
||||
@@ -75,6 +75,6 @@ if (!isDedicated) then {
|
||||
_void = [] execVM "R3F_Realism\R3F_Realism_Init.sqf";
|
||||
|
||||
//Lights
|
||||
[17,6,true,false,true,true,72,180,600,10,[0.698, 0.556, 0.419],"Generator_DZ",280,"",0.5] execVM "\z\addons\dayz_code\compile\local_lights_init.sqf";
|
||||
[17,6,true,false,true,true,72,242,600,10,[0.698, 0.556, 0.419],"Generator_DZ",208,"",0.5] execVM "\z\addons\dayz_code\compile\local_lights_init.sqf";
|
||||
|
||||
};
|
||||
|
||||
Reference in New Issue
Block a user