mirror of
https://github.com/EpochModTeam/DayZ-Epoch.git
synced 2025-12-15 13:26:39 +03:00
0.94
+ 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:
14
dayz_server/compile/server_playerDeaths.sqf
Normal file
14
dayz_server/compile/server_playerDeaths.sqf
Normal file
@@ -0,0 +1,14 @@
|
||||
private["_character","_clientID"];
|
||||
|
||||
_character = _this select 0;
|
||||
_clientID = owner _character;
|
||||
|
||||
diag_log ("HIVE: Player Death list Request by ClientID: "+ str(_clientID));
|
||||
|
||||
diag_log(PlayerDeaths);
|
||||
|
||||
dayzPlayerDeathsResult = PlayerDeaths;
|
||||
|
||||
_clientID publicVariableClient "dayzPlayerDeathsResult";
|
||||
|
||||
PlayerDeaths
|
||||
@@ -34,8 +34,11 @@ if (_killerName != "nil") then
|
||||
};
|
||||
|
||||
diag_log _loc_message;
|
||||
[nil, nil, rspawn, [_killer, _message], { (_this select 0) globalChat (_this select 1) }] call RE;
|
||||
//[nil, nil, rHINT, _message] call RE;
|
||||
// [nil, nil, rspawn, [_killer, _message], { (_this select 0) globalChat (_this select 1) }] call RE;
|
||||
// [nil, nil, rHINT, _message] call RE;
|
||||
|
||||
// build array to store death messages to allow viewing at message board in trader citys.
|
||||
PlayerDeaths set [count PlayerDeaths,_message];
|
||||
|
||||
// Cleanup
|
||||
_victim setVariable["AttackedBy", "nil", true];
|
||||
|
||||
Reference in New Issue
Block a user