From 4c46e8736d850cdccaab9b66ffdda49b21eba1c1 Mon Sep 17 00:00:00 2001 From: efiyo Date: Tue, 21 May 2024 13:12:24 +0200 Subject: [PATCH] Upload files to "/" --- custom_cord_global_deafen.ahk | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 custom_cord_global_deafen.ahk diff --git a/custom_cord_global_deafen.ahk b/custom_cord_global_deafen.ahk new file mode 100644 index 0000000..b11f251 --- /dev/null +++ b/custom_cord_global_deafen.ahk @@ -0,0 +1,19 @@ +#Requires AutoHotkey v2.0 +; Define the hotkey that you would like to use, example here is the Pause key +Pause:: +{ + ; Replace all instances of ArmCord with the window title of your custom client + ; Check if the "ArmCord" window exists and is active + if WinExist("ArmCord") + { + ; Activate the "ArmCord" window + WinActivate + ; Send Ctrl+Shift+D + Send "^+d" + } + else + { + ; Optionally, show a message if the window is not found + MsgBox "ArmCord window not found!" + } +}