Project1

标题: 請問要如何使用腳本[關閉衝刺]呢? [打印本页]

作者: play337    时间: 2021-9-27 12:22
标题: 請問要如何使用腳本[關閉衝刺]呢?
本帖最后由 play337 于 2021-9-27 17:30 编辑

請問要如何使用腳本[關閉衝刺]呢?

01.我用 Cae_DashOpts 只能調整速度.... 但是MZ 其實還是判定 PLAYER 還是在 衝刺ˋ狀態

02.只有到 MENU 選擇關閉衝刺 主角才會 變成走路狀態

03. 我在設計選單裡面找不到 可以直接關閉衝刺的選項

有辦法 直接用 腳本關閉衝刺嗎? 就像在選單裡面選擇關閉衝刺一樣的效果嗎 ?



作者: lqi991    时间: 2021-9-27 12:22
想鼠标也影响的就要改代码了
找个插件或自己创建添加以下代码进去就可以了
  1. Game_Player.prototype.updateDashing = function () {
  2.     if (this.isMoving()) {
  3.         return;
  4.     }
  5.     if (this.canMove() && !this.isInVehicle() && !$gameMap.isDashDisabled()) {
  6.         this._dashing =
  7.             this.isDashButtonPressed();
  8.     } else {
  9.         this._dashing = false;
  10.     }
  11. };
复制代码

作者: lqi991    时间: 2021-9-30 03:18
  1. ConfigManager.alwaysDash = false  // 关闭 = false  开启 = true
复制代码





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