From 53c3996aef5fb6b67d4475732ae552ebaef4ab8c Mon Sep 17 00:00:00 2001 From: Applevangelist <72444570+Applevangelist@users.noreply.github.com> Date: Thu, 19 Nov 2020 15:51:09 +0100 Subject: [PATCH 1/3] Update Task_A2A_Dispatcher.lua Add boolean in new to suppress "... has new tasks..." flashes --- Moose Development/Moose/Tasking/Task_A2A_Dispatcher.lua | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Moose Development/Moose/Tasking/Task_A2A_Dispatcher.lua b/Moose Development/Moose/Tasking/Task_A2A_Dispatcher.lua index 44db945c7..573b8c4b0 100644 --- a/Moose Development/Moose/Tasking/Task_A2A_Dispatcher.lua +++ b/Moose Development/Moose/Tasking/Task_A2A_Dispatcher.lua @@ -199,7 +199,7 @@ do -- TASK_A2A_DISPATCHER self.Detection = Detection self.Mission = Mission - + self.FlashNewTask = false -- TODO: Check detection through radar. self.Detection:FilterCategories( Unit.Category.AIRPLANE, Unit.Category.HELICOPTER ) @@ -610,7 +610,7 @@ do -- TASK_A2A_DISPATCHER local TaskText = TaskReport:Text(", ") for TaskGroupID, TaskGroup in pairs( self.SetGroup:GetSet() ) do - if ( not Mission:IsGroupAssigned(TaskGroup) ) and TaskText ~= "" then + if ( not Mission:IsGroupAssigned(TaskGroup) ) and TaskText ~= "" and ( not not self.FlashNewTask) then Mission:GetCommandCenter():MessageToGroup( string.format( "%s has tasks %s. Subscribe to a task using the radio menu.", Mission:GetShortText(), TaskText ), TaskGroup ) end end From 7ddec7609a6896632cfa7bf98547e60925afd85c Mon Sep 17 00:00:00 2001 From: Applevangelist <72444570+Applevangelist@users.noreply.github.com> Date: Thu, 19 Nov 2020 15:59:35 +0100 Subject: [PATCH 2/3] Update Task_Capture_Dispatcher.lua Last annoying flash gordon --- Moose Development/Moose/Tasking/Task_Capture_Dispatcher.lua | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/Moose Development/Moose/Tasking/Task_Capture_Dispatcher.lua b/Moose Development/Moose/Tasking/Task_Capture_Dispatcher.lua index 0c05ba18b..e9b3954ac 100644 --- a/Moose Development/Moose/Tasking/Task_Capture_Dispatcher.lua +++ b/Moose Development/Moose/Tasking/Task_Capture_Dispatcher.lua @@ -83,7 +83,7 @@ do -- TASK_CAPTURE_DISPATCHER -- ## 1.1. Create a command center. -- -- First you need to create a command center using the @{Tasking.CommandCenter#COMMANDCENTER.New}() constructor. - -- The command assumes that you´ve setup a group in the mission editor with the name HQ. + -- The command assumes that you´ve setup a group in the mission editor with the name HQ. -- This group will act as the command center object. -- It is a good practice to mark this group as invisible and invulnerable. -- @@ -184,6 +184,7 @@ do -- TASK_CAPTURE_DISPATCHER local self = BASE:Inherit( self, TASK_MANAGER:New( SetGroup ) ) -- #TASK_CAPTURE_DISPATCHER self.Mission = Mission + self.FlashNewTask = false self:AddTransition( "Started", "Assign", "Started" ) self:AddTransition( "Started", "ZoneCaptured", "Started" ) @@ -383,7 +384,7 @@ do -- TASK_CAPTURE_DISPATCHER local TaskText = TaskReport:Text(", ") for TaskGroupID, TaskGroup in pairs( self.SetGroup:GetSet() ) do - if ( not Mission:IsGroupAssigned(TaskGroup) ) and TaskText ~= "" then + if ( not Mission:IsGroupAssigned(TaskGroup) ) and TaskText ~= "" and ( not self.FlashNewTask ) then Mission:GetCommandCenter():MessageToGroup( string.format( "%s has tasks %s. Subscribe to a task using the radio menu.", Mission:GetShortText(), TaskText ), TaskGroup ) end end From ab5167717db9131b6d89aa1ca66694225ffa7883 Mon Sep 17 00:00:00 2001 From: Frank Date: Fri, 20 Nov 2020 10:17:45 +0100 Subject: [PATCH 3/3] Update Airboss.lua - Added F-14A-135-GR by Heatblur to the list of supported aircraft. --- Moose Development/Moose/Ops/Airboss.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Moose Development/Moose/Ops/Airboss.lua b/Moose Development/Moose/Ops/Airboss.lua index 9a5628880..592adaf21 100644 --- a/Moose Development/Moose/Ops/Airboss.lua +++ b/Moose Development/Moose/Ops/Airboss.lua @@ -1261,7 +1261,7 @@ AIRBOSS.AircraftCarrier={ AV8B="AV8BNA", HORNET="FA-18C_hornet", A4EC="A-4E-C", - F14A="F-14A_tomcat", + F14A="F-14A-135-GR", F14B="F-14B", F14A_AI="F-14A", FA18C="F/A-18C",