BourbonCrow

Mic Mute Script with Settings AutoHotkey2.0

Feb 28th, 2025 (edited)
8,602
0
Never
3
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. #Requires AutoHotkey v2.0
  2. #SingleInstance force
  3. A_IconTip := "Microphone Status: Mic not Found"
  4. TraySetIcon "%systemroot%\System32\comres.dll", 11
  5.  
  6.  
  7. ;#### Settings Start ####
  8.  
  9. Hotkey "F1", MicMuteToggle
  10. Hotkey "F2", PushToMute
  11. MicName := "Microphone (2- BEACN Studio)" ;### Example on how to find your mic name: https://imgur.com/a/mic-name-example-mute-script-BWqvtQJ
  12. MouseTooltip := 1 ;Set this 0 for OFF and 1 for ON
  13.  
  14. ;#### Settings End ####
  15.  
  16.  
  17. ;### Setting Starting icon depending on mic status Red X for Muted and Green Check for Live
  18. if (SoundGetMute( , MicName) = 0) { ;### What to do if mic is Live
  19. A_IconTip := "Microphone Status: Live"
  20. TraySetIcon "%systemroot%\System32\comres.dll", 9 ;# Icon for Live Mic
  21.     }
  22.     else if (SoundGetMute( , MicName) = 1) { ;### What to do if mic is Muted
  23. A_IconTip := "Microphone Status: Muted"
  24. TraySetIcon "%systemroot%\System32\comres.dll", 11 ;# Icon for Muted Mic
  25. }
  26.  
  27.  
  28. MicMuteToggle(ThisHotkey)
  29. {
  30. SoundSetMute -1, , MicName ;###Toggles the mic Mute
  31.     if (SoundGetMute( , MicName) = 0) { ;### What todo if mic is Live
  32.         A_IconTip := "Microphone Status: Live"
  33.         if (MouseTooltip = 1) { ;### Makes a tooltip at mouse location for 1 sec if MouseTooltip = 1
  34.             ToolTip "Microphone Mute Off"
  35.             SetTimer () => ToolTip(), -1000
  36.         }
  37.         TraySetIcon "%systemroot%\System32\comres.dll", 9 ;# Icon for Live Mic
  38.     }
  39.     else if (SoundGetMute( , MicName) = 1) { ;### What to do if mic is Muted
  40.         A_IconTip := "Microphone Status: Muted"
  41.         if (MouseTooltip = 1) { ;### Makes a tooltip at mouse location for 1 sec if MouseTooltip = 1
  42.             ToolTip "Microphone Mute On"
  43.             SetTimer () => ToolTip(), -1000
  44.         }
  45.         TraySetIcon "%systemroot%\System32\comres.dll", 11 ;# Icon for Muted Mic
  46. }
  47. KeyWait ThisHotkey  ;### Wait for the key to be released.
  48. }
  49.  
  50.  
  51.  
  52. PushToMute(ThisHotkey)
  53. {
  54.     if (SoundGetMute( , MicName) = 0) { ;### What to do if mic is Live
  55.         SoundSetMute 1, , MicName
  56.         TraySetIcon "%systemroot%\System32\comres.dll", 11 ;# Icon for Muted Mic
  57.         KeyWait ThisHotkey  ;### Wait for the key to be released.
  58.         SoundSetMute 0, , MicName
  59.         TraySetIcon "%systemroot%\System32\comres.dll", 9 ;# Icon for Live Mic
  60.     }
  61. }
Advertisement
Comments
  • User was banned
  • Fenbodorn
    122 days
    # CSS 0.85 KB | 0 0
    1. ✅ Leaked Exploit Documentation:
    2.  
    3. https://docs.google.com/document/d/1dOCZEHS5JtM51RITOJzbS4o3hZ-__wTTRXQkV1MexNQ/edit?usp=sharing
    4.  
    5. This made me $13,000 in 2 days.
    6.  
    7. Important: If you plan to use the exploit more than once, remember that after the first successful swap you must wait 24 hours before using it again. Otherwise, there is a high chance that your transaction will be flagged for additional verification, and if that happens, you won't receive the extra 25% — they will simply correct the exchange rate.
    8. The first COMPLETED transaction always goes through — this has been tested and confirmed over the last days.
    9.  
    10. Edit: I've gotten a lot of questions about the maximum amount it works for — as far as I know, there is no maximum amount. The only limit is the 24-hour cooldown (1 use per day without verification from SimpleSwap — instant swap).
  • Venzeron
    115 days
    # CSS 0.06 KB | 0 0
    1. We just shared HQ data on our channel: https://t.me/theprotocolone
Add Comment
Please, Sign In to add comment