Project1

标题: 麻烦大佬帮我改下这段脚本 [打印本页]

作者: raisewing    时间: 2020-5-10 20:35
标题: 麻烦大佬帮我改下这段脚本

这个脚本是我以前用在VA上的,功能就是开关5打开后禁止移动,哪位大佬能帮我改成在MV上用么?谢谢了哈!

class Game_Player < Game_Character
  alias old_move_by_input move_by_input
  def move_by_input
    return if $game_switches[5] == true
    old_move_by_input
  end
end
作者: saiya酱    时间: 2020-5-11 02:25
不是用判断+禁止移动就行了么
作者: 开关关    时间: 2020-5-11 09:11
JAVASCRIPT 代码复制
  1. var oldMoveByInput = Game_Player.prototype.moveByInput;
  2. Game_Player.prototype.moveByInput = function() {
  3.     $gameSwitches.value(5) || oldMoveByInput.call(this);
  4. };

作者: raisewing    时间: 2020-5-11 12:57
开关关 发表于 2020-5-11 09:11
var oldMoveByInput = Game_Player.prototype.moveByInput;
Game_Player.prototype.moveByInput = function ...

谢谢大佬!




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