MV 플러그인

Cap 2016-02-03 15-07-18-234.png


소개

  아방스 질문과 답변 게시판에 책벌레공상가님께서 문의하신 기능을 담아보았습니다. 아이템 선택의 처리시 도움말창이 표시됩니다.

Download

http://eternalworld.tistory.com/455


  경우에 따라선 타 메시지 스크립트와 혼용시 문제가 발생할 수도 있습니다.


  러닝은빛의 한글 메시지 시스템과 혼용하시는 경우 해당 부분을 찾아 아래와 같이 수정해주세요.

    Window_Message.prototype.subWindows = function() {
        return [this._goldWindow, this._choiceWindow,
                this._numberWindow, this._itemWindow, this._helpWindow, this._nameWindow];
    };


수정내역

  • 1.0.0
    • realese

Who's 습작

profile

* 게임소재 자료실 관리자 (2012.04.17 ~ ) / 게임리뷰 게시판 관리자 (2012.08.23 ~ )
* 개인 블로그 : https://eternalworld.tistory.com
└ RPG Maker VX/Ace 메뉴 편집기 등 배포
* 리뷰 블로그 : https://etude87.tistory.com
└ RPG Maker 시리즈 한글패치 정리, 쯔꾸르 시리즈 이용 규약 등 소개
* 프리 게임 한글화 DB : https://freegame.tistory.com
└ 한글화된 해외 무료 게임 정리

Atachment
첨부 '1'
  • profile
    책벌레공상가 2016.02.04 08:53

    직접 실험해본 결과 배치 순서를 한글 메세지 시스템 아래로 배치하였더니
    정성적으로 나오는것을 확인하였습니다.

    감사합니다.

  • profile
    책벌레공상가 2016.02.04 08:59

    그런데 이번에는 한글 메세지 시스템에
    이름창이 안나오는 버그가~
    http://avangs.info/plugin_mv/1511962


    한글 메세지 시스템을 아래로 옮기면 이름창은 나오지만

    반대로 아이템 선택시 설명창이 안 나와요.

  • profile
    습작 2016.02.04 09:09

    제것에서 아래 부분을 찾아서

        Window_Message.prototype.subWindows = function() {
            return [this._goldWindow, this._choiceWindow,
                    this._numberWindow, this._itemWindow, this._helpWindow];
        };

    아래와 같이 수정해주시면 될 듯 하네요.

      Window_Message.prototype.subWindows = function() {
        return [this._goldWindow, this._choiceWindow,
                this._numberWindow, this._itemWindow, this._helpWindow, this._nameWindow];
      };


    서로 재정의 하고 있어서 한쪽이 죽었던 모양입니다.

  • profile

    11111.png


    성공적으로 나오네요~