Advertisement
johnpac

SC:R Ignore Whisper

Jan 27th, 2024 (edited)
486
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. #Persistent
  2. #SingleInstance force
  3. #NoTrayIcon
  4. #IfWinActive Brood War
  5.  
  6. CheckLeagueClient()
  7. {
  8.     Process, Exist, LeagueClient.exe
  9.     If ErrorLevel ; LeagueClient.exe가 실행 중이면
  10.     {
  11.         MsgBox, 48, 경고, LoL 클라이언트가 감지되었습니다.`n귓말차단 프로그램을 종료합니다., 3
  12.         ExitApp ; 오토핫키 종료
  13.     }
  14. }
  15.  
  16. SetTimer, CheckLeagueClient, 1000 ; 1초마다 LeagueClient.exe 실행 여부 확인
  17.  
  18. ; GUI 생성 구문
  19. Gui, Add, Button, x25 y70 w200 h30 gBtn, 종료
  20. Gui, Add, Text, x90 y30, 귓말 차단 : F1
  21. Gui, Show, w250 h120, 스타 귓말 차단
  22. return
  23.  
  24. Btn:
  25. ExitApp
  26. return
  27.  
  28. GuiClose:
  29. ExitApp
  30.  
  31. ; 단축키 지정 구문
  32. F1::
  33.     SendInput, {Enter}/o igw{Enter}
  34.     Return
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement