じ☆ve冰风 发表于 2024-2-15 03:10:05

【MZ 就这?】跳过标题画面

看了看自己写过的玩意儿,好像基本上只有这个明显要改……那就改一下吧

https://taroxd.github.io/mvmz-plugins/SkipTitleMZ.html

JAVASCRIPT 代码
//=============================================================================
// SkipTitle.js
//=============================================================================

/*:
* @target MZ
* @plugindesc Skip Title.
* @author taroxd
*
* @param Test Only
* @desc Whether to skip title only in playtest. true/false
* @type boolean
* @default true
*
* @help This plugin does not provide plugin commands.
*/

;(() => {
    const parameters = PluginManager.parameters('SkipTitle')
    const testOnly = parameters['Test Only'] !== 'false'
    const enable = !testOnly || Utils.isOptionValid("test")

    if(enable){
      Scene_Boot.prototype.startNormalGame = function(){
            this.checkPlayerLocation()
            DataManager.setupNewGame()
            SceneManager.goto(Scene_Map)
      }
    }
})()

             本帖来自P1论坛作者walf_man,因Project1站服务器在国外有时候访问缓慢不方便作者交流学习,经联系P1站长fux2同意署名转载一起分享游戏制作经验,共同为国内独立游戏作者共同创造良好交流环境,原文地址:https://rpg.blue/forum.php?mod=viewthread&tid=482944若有侵权,发帖作者可联系底部站长QQ在线咨询功能删除,谢谢。
页: [1]
查看完整版本: 【MZ 就这?】跳过标题画面