mirror of
https://github.com/EpochModTeam/DayZ-Epoch.git
synced 2026-02-04 15:22:53 +03:00
Add DZE_enableBloodRegen to enable/disable blood regenation
Made by @Victor-the-Cleaner
This commit is contained in:
@@ -171,6 +171,7 @@ if (!isDedicated) then {
|
|||||||
timezoneswitch = 0; // Changes murderMenu times with this offset in hours.
|
timezoneswitch = 0; // Changes murderMenu times with this offset in hours.
|
||||||
dayz_maxGlobalZeds = 500; // Maximum allowed zeds on the map
|
dayz_maxGlobalZeds = 500; // Maximum allowed zeds on the map
|
||||||
dayz_paraSpawn = false; // Helo jump spawn
|
dayz_paraSpawn = false; // Helo jump spawn
|
||||||
|
DZE_enableBloodRegen = true; // player slowly regains blood if they are well fed and resting
|
||||||
DZE_SelfTransfuse = true; // Allow players to give themselves blood transfusions
|
DZE_SelfTransfuse = true; // Allow players to give themselves blood transfusions
|
||||||
DZE_selfTransfuse_Values = [12000,15,120]; // [blood amount, infection chance, cool-down (seconds)]
|
DZE_selfTransfuse_Values = [12000,15,120]; // [blood amount, infection chance, cool-down (seconds)]
|
||||||
dayz_DamageMultiplier = 1; // Increases the damage to the player by zombie attacks
|
dayz_DamageMultiplier = 1; // Increases the damage to the player by zombie attacks
|
||||||
|
|||||||
@@ -212,6 +212,7 @@ while {1 == 1} do {
|
|||||||
_radTimer = 0;
|
_radTimer = 0;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
if (DZE_enableBloodRegen) then {
|
||||||
// Regen some blood if player is well fed and resting
|
// Regen some blood if player is well fed and resting
|
||||||
// Attention: regen _result must not trigger the "up" arrow of the blood icon
|
// Attention: regen _result must not trigger the "up" arrow of the blood icon
|
||||||
if (r_player_blood < r_player_bloodTotal && {(dayz_hunger < SleepFood) && (dayz_thirst < SleepWater) && !r_player_injured && !r_player_infected && !(r_player_Sepsis select 0) && !r_player_unconscious}) then {
|
if (r_player_blood < r_player_bloodTotal && {(dayz_hunger < SleepFood) && (dayz_thirst < SleepWater) && !r_player_injured && !r_player_infected && !(r_player_Sepsis select 0) && !r_player_unconscious}) then {
|
||||||
@@ -228,10 +229,8 @@ while {1 == 1} do {
|
|||||||
};
|
};
|
||||||
r_player_bloodregen = r_player_bloodregen + _result;
|
r_player_bloodregen = r_player_bloodregen + _result;
|
||||||
};
|
};
|
||||||
|
|
||||||
if (r_player_blood > r_player_bloodTotal) then {
|
|
||||||
r_player_blood = r_player_bloodTotal;
|
|
||||||
};
|
};
|
||||||
|
r_player_blood = r_player_blood min r_player_bloodTotal;
|
||||||
|
|
||||||
//Record low bloow
|
//Record low bloow
|
||||||
_lowBlood = player getVariable ["USEC_lowBlood", false];
|
_lowBlood = player getVariable ["USEC_lowBlood", false];
|
||||||
|
|||||||
@@ -171,6 +171,7 @@ if (!isDedicated) then {
|
|||||||
timezoneswitch = 0; // Changes murderMenu times with this offset in hours.
|
timezoneswitch = 0; // Changes murderMenu times with this offset in hours.
|
||||||
dayz_maxGlobalZeds = 500; // Maximum allowed zeds on the map
|
dayz_maxGlobalZeds = 500; // Maximum allowed zeds on the map
|
||||||
dayz_paraSpawn = false; // Helo jump spawn
|
dayz_paraSpawn = false; // Helo jump spawn
|
||||||
|
DZE_enableBloodRegen = true; // player slowly regains blood if they are well fed and resting
|
||||||
DZE_SelfTransfuse = true; // Allow players to give themselves blood transfusions
|
DZE_SelfTransfuse = true; // Allow players to give themselves blood transfusions
|
||||||
DZE_selfTransfuse_Values = [12000,15,120]; // [blood amount, infection chance, cool-down (seconds)]
|
DZE_selfTransfuse_Values = [12000,15,120]; // [blood amount, infection chance, cool-down (seconds)]
|
||||||
dayz_DamageMultiplier = 1; // Increases the damage to the player by zombie attacks
|
dayz_DamageMultiplier = 1; // Increases the damage to the player by zombie attacks
|
||||||
|
|||||||
@@ -171,6 +171,7 @@ if (!isDedicated) then {
|
|||||||
timezoneswitch = 0; // Changes murderMenu times with this offset in hours.
|
timezoneswitch = 0; // Changes murderMenu times with this offset in hours.
|
||||||
dayz_maxGlobalZeds = 500; // Maximum allowed zeds on the map
|
dayz_maxGlobalZeds = 500; // Maximum allowed zeds on the map
|
||||||
dayz_paraSpawn = false; // Helo jump spawn
|
dayz_paraSpawn = false; // Helo jump spawn
|
||||||
|
DZE_enableBloodRegen = true; // player slowly regains blood if they are well fed and resting
|
||||||
DZE_SelfTransfuse = true; // Allow players to give themselves blood transfusions
|
DZE_SelfTransfuse = true; // Allow players to give themselves blood transfusions
|
||||||
DZE_selfTransfuse_Values = [12000,15,120]; // [blood amount, infection chance, cool-down (seconds)]
|
DZE_selfTransfuse_Values = [12000,15,120]; // [blood amount, infection chance, cool-down (seconds)]
|
||||||
dayz_DamageMultiplier = 1; // Increases the damage to the player by zombie attacks
|
dayz_DamageMultiplier = 1; // Increases the damage to the player by zombie attacks
|
||||||
|
|||||||
@@ -171,6 +171,7 @@ if (!isDedicated) then {
|
|||||||
timezoneswitch = 0; // Changes murderMenu times with this offset in hours.
|
timezoneswitch = 0; // Changes murderMenu times with this offset in hours.
|
||||||
dayz_maxGlobalZeds = 500; // Maximum allowed zeds on the map
|
dayz_maxGlobalZeds = 500; // Maximum allowed zeds on the map
|
||||||
dayz_paraSpawn = false; // Helo jump spawn
|
dayz_paraSpawn = false; // Helo jump spawn
|
||||||
|
DZE_enableBloodRegen = true; // player slowly regains blood if they are well fed and resting
|
||||||
DZE_SelfTransfuse = true; // Allow players to give themselves blood transfusions
|
DZE_SelfTransfuse = true; // Allow players to give themselves blood transfusions
|
||||||
DZE_selfTransfuse_Values = [12000,15,120]; // [blood amount, infection chance, cool-down (seconds)]
|
DZE_selfTransfuse_Values = [12000,15,120]; // [blood amount, infection chance, cool-down (seconds)]
|
||||||
dayz_DamageMultiplier = 1; // Increases the damage to the player by zombie attacks
|
dayz_DamageMultiplier = 1; // Increases the damage to the player by zombie attacks
|
||||||
|
|||||||
@@ -171,6 +171,7 @@ if (!isDedicated) then {
|
|||||||
timezoneswitch = 0; // Changes murderMenu times with this offset in hours.
|
timezoneswitch = 0; // Changes murderMenu times with this offset in hours.
|
||||||
dayz_maxGlobalZeds = 500; // Maximum allowed zeds on the map
|
dayz_maxGlobalZeds = 500; // Maximum allowed zeds on the map
|
||||||
dayz_paraSpawn = false; // Helo jump spawn
|
dayz_paraSpawn = false; // Helo jump spawn
|
||||||
|
DZE_enableBloodRegen = true; // player slowly regains blood if they are well fed and resting
|
||||||
DZE_SelfTransfuse = true; // Allow players to give themselves blood transfusions
|
DZE_SelfTransfuse = true; // Allow players to give themselves blood transfusions
|
||||||
DZE_selfTransfuse_Values = [12000,15,120]; // [blood amount, infection chance, cool-down (seconds)]
|
DZE_selfTransfuse_Values = [12000,15,120]; // [blood amount, infection chance, cool-down (seconds)]
|
||||||
dayz_DamageMultiplier = 1; // Increases the damage to the player by zombie attacks
|
dayz_DamageMultiplier = 1; // Increases the damage to the player by zombie attacks
|
||||||
|
|||||||
@@ -171,6 +171,7 @@ if (!isDedicated) then {
|
|||||||
timezoneswitch = 0; // Changes murderMenu times with this offset in hours.
|
timezoneswitch = 0; // Changes murderMenu times with this offset in hours.
|
||||||
dayz_maxGlobalZeds = 500; // Maximum allowed zeds on the map
|
dayz_maxGlobalZeds = 500; // Maximum allowed zeds on the map
|
||||||
dayz_paraSpawn = false; // Helo jump spawn
|
dayz_paraSpawn = false; // Helo jump spawn
|
||||||
|
DZE_enableBloodRegen = true; // player slowly regains blood if they are well fed and resting
|
||||||
DZE_SelfTransfuse = true; // Allow players to give themselves blood transfusions
|
DZE_SelfTransfuse = true; // Allow players to give themselves blood transfusions
|
||||||
DZE_selfTransfuse_Values = [12000,15,120]; // [blood amount, infection chance, cool-down (seconds)]
|
DZE_selfTransfuse_Values = [12000,15,120]; // [blood amount, infection chance, cool-down (seconds)]
|
||||||
dayz_DamageMultiplier = 1; // Increases the damage to the player by zombie attacks
|
dayz_DamageMultiplier = 1; // Increases the damage to the player by zombie attacks
|
||||||
|
|||||||
@@ -171,6 +171,7 @@ if (!isDedicated) then {
|
|||||||
timezoneswitch = 0; // Changes murderMenu times with this offset in hours.
|
timezoneswitch = 0; // Changes murderMenu times with this offset in hours.
|
||||||
dayz_maxGlobalZeds = 500; // Maximum allowed zeds on the map
|
dayz_maxGlobalZeds = 500; // Maximum allowed zeds on the map
|
||||||
dayz_paraSpawn = false; // Helo jump spawn
|
dayz_paraSpawn = false; // Helo jump spawn
|
||||||
|
DZE_enableBloodRegen = true; // player slowly regains blood if they are well fed and resting
|
||||||
DZE_SelfTransfuse = true; // Allow players to give themselves blood transfusions
|
DZE_SelfTransfuse = true; // Allow players to give themselves blood transfusions
|
||||||
DZE_selfTransfuse_Values = [12000,15,120]; // [blood amount, infection chance, cool-down (seconds)]
|
DZE_selfTransfuse_Values = [12000,15,120]; // [blood amount, infection chance, cool-down (seconds)]
|
||||||
dayz_DamageMultiplier = 1; // Increases the damage to the player by zombie attacks
|
dayz_DamageMultiplier = 1; // Increases the damage to the player by zombie attacks
|
||||||
|
|||||||
@@ -171,6 +171,7 @@ if (!isDedicated) then {
|
|||||||
timezoneswitch = 0; // Changes murderMenu times with this offset in hours.
|
timezoneswitch = 0; // Changes murderMenu times with this offset in hours.
|
||||||
dayz_maxGlobalZeds = 500; // Maximum allowed zeds on the map
|
dayz_maxGlobalZeds = 500; // Maximum allowed zeds on the map
|
||||||
dayz_paraSpawn = false; // Helo jump spawn
|
dayz_paraSpawn = false; // Helo jump spawn
|
||||||
|
DZE_enableBloodRegen = true; // player slowly regains blood if they are well fed and resting
|
||||||
DZE_SelfTransfuse = true; // Allow players to give themselves blood transfusions
|
DZE_SelfTransfuse = true; // Allow players to give themselves blood transfusions
|
||||||
DZE_selfTransfuse_Values = [12000,15,120]; // [blood amount, infection chance, cool-down (seconds)]
|
DZE_selfTransfuse_Values = [12000,15,120]; // [blood amount, infection chance, cool-down (seconds)]
|
||||||
dayz_DamageMultiplier = 1; // Increases the damage to the player by zombie attacks
|
dayz_DamageMultiplier = 1; // Increases the damage to the player by zombie attacks
|
||||||
|
|||||||
@@ -171,6 +171,7 @@ if (!isDedicated) then {
|
|||||||
timezoneswitch = 0; // Changes murderMenu times with this offset in hours.
|
timezoneswitch = 0; // Changes murderMenu times with this offset in hours.
|
||||||
dayz_maxGlobalZeds = 500; // Maximum allowed zeds on the map
|
dayz_maxGlobalZeds = 500; // Maximum allowed zeds on the map
|
||||||
dayz_paraSpawn = false; // Helo jump spawn
|
dayz_paraSpawn = false; // Helo jump spawn
|
||||||
|
DZE_enableBloodRegen = true; // player slowly regains blood if they are well fed and resting
|
||||||
DZE_SelfTransfuse = true; // Allow players to give themselves blood transfusions
|
DZE_SelfTransfuse = true; // Allow players to give themselves blood transfusions
|
||||||
DZE_selfTransfuse_Values = [12000,15,120]; // [blood amount, infection chance, cool-down (seconds)]
|
DZE_selfTransfuse_Values = [12000,15,120]; // [blood amount, infection chance, cool-down (seconds)]
|
||||||
dayz_DamageMultiplier = 1; // Increases the damage to the player by zombie attacks
|
dayz_DamageMultiplier = 1; // Increases the damage to the player by zombie attacks
|
||||||
|
|||||||
@@ -171,6 +171,7 @@ if (!isDedicated) then {
|
|||||||
timezoneswitch = 0; // Changes murderMenu times with this offset in hours.
|
timezoneswitch = 0; // Changes murderMenu times with this offset in hours.
|
||||||
dayz_maxGlobalZeds = 500; // Maximum allowed zeds on the map
|
dayz_maxGlobalZeds = 500; // Maximum allowed zeds on the map
|
||||||
dayz_paraSpawn = false; // Helo jump spawn
|
dayz_paraSpawn = false; // Helo jump spawn
|
||||||
|
DZE_enableBloodRegen = true; // player slowly regains blood if they are well fed and resting
|
||||||
DZE_SelfTransfuse = true; // Allow players to give themselves blood transfusions
|
DZE_SelfTransfuse = true; // Allow players to give themselves blood transfusions
|
||||||
DZE_selfTransfuse_Values = [12000,15,120]; // [blood amount, infection chance, cool-down (seconds)]
|
DZE_selfTransfuse_Values = [12000,15,120]; // [blood amount, infection chance, cool-down (seconds)]
|
||||||
dayz_DamageMultiplier = 1; // Increases the damage to the player by zombie attacks
|
dayz_DamageMultiplier = 1; // Increases the damage to the player by zombie attacks
|
||||||
|
|||||||
@@ -171,6 +171,7 @@ if (!isDedicated) then {
|
|||||||
timezoneswitch = 0; // Changes murderMenu times with this offset in hours.
|
timezoneswitch = 0; // Changes murderMenu times with this offset in hours.
|
||||||
dayz_maxGlobalZeds = 500; // Maximum allowed zeds on the map
|
dayz_maxGlobalZeds = 500; // Maximum allowed zeds on the map
|
||||||
dayz_paraSpawn = false; // Helo jump spawn
|
dayz_paraSpawn = false; // Helo jump spawn
|
||||||
|
DZE_enableBloodRegen = true; // player slowly regains blood if they are well fed and resting
|
||||||
DZE_SelfTransfuse = true; // Allow players to give themselves blood transfusions
|
DZE_SelfTransfuse = true; // Allow players to give themselves blood transfusions
|
||||||
DZE_selfTransfuse_Values = [12000,15,120]; // [blood amount, infection chance, cool-down (seconds)]
|
DZE_selfTransfuse_Values = [12000,15,120]; // [blood amount, infection chance, cool-down (seconds)]
|
||||||
dayz_DamageMultiplier = 1; // Increases the damage to the player by zombie attacks
|
dayz_DamageMultiplier = 1; // Increases the damage to the player by zombie attacks
|
||||||
|
|||||||
@@ -171,6 +171,7 @@ if (!isDedicated) then {
|
|||||||
timezoneswitch = 0; // Changes murderMenu times with this offset in hours.
|
timezoneswitch = 0; // Changes murderMenu times with this offset in hours.
|
||||||
dayz_maxGlobalZeds = 500; // Maximum allowed zeds on the map
|
dayz_maxGlobalZeds = 500; // Maximum allowed zeds on the map
|
||||||
dayz_paraSpawn = false; // Helo jump spawn
|
dayz_paraSpawn = false; // Helo jump spawn
|
||||||
|
DZE_enableBloodRegen = true; // player slowly regains blood if they are well fed and resting
|
||||||
DZE_SelfTransfuse = true; // Allow players to give themselves blood transfusions
|
DZE_SelfTransfuse = true; // Allow players to give themselves blood transfusions
|
||||||
DZE_selfTransfuse_Values = [12000,15,120]; // [blood amount, infection chance, cool-down (seconds)]
|
DZE_selfTransfuse_Values = [12000,15,120]; // [blood amount, infection chance, cool-down (seconds)]
|
||||||
dayz_DamageMultiplier = 1; // Increases the damage to the player by zombie attacks
|
dayz_DamageMultiplier = 1; // Increases the damage to the player by zombie attacks
|
||||||
|
|||||||
@@ -171,6 +171,7 @@ if (!isDedicated) then {
|
|||||||
timezoneswitch = 0; // Changes murderMenu times with this offset in hours.
|
timezoneswitch = 0; // Changes murderMenu times with this offset in hours.
|
||||||
dayz_maxGlobalZeds = 500; // Maximum allowed zeds on the map
|
dayz_maxGlobalZeds = 500; // Maximum allowed zeds on the map
|
||||||
dayz_paraSpawn = false; // Helo jump spawn
|
dayz_paraSpawn = false; // Helo jump spawn
|
||||||
|
DZE_enableBloodRegen = true; // player slowly regains blood if they are well fed and resting
|
||||||
DZE_SelfTransfuse = true; // Allow players to give themselves blood transfusions
|
DZE_SelfTransfuse = true; // Allow players to give themselves blood transfusions
|
||||||
DZE_selfTransfuse_Values = [12000,15,120]; // [blood amount, infection chance, cool-down (seconds)]
|
DZE_selfTransfuse_Values = [12000,15,120]; // [blood amount, infection chance, cool-down (seconds)]
|
||||||
dayz_DamageMultiplier = 1; // Increases the damage to the player by zombie attacks
|
dayz_DamageMultiplier = 1; // Increases the damage to the player by zombie attacks
|
||||||
|
|||||||
@@ -171,6 +171,7 @@ if (!isDedicated) then {
|
|||||||
timezoneswitch = 0; // Changes murderMenu times with this offset in hours.
|
timezoneswitch = 0; // Changes murderMenu times with this offset in hours.
|
||||||
dayz_maxGlobalZeds = 500; // Maximum allowed zeds on the map
|
dayz_maxGlobalZeds = 500; // Maximum allowed zeds on the map
|
||||||
dayz_paraSpawn = false; // Helo jump spawn
|
dayz_paraSpawn = false; // Helo jump spawn
|
||||||
|
DZE_enableBloodRegen = true; // player slowly regains blood if they are well fed and resting
|
||||||
DZE_SelfTransfuse = true; // Allow players to give themselves blood transfusions
|
DZE_SelfTransfuse = true; // Allow players to give themselves blood transfusions
|
||||||
DZE_selfTransfuse_Values = [12000,15,120]; // [blood amount, infection chance, cool-down (seconds)]
|
DZE_selfTransfuse_Values = [12000,15,120]; // [blood amount, infection chance, cool-down (seconds)]
|
||||||
dayz_DamageMultiplier = 1; // Increases the damage to the player by zombie attacks
|
dayz_DamageMultiplier = 1; // Increases the damage to the player by zombie attacks
|
||||||
|
|||||||
@@ -171,6 +171,7 @@ if (!isDedicated) then {
|
|||||||
timezoneswitch = 0; // Changes murderMenu times with this offset in hours.
|
timezoneswitch = 0; // Changes murderMenu times with this offset in hours.
|
||||||
dayz_maxGlobalZeds = 500; // Maximum allowed zeds on the map
|
dayz_maxGlobalZeds = 500; // Maximum allowed zeds on the map
|
||||||
dayz_paraSpawn = false; // Helo jump spawn
|
dayz_paraSpawn = false; // Helo jump spawn
|
||||||
|
DZE_enableBloodRegen = true; // player slowly regains blood if they are well fed and resting
|
||||||
DZE_SelfTransfuse = true; // Allow players to give themselves blood transfusions
|
DZE_SelfTransfuse = true; // Allow players to give themselves blood transfusions
|
||||||
DZE_selfTransfuse_Values = [12000,15,120]; // [blood amount, infection chance, cool-down (seconds)]
|
DZE_selfTransfuse_Values = [12000,15,120]; // [blood amount, infection chance, cool-down (seconds)]
|
||||||
dayz_DamageMultiplier = 1; // Increases the damage to the player by zombie attacks
|
dayz_DamageMultiplier = 1; // Increases the damage to the player by zombie attacks
|
||||||
|
|||||||
@@ -171,6 +171,7 @@ if (!isDedicated) then {
|
|||||||
timezoneswitch = 0; // Changes murderMenu times with this offset in hours.
|
timezoneswitch = 0; // Changes murderMenu times with this offset in hours.
|
||||||
dayz_maxGlobalZeds = 500; // Maximum allowed zeds on the map
|
dayz_maxGlobalZeds = 500; // Maximum allowed zeds on the map
|
||||||
dayz_paraSpawn = false; // Helo jump spawn
|
dayz_paraSpawn = false; // Helo jump spawn
|
||||||
|
DZE_enableBloodRegen = true; // player slowly regains blood if they are well fed and resting
|
||||||
DZE_SelfTransfuse = true; // Allow players to give themselves blood transfusions
|
DZE_SelfTransfuse = true; // Allow players to give themselves blood transfusions
|
||||||
DZE_selfTransfuse_Values = [12000,15,120]; // [blood amount, infection chance, cool-down (seconds)]
|
DZE_selfTransfuse_Values = [12000,15,120]; // [blood amount, infection chance, cool-down (seconds)]
|
||||||
dayz_DamageMultiplier = 1; // Increases the damage to the player by zombie attacks
|
dayz_DamageMultiplier = 1; // Increases the damage to the player by zombie attacks
|
||||||
|
|||||||
@@ -171,6 +171,7 @@ if (!isDedicated) then {
|
|||||||
timezoneswitch = 0; // Changes murderMenu times with this offset in hours.
|
timezoneswitch = 0; // Changes murderMenu times with this offset in hours.
|
||||||
dayz_maxGlobalZeds = 500; // Maximum allowed zeds on the map
|
dayz_maxGlobalZeds = 500; // Maximum allowed zeds on the map
|
||||||
dayz_paraSpawn = false; // Helo jump spawn
|
dayz_paraSpawn = false; // Helo jump spawn
|
||||||
|
DZE_enableBloodRegen = true; // player slowly regains blood if they are well fed and resting
|
||||||
DZE_SelfTransfuse = true; // Allow players to give themselves blood transfusions
|
DZE_SelfTransfuse = true; // Allow players to give themselves blood transfusions
|
||||||
DZE_selfTransfuse_Values = [12000,15,120]; // [blood amount, infection chance, cool-down (seconds)]
|
DZE_selfTransfuse_Values = [12000,15,120]; // [blood amount, infection chance, cool-down (seconds)]
|
||||||
dayz_DamageMultiplier = 1; // Increases the damage to the player by zombie attacks
|
dayz_DamageMultiplier = 1; // Increases the damage to the player by zombie attacks
|
||||||
|
|||||||
@@ -171,6 +171,7 @@ if (!isDedicated) then {
|
|||||||
timezoneswitch = 0; // Changes murderMenu times with this offset in hours.
|
timezoneswitch = 0; // Changes murderMenu times with this offset in hours.
|
||||||
dayz_maxGlobalZeds = 500; // Maximum allowed zeds on the map
|
dayz_maxGlobalZeds = 500; // Maximum allowed zeds on the map
|
||||||
dayz_paraSpawn = false; // Helo jump spawn
|
dayz_paraSpawn = false; // Helo jump spawn
|
||||||
|
DZE_enableBloodRegen = true; // player slowly regains blood if they are well fed and resting
|
||||||
DZE_SelfTransfuse = true; // Allow players to give themselves blood transfusions
|
DZE_SelfTransfuse = true; // Allow players to give themselves blood transfusions
|
||||||
DZE_selfTransfuse_Values = [12000,15,120]; // [blood amount, infection chance, cool-down (seconds)]
|
DZE_selfTransfuse_Values = [12000,15,120]; // [blood amount, infection chance, cool-down (seconds)]
|
||||||
dayz_DamageMultiplier = 1; // Increases the damage to the player by zombie attacks
|
dayz_DamageMultiplier = 1; // Increases the damage to the player by zombie attacks
|
||||||
|
|||||||
Reference in New Issue
Block a user