Make that prettier... and update DMS_Version

This commit is contained in:
eraser1 2016-01-09 19:54:50 -06:00
parent 031dd386ad
commit cfde8f554a
2 changed files with 10 additions and 2 deletions

View File

@ -7,7 +7,7 @@ DMS_HC_Object = objNull;
DMS_CleanUpList = [];
DMS_Version = "January 6 2015 (RC1)";
DMS_Version = "January 9 2015 (RC1)";
//Load main config

View File

@ -164,7 +164,15 @@ if ((!isNull _playerObj) && {(_playerUID != "") && {_playerObj isKindOf "Exile_U
_members = units _group;
if (!(_group isEqualTo ExileGraveyardGroup) && {(count _members)>1}) then
{
_msg = format["%1 killed %2 from %3 meters away and received %4 poptabs and %5 respect.",name _playerObj,name _unit,if !(isNil "_distance") then {_distance} else {floor (_unit distance _playerObj)},_moneyChange,_repChange];
_msg = format
[
"%1 killed %2 from %3 meters away and received %4 poptabs and %5 respect.",
name _playerObj,
name _unit,
if !(isNil "_distance") then {_distance} else {floor(_unit distance _playerObj)},
_moneyChange,
_repChange
];
{
_msg remoteExecCall ["systemChat", _x];
} forEach _members;