diff --git a/@ExileServer/addons/a3_dms/scripts/fn_BroadcastMissionStatus.sqf b/@ExileServer/addons/a3_dms/scripts/fn_BroadcastMissionStatus.sqf index 072b1f8..7540687 100644 --- a/@ExileServer/addons/a3_dms/scripts/fn_BroadcastMissionStatus.sqf +++ b/@ExileServer/addons/a3_dms/scripts/fn_BroadcastMissionStatus.sqf @@ -6,10 +6,11 @@ Usage: [ - _messageTitle, + _messageTitle, // The title of the message [ - _messageColor, - _message + _titleColor, // The color of the message (in hex colors) + _message, // The actual message. Usually a string. + _status // (OPTIONAL) The mission status. eg "win" or "lose". Currently only used on Exile Toasts. ] ] call DMS_fnc_BroadcastMissionStatus; @@ -43,9 +44,9 @@ if !(_message isEqualType "") then }; private _status = - if ((count _this)>2) then + if ((count _messageInfo)>2) then { - _this select 2 + _messageInfo select 2 } else { @@ -60,7 +61,7 @@ private _status = format["%1: %2",toUpper _messageTitle,_message] remoteExecCall ["systemChat",-2]; }; - case "ExileToasts": + case "exiletoasts": { private _toast_type = switch (_status) do diff --git a/@ExileServer/addons/a3_dms/scripts/fn_PlayerAwardOnAIKill.sqf b/@ExileServer/addons/a3_dms/scripts/fn_PlayerAwardOnAIKill.sqf index 9e4d773..03ac5d2 100644 --- a/@ExileServer/addons/a3_dms/scripts/fn_PlayerAwardOnAIKill.sqf +++ b/@ExileServer/addons/a3_dms/scripts/fn_PlayerAwardOnAIKill.sqf @@ -125,7 +125,8 @@ if ((!isNull _playerObj) && {(_playerUID != "") && {_playerObj isKindOf "Exile_U { private _group = group _playerObj; private _members = units _group; - if (!(_group isEqualTo ExileGraveyardGroup) && {(count _members)>1}) then + //if (!(_group isEqualTo ExileGraveyardGroup) && {(count _members)>1}) then + if ((count _members)>1) then { private _msg = format [ diff --git a/README.md b/README.md index 69333b0..eb62332 100644 --- a/README.md +++ b/README.md @@ -150,6 +150,9 @@ ___ # Changelog: ### Main Branch +#### June 29, 2016 (6:00 PM CST-America): +* Fixed a few issues (script errors, missions not broadcasting, group kill notifications not broadcasting). + #### June 29, 2016 (4:00 PM CST-America): * **NEW CONFIG VALUES**