mirror of
https://github.com/EpochModTeam/DayZ-Epoch.git
synced 2025-12-14 20:13:13 +03:00
Add note about splint and broken legs
Since R4z0r doesn't want it changed in vanilla.
This commit is contained in:
@@ -7,7 +7,7 @@ class Blueprint_woodensplint : Recipe {
|
|||||||
};
|
};
|
||||||
output[] =
|
output[] =
|
||||||
{
|
{
|
||||||
{"equip_woodensplint","CfgMagazines",1}
|
{"equip_woodensplint","CfgMagazines",1} // Only need one splint to fix legs
|
||||||
};
|
};
|
||||||
required[] =
|
required[] =
|
||||||
{
|
{
|
||||||
|
|||||||
@@ -161,7 +161,7 @@ if (_audible < 0.2) then {_audible = 0.2;};
|
|||||||
_ctrlEar ctrlSetTextColor [1, 1, 1, _audible];
|
_ctrlEar ctrlSetTextColor [1, 1, 1, _audible];
|
||||||
|
|
||||||
// Fracture/Broken Legs
|
// Fracture/Broken Legs
|
||||||
if !(canStand player) then {
|
if !(canStand player) then { //&& !(ctrlShown _ctrlFracture) makes icon flash non-stop until leg is fixed
|
||||||
_ctrlFracture ctrlShow true;
|
_ctrlFracture ctrlShow true;
|
||||||
}
|
}
|
||||||
else {
|
else {
|
||||||
|
|||||||
@@ -88,7 +88,7 @@ _ctrlEye ctrlSetText _visualtext;
|
|||||||
_ctrlEar ctrlSetText _audibletext;
|
_ctrlEar ctrlSetText _audibletext;
|
||||||
|
|
||||||
// Fracture/Broken Legs
|
// Fracture/Broken Legs
|
||||||
if !(canStand player) then {
|
if !(canStand player) then { //&& !(ctrlShown _ctrlFracture) makes icon flash non-stop until leg is fixed
|
||||||
_ctrlFracture ctrlShow true;
|
_ctrlFracture ctrlShow true;
|
||||||
}
|
}
|
||||||
else {
|
else {
|
||||||
|
|||||||
@@ -113,7 +113,7 @@ if (_audible > 0) then {_audibletext = "\z\addons\dayz_code\gui\status_epoch\val
|
|||||||
_ctrlEar ctrlSetText _audibletext;
|
_ctrlEar ctrlSetText _audibletext;
|
||||||
|
|
||||||
// Fracture/Broken Legs
|
// Fracture/Broken Legs
|
||||||
if !(canStand player) then {
|
if !(canStand player) then { //&& !(ctrlShown _ctrlFracture) makes icon flash non-stop until leg is fixed
|
||||||
_ctrlFracture ctrlShow true;
|
_ctrlFracture ctrlShow true;
|
||||||
}
|
}
|
||||||
else {
|
else {
|
||||||
|
|||||||
Reference in New Issue
Block a user