MV 플러그인

타이틀/게임오버
2022.03.15 18:06

타이틀스킵 플러그인

조회 수 2472 추천 수 0 댓글 1

//=============================================================================
//타이틀 스킵
//=============================================================================

/*:
 * @target MV
 * @plugindesc 타이틀을 스킵하기위한플러그인
 * @author 라빈
 * 
 * @help plugins.js
 * 타이틀을 스킵을 해주는플러그인
 * (주의)MV용입니다 MZ에서는 사용이불가합니다
 * 
 * 버전1.0-MV
 * 
*/
Scene_Boot.prototype.start = function() {
    Scene_Base.prototype.start.call(this);
    SoundManager.preloadImportantSounds();
    if (DataManager.isBattleTest()) {
        DataManager.setupBattleTest();
        SceneManager.goto(Scene_Battle);
    } else if (DataManager.isEventTest()) {
        DataManager.setupEventTest();
        SceneManager.goto(Scene_Map);
    } else {
        this.checkPlayerLocation();
        DataManager.setupNewGame();
        //SceneManager.goto(Scene_Title);
        SceneManager.goto(Scene_Map);
        //Window_TitleCommand.initCommandPosition();
    }
    this.updateDocumentTitle();
};
 

  • ?
    투척민 2023.10.19 07:07
    //=============================================================================
    // Skip Title
    //=============================================================================

    /*:
    @help
    타이틀을 스킵하는 플러그인.
    */

    Scene_Boot.prototype.start = function() // 부팅과 관련된 함수입니다. (재정의)
    {
    if (DataManager.isBattleTest()) // 전투 테스트일 경우
    {
    DataManager.setupBattleTest();
    SceneManager.goto(Scene_Battle);
    }
    else // 그 외의 경우 (재정의 부분)
    {
    DataManager.setupNewGame();
    SceneManager.goto(Scene_Map);
    }
    }

    제가 만든 압축본입니다.
    이것저것 건드려보고 최종 수정했어요.
    주석 부분은 알기 쉽게 적은 부분이라 혹시 잘못된 부분이 있다면 지적해주세요.

List of Articles
번호 분류 제목 글쓴이 날짜 조회 수
공지 플러그인 자료 게시물 작성시 주의사항 습작 2015.10.25 1294
26 메뉴 CG회상 by qootm2(Q—S.T.) 4 file 습작 2015.12.26 2792
25 액터 SIOT_ActorShop.js 액터를 구입하는 스크립트 2 file 시옷전사 2015.11.26 1454
24 기타 RMMV + Live2D技術 by pb199486 13 file 습작 2015.11.22 3166
23 오디오 효과음 메로리 플러그인 1 file 랑비 2015.11.22 758
22 기타 Battle Engine Core , Action Sequence Pack 2 [전투 관련 엔진] 8 가시밭 2015.11.20 4052
21 스킬 MKMV_DrainPercentage​​ : Hp/Mp Drain 스킬 타입 백분율 계산 플러그인 2 file MKMV 2015.11.15 1304
20 키입력 MBS - Mobile DirPad & Action Button by Masked 4 file 습작 2015.11.07 1337
19 맵/타일 Zelda Style Map Transitions by Jeremy Cannady 4 습작 2015.11.05 1551
18 기타 ShowFPSOnStartup by tokineco 습작 2015.11.05 458
17 퀘스트 Gameus' Quest System 5 file 습작 2015.11.04 2842
16 타이틀/게임오버 자동 뉴 게임 by tomoaky 1 습작 2015.11.04 1202
15 이동 및 탈것 점프 액션 플러그인 by tomoaky 4 file 습작 2015.11.04 3175
14 HUD [ 추천 ] Orange HUD [ 화면에 HUD 로 변수 등을 출력 ] 1 가시밭 2015.11.03 1816
13 이동 및 탈것 [ 추천 ] Move Route Extras - Galv 3 가시밭 2015.10.31 1238
12 키입력 Mouse System Ex 마우스 입력 시스템 KiMeNin 2015.10.29 1503
11 메시지 Galv's Message Background file 습작 2015.10.29 1376
10 저장 MKMV_SaveManager (심플 세이브 & 세이브 슬롯 확장) file 최빛빛 2015.10.27 1719
9 메시지 Iavra Popup (MV port of Generic Popup) 습작 2015.10.26 1115
8 전투 배틀미스트(バトルミスト) by tomoaky 2 습작 2015.10.26 2694
7 기타 RPG Maker MV 와 AJAX를 이용한 웹 통신 플러그인 2 아방스 2015.10.26 966
Board Pagination Prev 1 2 3 4 Next
/ 4