Lower group icons resource layer

Following 12abbfa
This commit is contained in:
ebayShopper
2017-03-31 15:12:24 -04:00
parent 0e244196e5
commit d5e808e4d1
9 changed files with 14 additions and 14 deletions

View File

@@ -15,5 +15,5 @@ dayz_groupDisbandThread = _group spawn {
deleteGroup _this;
terminate dayz_groupTags;
80000 cutText ["","PLAIN"];
8 cutText ["","PLAIN"];
};

View File

@@ -8,7 +8,7 @@ while {true} do {
[player] joinSilent grpNull;
if (!isNull findDisplay 80000) then {findDisplay 80000 closeDisplay 2;};
terminate dayz_groupTags;
80000 cutText ["","PLAIN"];
8 cutText ["","PLAIN"];
localize "STR_EPOCH_LOST_RADIO_CONTACT" call dayz_rollingMessages;
} else {
if (_inGroup && scriptDone dayz_groupTags) then {

View File

@@ -41,12 +41,12 @@ _refresh = {
while {true} do {
waitUntil {uiSleep 1; DRAW_TAGS};
80000 cutRsc ["DZ_GroupTags","PLAIN"];
8 cutRsc ["DZ_GroupTags","PLAIN"];
while {DRAW_TAGS} do {
call _refresh; //Must be called to finish in current frame
uiSleep 0.01;
};
80000 cutText ["","PLAIN"];
8 cutText ["","PLAIN"];
};

View File

@@ -15,7 +15,7 @@ if (typeName _add == "SCALAR") exitWith {
if (_uid == getPlayerUID player) then {
localize "STR_EPOCH_GROUP_KICKED" call dayz_rollingMessages;
terminate dayz_groupTags;
80000 cutText ["","PLAIN"];
8 cutText ["","PLAIN"];
} else {
systemChat format[localize "STR_EPOCH_PLAYER_KICKED",name (_uid call dayz_getPlayer)];
};
@@ -24,13 +24,13 @@ if (typeName _add == "SCALAR") exitWith {
systemChat format[localize "STR_EPOCH_PLAYER_LEFT",_uid];
if (count (player call dayz_filterGroup) == 1) then {
terminate dayz_groupTags;
80000 cutText ["","PLAIN"];
8 cutText ["","PLAIN"];
};
};
case 4: {
localize "STR_EPOCH_GROUP_DISBANDED" call dayz_rollingMessages;
terminate dayz_groupTags;
80000 cutText ["","PLAIN"];
8 cutText ["","PLAIN"];
};
};
};

View File

@@ -13,5 +13,5 @@ dayz_groupLeaveThread = [] spawn {
[player] joinSilent grpNull;
terminate dayz_groupTags;
80000 cutText ["","PLAIN"];
8 cutText ["","PLAIN"];
};