diff --git a/CHANGE LOG 1.0.6.1.txt b/CHANGE LOG 1.0.6.1.txt index 69c1de741..f0ab743cb 100644 --- a/CHANGE LOG 1.0.6.1.txt +++ b/CHANGE LOG 1.0.6.1.txt @@ -17,6 +17,7 @@ [CHANGED] Reverted lobby and player list background colors to A2OA default instead of dark grey [CHANGED] Salvage vehicle actions are no longer allowed in positions defined in DZE_SafeZonePosArray [CHANGED] The town generator and comfrey plant spawner loops are now fully disabled when dayz_townGenerator=false; to improve client performance. +[CHANGED] Changed default value for the variable dayz_bleedingeffect to 2 (blood particle effect only) - set to 3 to enable blood stains again [FIXED] Wrong texture for z_hunter zombie. #1805 @schwanzkopfhegel @ebayShopper [FIXED] Refuel with generator at gas station not working. #1806 @Helios27 @ebayShopper diff --git a/SQF/dayz_code/compile/epoch_tempKeys.sqf b/SQF/dayz_code/compile/epoch_tempKeys.sqf index 87fba19c7..07ea3b9cf 100644 --- a/SQF/dayz_code/compile/epoch_tempKeys.sqf +++ b/SQF/dayz_code/compile/epoch_tempKeys.sqf @@ -1,14 +1,16 @@ private ["_temp_keys","_temp_keys_names","_key_colors","_ownerKeyId","_ownerKeyName"]; _temp_keys = []; _temp_keys_names = []; -// find available keys + _key_colors = ["ItemKeyYellow","ItemKeyBlue","ItemKeyRed","ItemKeyGreen","ItemKeyBlack"]; + { if (configName(inheritsFrom(configFile >> "CfgWeapons" >> _x)) in _key_colors) then { _ownerKeyId = getNumber(configFile >> "CfgWeapons" >> _x >> "keyid"); _ownerKeyName = getText(configFile >> "CfgWeapons" >> _x >> "displayName"); - _temp_keys_names set [_ownerKeyId,_ownerKeyName]; + _temp_keys_names set [count _temp_keys_names,_ownerKeyName]; _temp_keys set [count _temp_keys,str(_ownerKeyId)]; }; } count (items player); + [_temp_keys,_temp_keys_names] \ No newline at end of file diff --git a/SQF/dayz_code/compile/fn_selfActions.sqf b/SQF/dayz_code/compile/fn_selfActions.sqf index b7e69b028..dcd435d86 100644 --- a/SQF/dayz_code/compile/fn_selfActions.sqf +++ b/SQF/dayz_code/compile/fn_selfActions.sqf @@ -119,10 +119,11 @@ if (_inVehicle) then { _temp_keys_names = _totalKeys select 1; _hasKey = _vehicleOwnerID in _temp_keys; _oldOwner = (_vehicleOwnerID == _uid); + _text = getText (configFile >> "CfgVehicles" >> (typeOf DZE_myVehicle) >> "displayName"); if (locked DZE_myVehicle) then { if (_hasKey || _oldOwner) then { - _unlock = DZE_myVehicle addAction [format[localize "STR_EPOCH_ACTIONS_UNLOCK",_text], "\z\addons\dayz_code\actions\unlock_veh.sqf",[DZE_myVehicle,(_temp_keys_names select (parseNumber _vehicleOwnerID))], 2, false, true]; + _unlock = DZE_myVehicle addAction [format[localize "STR_EPOCH_ACTIONS_UNLOCK",_text], "\z\addons\dayz_code\actions\unlock_veh.sqf",[DZE_myVehicle,(_temp_keys_names select (_temp_keys find _vehicleOwnerID))], 2, false, true]; s_player_lockUnlockInside set [count s_player_lockUnlockInside,_unlock]; s_player_lockUnlockInside_ctrl = 1; } else { @@ -691,7 +692,7 @@ if (!isNull _cursorTarget && !_inVehicle && !_isPZombie && (player distance _cur _oldOwner = (_characterID == _uid); if (locked _cursorTarget) then { if (_hasKey || _oldOwner) then { - _unlock = player addAction [format[localize "STR_EPOCH_ACTIONS_UNLOCK",_text], "\z\addons\dayz_code\actions\unlock_veh.sqf",[_cursorTarget,(_temp_keys_names select (parseNumber _characterID))], 2, true, true]; + _unlock = player addAction [format[localize "STR_EPOCH_ACTIONS_UNLOCK",_text], "\z\addons\dayz_code\actions\unlock_veh.sqf",[_cursorTarget,(_temp_keys_names select (_temp_keys find _characterID))], 2, true, true]; s_player_lockunlock set [count s_player_lockunlock,_unlock]; s_player_lockUnlock_crtl = 1; } else { diff --git a/Server Files/MPMissions/DayZ_Epoch_1.Takistan/init.sqf b/Server Files/MPMissions/DayZ_Epoch_1.Takistan/init.sqf index d5f074a07..69987ce2b 100644 --- a/Server Files/MPMissions/DayZ_Epoch_1.Takistan/init.sqf +++ b/Server Files/MPMissions/DayZ_Epoch_1.Takistan/init.sqf @@ -29,7 +29,7 @@ if (dayz_presets == "Custom") then { 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 = 3; //1 = blood on the ground, 2 = partical effect, 3 = both + dayz_bleedingeffect = 2; //1 = blood on the ground, 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 diff --git a/Server Files/MPMissions/DayZ_Epoch_10.Mountains_ACR/init.sqf b/Server Files/MPMissions/DayZ_Epoch_10.Mountains_ACR/init.sqf index b972c9672..0c94cad9c 100644 --- a/Server Files/MPMissions/DayZ_Epoch_10.Mountains_ACR/init.sqf +++ b/Server Files/MPMissions/DayZ_Epoch_10.Mountains_ACR/init.sqf @@ -29,7 +29,7 @@ if (dayz_presets == "Custom") then { 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 = 3; //1 = blood on the ground, 2 = partical effect, 3 = both + dayz_bleedingeffect = 2; //1 = blood on the ground, 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 diff --git a/Server Files/MPMissions/DayZ_Epoch_11.Chernarus/init.sqf b/Server Files/MPMissions/DayZ_Epoch_11.Chernarus/init.sqf index e19b2e930..f9b55767d 100644 --- a/Server Files/MPMissions/DayZ_Epoch_11.Chernarus/init.sqf +++ b/Server Files/MPMissions/DayZ_Epoch_11.Chernarus/init.sqf @@ -29,7 +29,7 @@ if (dayz_presets == "Custom") then { 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 = 3; //1 = blood on the ground, 2 = partical effect, 3 = both + dayz_bleedingeffect = 2; //1 = blood on the ground, 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 diff --git a/Server Files/MPMissions/DayZ_Epoch_12.isladuala/init.sqf b/Server Files/MPMissions/DayZ_Epoch_12.isladuala/init.sqf index 006034039..48895f87b 100644 --- a/Server Files/MPMissions/DayZ_Epoch_12.isladuala/init.sqf +++ b/Server Files/MPMissions/DayZ_Epoch_12.isladuala/init.sqf @@ -29,7 +29,7 @@ if (dayz_presets == "Custom") then { 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 = 3; //1 = blood on the ground, 2 = partical effect, 3 = both + dayz_bleedingeffect = 2; //1 = blood on the ground, 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 diff --git a/Server Files/MPMissions/DayZ_Epoch_13.Tavi/init.sqf b/Server Files/MPMissions/DayZ_Epoch_13.Tavi/init.sqf index dd3be39ad..b8cdb145f 100644 --- a/Server Files/MPMissions/DayZ_Epoch_13.Tavi/init.sqf +++ b/Server Files/MPMissions/DayZ_Epoch_13.Tavi/init.sqf @@ -29,7 +29,7 @@ if (dayz_presets == "Custom") then { 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 = 3; //1 = blood on the ground, 2 = partical effect, 3 = both + dayz_bleedingeffect = 2; //1 = blood on the ground, 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 diff --git a/Server Files/MPMissions/DayZ_Epoch_15.namalsk/init.sqf b/Server Files/MPMissions/DayZ_Epoch_15.namalsk/init.sqf index c3a49f6b5..83c3b34e7 100644 --- a/Server Files/MPMissions/DayZ_Epoch_15.namalsk/init.sqf +++ b/Server Files/MPMissions/DayZ_Epoch_15.namalsk/init.sqf @@ -29,7 +29,7 @@ if (dayz_presets == "Custom") then { 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 = 3; //1 = blood on the ground, 2 = partical effect, 3 = both + dayz_bleedingeffect = 2; //1 = blood on the ground, 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 diff --git a/Server Files/MPMissions/DayZ_Epoch_16.Panthera2/init.sqf b/Server Files/MPMissions/DayZ_Epoch_16.Panthera2/init.sqf index 9686d717b..6654ed769 100644 --- a/Server Files/MPMissions/DayZ_Epoch_16.Panthera2/init.sqf +++ b/Server Files/MPMissions/DayZ_Epoch_16.Panthera2/init.sqf @@ -29,7 +29,7 @@ if (dayz_presets == "Custom") then { 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 = 3; //1 = blood on the ground, 2 = partical effect, 3 = both + dayz_bleedingeffect = 2; //1 = blood on the ground, 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 diff --git a/Server Files/MPMissions/DayZ_Epoch_17.Chernarus/init.sqf b/Server Files/MPMissions/DayZ_Epoch_17.Chernarus/init.sqf index d939fc598..13d2e84b6 100644 --- a/Server Files/MPMissions/DayZ_Epoch_17.Chernarus/init.sqf +++ b/Server Files/MPMissions/DayZ_Epoch_17.Chernarus/init.sqf @@ -29,7 +29,7 @@ if (dayz_presets == "Custom") then { 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 = 3; //1 = blood on the ground, 2 = partical effect, 3 = both + dayz_bleedingeffect = 2; //1 = blood on the ground, 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 diff --git a/Server Files/MPMissions/DayZ_Epoch_19.FDF_Isle1_a/init.sqf b/Server Files/MPMissions/DayZ_Epoch_19.FDF_Isle1_a/init.sqf index fcf78d574..2e30f0178 100644 --- a/Server Files/MPMissions/DayZ_Epoch_19.FDF_Isle1_a/init.sqf +++ b/Server Files/MPMissions/DayZ_Epoch_19.FDF_Isle1_a/init.sqf @@ -29,7 +29,7 @@ if (dayz_presets == "Custom") then { 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 = 3; //1 = blood on the ground, 2 = partical effect, 3 = both + dayz_bleedingeffect = 2; //1 = blood on the ground, 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 diff --git a/Server Files/MPMissions/DayZ_Epoch_2.Utes/init.sqf b/Server Files/MPMissions/DayZ_Epoch_2.Utes/init.sqf index f2817aa61..ab0255446 100644 --- a/Server Files/MPMissions/DayZ_Epoch_2.Utes/init.sqf +++ b/Server Files/MPMissions/DayZ_Epoch_2.Utes/init.sqf @@ -29,7 +29,7 @@ if (dayz_presets == "Custom") then { 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 = 3; //1 = blood on the ground, 2 = partical effect, 3 = both + dayz_bleedingeffect = 2; //1 = blood on the ground, 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 diff --git a/Server Files/MPMissions/DayZ_Epoch_20.fapovo/init.sqf b/Server Files/MPMissions/DayZ_Epoch_20.fapovo/init.sqf index 923172beb..d70ba6393 100644 --- a/Server Files/MPMissions/DayZ_Epoch_20.fapovo/init.sqf +++ b/Server Files/MPMissions/DayZ_Epoch_20.fapovo/init.sqf @@ -29,7 +29,7 @@ if (dayz_presets == "Custom") then { 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 = 3; //1 = blood on the ground, 2 = partical effect, 3 = both + dayz_bleedingeffect = 2; //1 = blood on the ground, 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 diff --git a/Server Files/MPMissions/DayZ_Epoch_21.Caribou/init.sqf b/Server Files/MPMissions/DayZ_Epoch_21.Caribou/init.sqf index 05b68fa50..d37725f60 100644 --- a/Server Files/MPMissions/DayZ_Epoch_21.Caribou/init.sqf +++ b/Server Files/MPMissions/DayZ_Epoch_21.Caribou/init.sqf @@ -29,7 +29,7 @@ if (dayz_presets == "Custom") then { 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 = 3; //1 = blood on the ground, 2 = partical effect, 3 = both + dayz_bleedingeffect = 2; //1 = blood on the ground, 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 diff --git a/Server Files/MPMissions/DayZ_Epoch_22.smd_sahrani_A2/init.sqf b/Server Files/MPMissions/DayZ_Epoch_22.smd_sahrani_A2/init.sqf index 4c79de5a2..2ef74152d 100644 --- a/Server Files/MPMissions/DayZ_Epoch_22.smd_sahrani_A2/init.sqf +++ b/Server Files/MPMissions/DayZ_Epoch_22.smd_sahrani_A2/init.sqf @@ -29,7 +29,7 @@ if (dayz_presets == "Custom") then { 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 = 3; //1 = blood on the ground, 2 = partical effect, 3 = both + dayz_bleedingeffect = 2; //1 = blood on the ground, 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 diff --git a/Server Files/MPMissions/DayZ_Epoch_23.cmr_ovaron/init.sqf b/Server Files/MPMissions/DayZ_Epoch_23.cmr_ovaron/init.sqf index f79be09d7..0724f604a 100644 --- a/Server Files/MPMissions/DayZ_Epoch_23.cmr_ovaron/init.sqf +++ b/Server Files/MPMissions/DayZ_Epoch_23.cmr_ovaron/init.sqf @@ -29,7 +29,7 @@ if (dayz_presets == "Custom") then { 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 = 3; //1 = blood on the ground, 2 = partical effect, 3 = both + dayz_bleedingeffect = 2; //1 = blood on the ground, 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 diff --git a/Server Files/MPMissions/DayZ_Epoch_24.Napf/init.sqf b/Server Files/MPMissions/DayZ_Epoch_24.Napf/init.sqf index c8266356c..3a1259ee5 100644 --- a/Server Files/MPMissions/DayZ_Epoch_24.Napf/init.sqf +++ b/Server Files/MPMissions/DayZ_Epoch_24.Napf/init.sqf @@ -29,7 +29,7 @@ if (dayz_presets == "Custom") then { 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 = 3; //1 = blood on the ground, 2 = partical effect, 3 = both + dayz_bleedingeffect = 2; //1 = blood on the ground, 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 diff --git a/Server Files/MPMissions/DayZ_Epoch_25.sauerland/init.sqf b/Server Files/MPMissions/DayZ_Epoch_25.sauerland/init.sqf index f1aeabcd1..171f9f5ae 100644 --- a/Server Files/MPMissions/DayZ_Epoch_25.sauerland/init.sqf +++ b/Server Files/MPMissions/DayZ_Epoch_25.sauerland/init.sqf @@ -29,7 +29,7 @@ if (dayz_presets == "Custom") then { 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 = 3; //1 = blood on the ground, 2 = partical effect, 3 = both + dayz_bleedingeffect = 2; //1 = blood on the ground, 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 diff --git a/Server Files/MPMissions/DayZ_Epoch_26.sauerland_winter/init.sqf b/Server Files/MPMissions/DayZ_Epoch_26.sauerland_winter/init.sqf index 5d45a9434..22550a336 100644 --- a/Server Files/MPMissions/DayZ_Epoch_26.sauerland_winter/init.sqf +++ b/Server Files/MPMissions/DayZ_Epoch_26.sauerland_winter/init.sqf @@ -29,7 +29,7 @@ if (dayz_presets == "Custom") then { 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 = 3; //1 = blood on the ground, 2 = partical effect, 3 = both + dayz_bleedingeffect = 2; //1 = blood on the ground, 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 diff --git a/Server Files/MPMissions/DayZ_Epoch_3.Shapur_BAF/init.sqf b/Server Files/MPMissions/DayZ_Epoch_3.Shapur_BAF/init.sqf index 13a85d632..0dfe56a37 100644 --- a/Server Files/MPMissions/DayZ_Epoch_3.Shapur_BAF/init.sqf +++ b/Server Files/MPMissions/DayZ_Epoch_3.Shapur_BAF/init.sqf @@ -29,7 +29,7 @@ if (dayz_presets == "Custom") then { 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 = 3; //1 = blood on the ground, 2 = partical effect, 3 = both + dayz_bleedingeffect = 2; //1 = blood on the ground, 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 diff --git a/Server Files/MPMissions/DayZ_Epoch_4.Zargabad/init.sqf b/Server Files/MPMissions/DayZ_Epoch_4.Zargabad/init.sqf index 72bd58bb4..d529a9f7d 100644 --- a/Server Files/MPMissions/DayZ_Epoch_4.Zargabad/init.sqf +++ b/Server Files/MPMissions/DayZ_Epoch_4.Zargabad/init.sqf @@ -29,7 +29,7 @@ if (dayz_presets == "Custom") then { 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 = 3; //1 = blood on the ground, 2 = partical effect, 3 = both + dayz_bleedingeffect = 2; //1 = blood on the ground, 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 diff --git a/Server Files/MPMissions/DayZ_Epoch_5.Bootcamp_ACR/init.sqf b/Server Files/MPMissions/DayZ_Epoch_5.Bootcamp_ACR/init.sqf index c323b0cdc..cfd434424 100644 --- a/Server Files/MPMissions/DayZ_Epoch_5.Bootcamp_ACR/init.sqf +++ b/Server Files/MPMissions/DayZ_Epoch_5.Bootcamp_ACR/init.sqf @@ -29,7 +29,7 @@ if (dayz_presets == "Custom") then { 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 = 3; //1 = blood on the ground, 2 = partical effect, 3 = both + dayz_bleedingeffect = 2; //1 = blood on the ground, 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 diff --git a/Server Files/MPMissions/DayZ_Epoch_7.Lingor/init.sqf b/Server Files/MPMissions/DayZ_Epoch_7.Lingor/init.sqf index e3a8a9944..897e1d81d 100644 --- a/Server Files/MPMissions/DayZ_Epoch_7.Lingor/init.sqf +++ b/Server Files/MPMissions/DayZ_Epoch_7.Lingor/init.sqf @@ -29,7 +29,7 @@ if (dayz_presets == "Custom") then { 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 = 3; //1 = blood on the ground, 2 = partical effect, 3 = both + dayz_bleedingeffect = 2; //1 = blood on the ground, 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 diff --git a/Server Files/MPMissions/DayZ_Epoch_8.ProvingGrounds_PMC/init.sqf b/Server Files/MPMissions/DayZ_Epoch_8.ProvingGrounds_PMC/init.sqf index 8d79eb619..bb9dc2380 100644 --- a/Server Files/MPMissions/DayZ_Epoch_8.ProvingGrounds_PMC/init.sqf +++ b/Server Files/MPMissions/DayZ_Epoch_8.ProvingGrounds_PMC/init.sqf @@ -29,7 +29,7 @@ if (dayz_presets == "Custom") then { 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 = 3; //1 = blood on the ground, 2 = partical effect, 3 = both + dayz_bleedingeffect = 2; //1 = blood on the ground, 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 diff --git a/Server Files/MPMissions/DayZ_Epoch_9.Woodland_ACR/init.sqf b/Server Files/MPMissions/DayZ_Epoch_9.Woodland_ACR/init.sqf index 0701750ef..e72d133ad 100644 --- a/Server Files/MPMissions/DayZ_Epoch_9.Woodland_ACR/init.sqf +++ b/Server Files/MPMissions/DayZ_Epoch_9.Woodland_ACR/init.sqf @@ -29,7 +29,7 @@ if (dayz_presets == "Custom") then { 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 = 3; //1 = blood on the ground, 2 = partical effect, 3 = both + dayz_bleedingeffect = 2; //1 = blood on the ground, 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