+ Added 10oz gold bars
+ Added recipes for crafting 1 and 10oz gold bars
+ typo fixed in new sell menu color coding.
+ test to see if m113 can have cargo
+ kill messages added to server side array
+ info board added: Recent Player Deaths from server array.
+ fixed size of bronze bars
This commit is contained in:
vbawol
2013-02-11 13:24:56 -06:00
parent 966308d686
commit bf6d87514b
22 changed files with 202 additions and 29 deletions

View File

@@ -250,6 +250,19 @@ if (!isNull cursorTarget and !_inVehicle and (player distance cursorTarget < 6))
s_player_lockvault = -1;
};
//Player Deaths
if(cursorTarget isKindOf "Info_Board_EP1" and _canDo) then {
if ((s_player_information < 0) and (player distance cursorTarget < 3)) then {
s_player_information = player addAction ["Recent Deaths", "\z\addons\dayz_code\actions\list_playerDeaths.sqf",[], 0, false, true, "",""];
};
} else {
player removeAction s_player_information;
s_player_information = -1;
};
//Sleep
if(cursorTarget isKindOf "TentStorage" and _canDo and _ownerID == dayz_characterID) then {
if ((s_player_sleep < 0) and (player distance cursorTarget < 3)) then {