From 1e7a9c0e21a9320aa163c15a3797afe660b032d2 Mon Sep 17 00:00:00 2001 From: Birdtalon Date: Thu, 19 Oct 2023 17:25:20 +0100 Subject: [PATCH] adds NVG auto response --- code/modules/mentor/mentorhelp.dm | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/code/modules/mentor/mentorhelp.dm b/code/modules/mentor/mentorhelp.dm index 7746e90d960d..3c6bca42f563 100644 --- a/code/modules/mentor/mentorhelp.dm +++ b/code/modules/mentor/mentorhelp.dm @@ -304,7 +304,7 @@ to_chat(responder, SPAN_NOTICE("NOTICE: A mentor is already handling this thread!")) return - var/choice = tgui_input_list(usr, "Which autoresponse option do you want to send to the player?\n\n L - A webpage link.\n A - An answer to a common question.", "Autoresponse", list ("L: Discord", "L: Xeno Quickstart Guide", "L: Marine Quickstart Guide", "L: Current Map", "A: No plasma regen", "A: Devour as Xeno", "T: Tunnel", "E: Event in progress", "R: Radios", "B: Binoculars", "D: Joining disabled", "L: Leaving the server", "M: Macros", "C: Changelog", "H: Clear Cache", "O: Combat Click-Drag Override")) + var/choice = tgui_input_list(usr, "Which autoresponse option do you want to send to the player?\n\n L - A webpage link.\n A - An answer to a common question.", "Autoresponse", list ("L: Discord", "L: Xeno Quickstart Guide", "L: Marine Quickstart Guide", "L: Current Map", "A: No plasma regen", "A: Devour as Xeno", "T: Tunnel", "E: Event in progress", "R: Radios", "B: Binoculars", "D: Joining disabled", "L: Leaving the server", "M: Macros", "C: Changelog", "H: Clear Cache", "O: Combat Click-Drag Override", "A: Recharge NVG Optics")) if(!choice) return @@ -358,5 +358,7 @@ msg += "In order to clear cache, you need to click on gear icon located in upper-right corner of your BYOND client and select preferences. Switch to Games tab and click Clear Cache button. In some cases you need to manually delete cache. To do that, select Advanced tab and click Open User Directory and delete \"cache\" folder there." if("O: Combat Click-Drag Override") msg += "When clicking while moving the mouse, Byond sometimes detects it as a click-and-drag attempt and prevents the click from taking effect, even if the button was only held down for an instant.\nThis toggle means that when you're on disarm or harm intent, depressing the mouse triggers a click immediately even if you hold it down - unless you're trying to click-drag yourself, an ally, or something in your own inventory." + if("A: Recharge NVG Optics") + msg += "NVG Optics can be toggled via a helmet visor. To switch between HUDs, simply click the icon in the upper left-hand portion of your screen. The Night Vision optic has roughly five minutes of use before needing to be recharged. To recharge the optic, use a screwdriver on your helmet to remove. This will remove all attached HUDs/optics. Take the Night Vision optic and place it in a recharger to recharge its battery." message_handlers(msg, responder, author)