From 0e9b1b9e0322457ec426651438210288ef3815e1 Mon Sep 17 00:00:00 2001 From: KJeff01 Date: Sun, 1 Sep 2024 14:34:31 -0500 Subject: [PATCH] Add tip for Gamma secret --- data/base/script/campaign/cam3-4.js | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/data/base/script/campaign/cam3-4.js b/data/base/script/campaign/cam3-4.js index ae94dd92cb9..e92adab5877 100644 --- a/data/base/script/campaign/cam3-4.js +++ b/data/base/script/campaign/cam3-4.js @@ -135,7 +135,10 @@ function destroyPlayerVtols() function activateNexus() { - camSetExtraObjectiveMessage(_("Destroy the Nexus HQ to disable the Nexus Intruder Program")); + const HINT_TIP = _("Destroy the Nexus HQ to disable the Nexus Intruder Program"); + const HINT_TIP_WARN = _("Warning: HQ shielded against VTOL attacks"); + const objectiveMessages = [HINT_TIP, HINT_TIP_WARN]; + camSetExtraObjectiveMessage(objectiveMessages); playSound(cam_sounds.nexus.synapticLinksActivated); camSetNexusState(true); setTimer("nexusHackFeature", camSecondsToMilliseconds((difficulty <= EASY) ? 20 : 10));