DMS_Exile/@ExileServer/addons/a3_dms/scripts/BroadcastMissionStatus.sqf
eraser1 74f562de7e Bunch of stuff
Renamed preInit/postInit

All config.sqf options setup and named (for now :P )

Removed "tools" from FillCrate since it was just addItemCargoGlobal as
well

FindSafePos adjustments + renames

IsNearWater function (from WAI)

Add "_markers" array to MissionStatusCheck params (planned implemention:
[_dot,_circle] for the ability to rename a marker after mission
completion. EG: "COMPLETED: Weapons Crate" for X seconds)

Created SelectMagazine fnc

Created files for a couple TODO functions
2015-08-28 03:38:46 -05:00

14 lines
635 B
Plaintext

if (DMS_DEBUG) then
{
diag_log format["DMS :: Notification types: |%1| for broadcasting mission status: %2",DMS_PlayerNotificationTypes,_this];
};
{
switch (_x) do
{
case "advancedHintRequest":{[_x, [_this]] call ExileServer_system_network_send_broadcast;};
case "dynamicTextRequest":{[_x, [_this,0,DMS_dynamicText_Size,DMS_dynamicText_Color]] call ExileServer_system_network_send_broadcast;};
case "standardHintRequest":{[_x, [_this]] call ExileServer_system_network_send_broadcast;};
case "systemChatRequest":{[_x, [_this]] call ExileServer_system_network_send_broadcast;};
};
false;
} count DMS_PlayerNotificationTypes;