Project1

标题: 求跳过mv自带的开始游戏插件 [打印本页]

作者: 夢百合    时间: 2017-7-1 23:46
标题: 求跳过mv自带的开始游戏插件
就是用插件跳过rpgmakermv自带的开始游戏界面的插件  用自己做的事件开始游戏……
作者: 鑫晴    时间: 2017-7-2 08:18
本帖最后由 鑫晴 于 2017-7-2 08:24 编辑


在RMMV安装目录下的dlc里面可以找到这个插件,你可以把它复制到你自己游戏目录的\js\plugins文件夹里面,或者把它放进NewData\js\plugins里面,这样每次新建工程就自带了
  1. \steamapps\common\RPG Maker MV\dlc\RPGmakerWeb_plugins\Yami\Yami_SkipTitle.js
复制代码




Yami的跳过标题插件

JAVASCRIPT 代码复制下载
  1. /*:
  2.  * @plugindesc Skip the title scene for testing purpose.
  3.  * @version 1.0
  4.  */
  5.  
  6. /*:ja
  7.  * @plugindesc テストプレイ用にタイトルシーンを飛ばすことができます。
  8.  * @version 1.0
  9.  */
  10.  
  11. (function() {
  12.  
  13.     Scene_Boot.prototype.start = function() {
  14.         Scene_Base.prototype.start.call(this);
  15.         SoundManager.preloadImportantSounds();
  16.         if (DataManager.isBattleTest()) {
  17.             DataManager.setupBattleTest();
  18.             SceneManager.goto(Scene_Battle);
  19.         } else {
  20.             this.checkPlayerLocation();
  21.             DataManager.setupNewGame();
  22.             SceneManager.goto(Scene_Map);
  23.         }
  24.         this.updateDocumentTitle();
  25.     };
  26.  
  27. })();





欢迎光临 Project1 (https://rpg.blue/) Powered by Discuz! X3.1