이번 군단오면서 v누르면 나오는 이름표가 변경되서 적응안되시는분들도 있고
적응되시는분들도 있을텐데
TIdy Plates 에드온을 사용하면 이렇게 군단전 이름표러 변경이 가능합니다
그런데 이번 7.3? 패치 혹은 그전부터 부가옵션칸을 누르면 선택창이 안나오는 버그가 생겼더군요
저는 이전부터 쓰고있어서 몰랐는데
최근에 포맷하고 다시 설치하니깐
옵션칸을 누르면 선택창이 안나오더군요
그래서 해결방법이 없을까 하고 구글링을하다가
유럽?공홈에서 해결방법을 찾았습니다
해결방법은 이렇습니다
1. 일단 tidy 에드온폴더를 들어갑니다
2. 그리고 TidyPlatesUtility.lua 파일을 들어가는데
3. 이때 연결프로그렘을 메모장으로 하시고
4. 키시면 이렇게 나옵니다.
5. 우리가 고쳐줘야하는건
아래와 같은데..
Change the following lines in <WOW>/Interface/AddOns/TidyPlates/TidyPlatesUtility.lua:
Line 627: PlaySound(PlaySoundKitID and "igMainMenuOptionCheckBoxOn" or 856);
Line 632: PlaySound(PlaySoundKitID and "igMainMenuOptionCheckBoxOn" or 856);
That fixes it.
막막하죠
6. 일단 TidyPlatesUtility.lua에서 컨트롤 f를 눌러줍니다.
그리고
거기서 PlaySound를 하면 딱 2개만 검색이 됩니다.
이렇게요
7.이제 공홈에서 유저들이 알려준 방법으로 바꿔봅시다
8. PlaySound는 그대로 냅두고 괄호안에 있는 명령어를
PlaySoundKitID and "igMainMenuOptionCheckBoxOn" or 856 로 바꿉니다
그러면
PlaySound("igMainMenuOptionCheckBoxOn"); 에서
PlaySound(PlaySoundKitID and "igMainMenuOptionCheckBoxOn" or 856);
이렇게 바뀌겠죠?
아래도 똑같이 바꿔줍니다
PlaySound("igMainMenuOptionCheckBoxOn");에서
PlaySound(PlaySoundKitID and "igMainMenuOptionCheckBoxOn" or 856)으로
9. 저장을 하고
10. 와우를 실행하면
짜잔~ 해결~
쉽죠?
간단하게 설명하면
1. C:Program Files (x86)World of WarcraftInterfaceAddOnsTidyPlates 으로 들어간후
<설치경로는 개인마다 다릅니다>
2. TidyPlatesUtility.lua를 메모장으로 실행하고
3. Ctrl+F 를 눌러서 PlaySound를 검색한다음
4. PlaySound("igMainMenuOptionCheckBoxOn"); 명령어 2개를
5. PlaySound(PlaySoundKitID and "igMainMenuOptionCheckBoxOn" or 856);로 변경하면
해결!
그럼 즐와하세용~